mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-01 07:51:21 +00:00
f61f02e59b
* cmd tests * deposit util tests * feature config tests * hashutil tests * htr util tests * interop tests * ip util tests * Update BLS * Update cmd * Update bytesutil and depositutil * Update event * Update keystore * Update mathutil * Update mputil * Update pagination * Update params * Upate prome * Update testutil * Update trieutil * Merge branch 'master' of github.com:prysmaticlabs/prysm into testutil-shared * Sync with master * Mod * Typo * Revert * gazelle * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Gaz * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * Merge refs/heads/master into testutil-shared * fixes build error * Merge refs/heads/master into testutil-shared
46 lines
1.2 KiB
Python
46 lines
1.2 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_medalla_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 = [
|
|
"//shared/testutil/require:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|