prysm-pulse/proto/testing/BUILD.bazel
Preston Van Loon 1f550a0da9
Handle nil protos (#1927)
* Handle hash nil pointers

* handle in hash beacon block

* add recovery when broadcasting p2p messages

* cmt

* gazelle
2019-03-07 11:32:01 -05:00

27 lines
770 B
Python

package(default_testonly = True)
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
proto_library(
name = "ethereum_testing_proto",
srcs = ["test.proto"],
visibility = ["//visibility:public"],
deps = ["@com_google_protobuf//:timestamp_proto"],
)
go_proto_library(
name = "ethereum_testing_go_proto",
compiler = "//:proto_compiler",
importpath = "github.com/prysmaticlabs/prysm/proto/testing",
proto = ":ethereum_testing_proto",
visibility = ["//visibility:public"],
)
go_library(
name = "go_default_library",
embed = [":ethereum_testing_go_proto"],
importpath = "github.com/prysmaticlabs/prysm/proto/testing",
visibility = ["//visibility:public"],
)