prysm-pulse/beacon-chain/casper/BUILD.bazel
2018-09-23 22:36:51 -07:00

38 lines
1.1 KiB
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"incentives.go",
"sharding.go",
"validator.go",
],
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/casper",
visibility = ["//beacon-chain:__subpackages__"],
deps = [
"//beacon-chain/params:go_default_library",
"//beacon-chain/utils:go_default_library",
"//proto/beacon/p2p/v1:go_default_library",
"//shared:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"incentives_test.go",
"sharding_test.go",
"validator_test.go",
],
embed = [":go_default_library"],
race = "off", # TODO(#434): fix issues with tests failing with race on.
deps = [
"//beacon-chain/params:go_default_library",
"//proto/beacon/p2p/v1:go_default_library",
"//shared:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
],
)