prysm-pulse/beacon-chain/p2p/encoder/BUILD.bazel
Preston Van Loon 0b8cbd06b6
Add flag for testing new p2p (#3243)
* refactor a bit to select p2p

* lint

* fix build

* fix build

* fix build

* fix build

* fix build
2019-08-19 17:20:56 -04:00

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",
],
)