prysm-pulse/shared/BUILD.bazel

26 lines
615 B
Python
Raw Normal View History

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"marshal.go",
"service_registry.go",
"types.go",
],
importpath = "github.com/prysmaticlabs/prysm/shared",
visibility = ["//visibility:public"],
deps = [
"@com_github_ethereum_go_ethereum//rlp:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"marshal_test.go",
"service_registry_test.go",
],
embed = [":go_default_library"],
)