mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
f5e5287082
Former-commit-id: 2ec35880b3aa30d3c217815c9a474e8d81ee1fa8 [formerly c20da02cf9149990f8b7913cfe426b8036992c16] Former-commit-id: 4851374829557f1523f5994b1d97e08e46979aed
34 lines
1002 B
Python
34 lines
1002 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"customflags.go",
|
|
"debug.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//node:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//rlp:go_default_library",
|
|
"@com_github_fjl_memsize//memsizeui:go_default_library",
|
|
"@com_github_sirupsen_logrus//: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 = ["@com_github_sirupsen_logrus//hooks/test:go_default_library"],
|
|
)
|