2018-08-29 16:32:54 +00:00
|
|
|
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"],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_proto_library(
|
|
|
|
name = "ethereum_testing_go_proto",
|
2018-12-23 20:34:59 +00:00
|
|
|
compiler = "//:proto_compiler",
|
2018-08-29 16:32:54 +00:00
|
|
|
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"],
|
|
|
|
)
|