mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +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
27 lines
770 B
Python
27 lines
770 B
Python
# gazelle:ignore
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
go_proto_library(
|
|
name = "v1_go_proto",
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/sharding/p2p/v1",
|
|
proto = ":v1_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//proto/beacon/p2p/v1:go_default_library"],
|
|
compiler = "//:proto_compiler",
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":v1_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/sharding/p2p/v1",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
proto_library(
|
|
name = "v1_proto",
|
|
srcs = ["messages.proto"],
|
|
deps = ["//proto/beacon/p2p/v1:v1_proto"],
|
|
visibility = ["//visibility:public"],
|
|
)
|