prysm-pulse/sharding/utils/BUILD.bazel
Raul Jordan 2624cd2b3c sharding: Completely Remove Geth, Create a Single Sharding Entry Point That Builds (#238)
Former-commit-id: b853fd1c3ea2284d30d7f3032cf83287c7198c10 [formerly c012daacceec9cb3497f1d066ee3ca2d20aa5b14]
Former-commit-id: 0a5a60c296f878c7057b25fc759dec2487363d30
2018-07-08 21:40:34 -05:00

35 lines
988 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"customflags.go",
"flags.go",
"marshal.go",
"service.go",
],
importpath = "github.com/prysmaticlabs/geth-sharding/sharding/utils",
visibility = ["//visibility:public"],
deps = [
"//sharding/params:go_default_library",
"@com_github_ethereum_go_ethereum//log:go_default_library",
"@com_github_ethereum_go_ethereum//node:go_default_library",
"@com_github_ethereum_go_ethereum//rlp:go_default_library",
"@com_github_urfave_cli//:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"customflags_test.go",
"marshal_test.go",
"service_test.go",
],
embed = [":go_default_library"],
deps = [
"//sharding/internal:go_default_library",
"@com_github_ethereum_go_ethereum//log:go_default_library",
],
)