prysm-pulse/beacon-chain/utils/BUILD.bazel
Raul Jordan e052e457df
Remove Old References to Block Vote Cache (#1585)
* rem references to vote cache

* fix build
2019-02-14 08:54:29 -06:00

32 lines
845 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"clock.go",
"flags.go",
"shuffle.go",
],
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/utils",
visibility = ["//beacon-chain:__subpackages__"],
deps = [
"//shared/hashutil:go_default_library",
"//shared/params:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
"@com_github_urfave_cli//:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"clock_test.go",
"shuffle_test.go",
],
embed = [":go_default_library"],
deps = [
"//shared/params:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
],
)