prysm-pulse/shared/params/BUILD.bazel
Preston Van Loon a9bbbae19a
Refactor params/config to separate files for clarity (#6427)
* split mainnet/onyx/altona/e2e configs into different files
* set onyx as the default network
* lint and fix comment
* more commentary
* gofmt
* Merge branch 'master' of github.com:prysmaticlabs/prysm into onyx-config
* gofmt
2020-06-27 00:20:24 +00:00

42 lines
1.1 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",
"io_config.go",
"loader.go",
"mainnet_config.go",
"minimal_config.go",
"network_config.go",
"testnet_altona_config.go",
"testnet_e2e_config.go",
"testnet_onyx_config.go",
"testutils.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_sirupsen_logrus//:go_default_library",
"@in_gopkg_yaml_v2//:go_default_library",
],
)
go_test(
name = "go_default_test",
size = "small",
srcs = [
"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"],
deps = ["@io_bazel_rules_go//go/tools/bazel:go_default_library"],
)