mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
739f34f26c
Former-commit-id: 2fe6fdb393917f90c9a8a0c6dfb866738736803e [formerly 03d3519c59eb7f78e20ff08c081031d9b1f673bc] Former-commit-id: a1cba8b7ec0517748d5df0bab458b2466f7b6329
31 lines
892 B
Python
31 lines
892 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",
|
|
"service.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/geth-sharding/sharding/utils",
|
|
visibility = ["//sharding:__subpackages__"],
|
|
deps = [
|
|
"//sharding/params:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//node: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",
|
|
"service_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = ["@com_github_sirupsen_logrus//hooks/test:go_default_library"],
|
|
)
|