2019-12-04 18:30:45 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
2019-12-03 22:04:11 +00:00
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
srcs = ["pool.go"],
|
|
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/operations/attestations",
|
|
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
|
|
deps = [
|
2019-12-04 18:30:45 +00:00
|
|
|
"//beacon-chain/operations/attestations/kv:go_default_library",
|
|
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
2019-12-03 22:04:11 +00:00
|
|
|
],
|
|
|
|
)
|
2019-12-04 18:30:45 +00:00
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
|
|
|
srcs = ["pool_test.go"],
|
|
|
|
embed = [":go_default_library"],
|
|
|
|
deps = ["//beacon-chain/operations/attestations/kv:go_default_library"],
|
|
|
|
)
|