mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
10f45744d6
* first commit, remote att types * no more agg attestation proto * regen mock * only attestations * proto * att process * fix att references * more tests passing * use att protos * complete * change visibility * use gogoprotobu
26 lines
715 B
Python
26 lines
715 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"],
|
|
)
|
|
|
|
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"],
|
|
)
|