mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
0b8cbd06b6
* refactor a bit to select p2p * lint * fix build * fix build * fix build * fix build * fix build
35 lines
913 B
Python
35 lines
913 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"doc.go",
|
|
"network_encoding.go",
|
|
"ssz.go",
|
|
"varint.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/p2p/encoder",
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//shared/deprecated-p2p:__pkg__", # TODO(3147): Remove.
|
|
],
|
|
deps = [
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_golang_snappy//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"ssz_test.go",
|
|
"varint_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//proto/testing:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
],
|
|
)
|