mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
a8e501b3cf
* update deps * update deps * update protos/* * update deps * reset protos * update protos * update shared/params/config * update protos * update /shared * update shared/slotutil and shared/testutil * update beacon-chain/core/helpers * updates beacon-chain/state * update beacon-chain/forkchoice * update beacon-chain/blockchain * update beacon-chain/cache * update beacon-chain/core * update beacon-chain/db * update beacon-chain/node * update beacon-chain/p2p * update beacon-chain/rpc * update beacon-chain/sync * go mod tidy * make sure that beacon-chain build suceeds * go fmt * update e2e tests * update slasher * remove redundant alias * update validator * gazelle * fix build errors in unit tests * go fmt * update deps * update fuzz/BUILD.bazel * fix unit tests * more unit test fixes * fix blockchain UTs * more unit test fixes
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"config.go",
|
|
"config_utils_develop.go", # keep
|
|
"config_utils_prod.go",
|
|
"io_config.go",
|
|
"loader.go",
|
|
"mainnet_config.go",
|
|
"minimal_config.go",
|
|
"network_config.go",
|
|
"testnet_e2e_config.go",
|
|
"testnet_pyrmont_config.go",
|
|
"testnet_toledo_config.go",
|
|
"testutils.go",
|
|
"values.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/params",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/bytesutil:go_default_library",
|
|
"@com_github_mohae_deepcopy//:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@in_gopkg_yaml_v2//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"checktags_test.go",
|
|
"config_test.go",
|
|
"loader_test.go",
|
|
],
|
|
data = glob(["*.yaml"]) + [
|
|
"@eth2_spec_tests_mainnet//:test_data",
|
|
"@eth2_spec_tests_minimal//:test_data",
|
|
],
|
|
embed = [":go_default_library"],
|
|
gotags = ["develop"],
|
|
race = "on",
|
|
deps = [
|
|
"//shared/testutil/assert:go_default_library",
|
|
"//shared/testutil/require:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|