prysm-pulse/proto/beacon/p2p/v1/BUILD.bazel
Preston Van Loon 10f45744d6
Use gogo protobuf as the protoc compiler (#1165)
* 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
2018-12-23 15:34:59 -05:00

35 lines
867 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/beacon/p2p/v1",
proto = ":v1_proto",
visibility = ["//visibility:public"],
deps = [
"//proto/common:common_go_proto",
],
compiler = "//:proto_compiler",
)
go_library(
name = "go_default_library",
embed = [":v1_go_proto"],
importpath = "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1",
visibility = ["//visibility:public"],
)
proto_library(
name = "v1_proto",
srcs = [
"messages.proto",
"types.proto",
],
visibility = ["//visibility:public"],
deps = [
"@com_google_protobuf//:timestamp_proto",
"//proto/common:common_proto",
],
)