mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
923e727819
Former-commit-id: 4857afb2c25835b643cd58dd90b114695154b50f [formerly 5d2c723def807289eb72e6c35ce7036ef70f837e] Former-commit-id: 79c8f081748e29e00b61ace851f74c2252865729
29 lines
719 B
Python
29 lines
719 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"feed.go",
|
|
"message.go",
|
|
"peer.go",
|
|
"service.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/geth-sharding/sharding/p2p",
|
|
visibility = ["//sharding:__subpackages__"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"feed_example_test.go",
|
|
"feed_test.go",
|
|
"service_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = ["//sharding/types:go_default_library"],
|
|
)
|