mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
878a332913
Former-commit-id: a4677d647a959cbbbe9c4046e16fa6fa761133ac [formerly f775f6e9529e64cb1392a22f8ef15b186efa14ed] Former-commit-id: 42350204f72fcba4626a39e61b6e64b6f0afba32
24 lines
758 B
Python
24 lines
758 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["node.go"],
|
|
importpath = "github.com/prysmaticlabs/geth-sharding/beacon-chain/node",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/powchain:go_default_library",
|
|
"//beacon-chain/types:go_default_library",
|
|
"//shared:go_default_library",
|
|
"//shared/debug:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_urfave_cli//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["node_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["@com_github_urfave_cli//:go_default_library"],
|
|
)
|