prysm-pulse/proto/slashing/BUILD.bazel
Preston Van Loon e2af70f692
Run buildifer, remove duplicated WORKSPACE entries (#5018)
* Buildifier, add release config
* Merge branch 'master' into bazel-stuff
* Merge refs/heads/master into bazel-stuff
* Merge refs/heads/master into bazel-stuff
* revert gnostic
* Set kafka for CI tests only
* add bazel.sh script
* set home
2020-03-06 04:42:27 +00:00

37 lines
1.2 KiB
Python

load("@rules_proto//proto:defs.bzl", "proto_library")
# gazelle:ignore
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_slashing_proto",
srcs = ["slashing.proto"],
visibility = ["//visibility:public"],
deps = [
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:proto",
"@com_google_protobuf//:empty_proto",
"@gogo_special_proto//github.com/gogo/protobuf/gogoproto",
],
)
go_proto_library(
name = "ethereum_slashing_go_proto",
compilers = ["@prysm//:grpc_proto_compiler"],
importpath = "github.com/prysmaticlabs/prysm/proto/slashing",
proto = ":ethereum_slashing_proto",
visibility = ["//visibility:public"],
deps = [
"@com_github_gogo_protobuf//gogoproto:go_default_library",
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
],
)
go_library(
name = "go_default_library",
embed = [":ethereum_slashing_go_proto"],
importpath = "github.com/prysmaticlabs/prysm/proto/slashing",
visibility = ["//visibility:public"],
)