mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
cddae7a306
* Adding Proto files * Move to shared package * adding attestation sub * gazelle * attestation check * proposal finished * Add in attesters responsibilities * fixing dependency issues * adding topics * refactoring tests * Adding more tests * adding more changes * gazelle * removing attester p2p * remove mock * changing to new proposer model * changing tests * making changes * gazelle * adding gomock * adding rpc methods, reverting changes to other proto files * gazelle and test changes * adding tests * adding mocks and tests * gazelle * fixing merge issues * lint * lint
26 lines
734 B
Python
26 lines
734 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"],
|
|
)
|
|
|
|
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"],
|
|
)
|