2019-12-21 03:47:00 +00:00
|
|
|
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 = [
|
2021-06-02 23:49:52 +00:00
|
|
|
"//proto/eth/v1alpha1:proto",
|
|
|
|
"//proto/eth/ext:proto",
|
2019-12-21 03:47:00 +00:00
|
|
|
"@com_google_protobuf//:empty_proto",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_proto_library(
|
|
|
|
name = "ethereum_slashing_go_proto",
|
2021-05-17 18:32:04 +00:00
|
|
|
compilers = ["@prysm//:cast_grpc_proto_compiler"],
|
2019-12-21 03:47:00 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/slashing",
|
|
|
|
proto = ":ethereum_slashing_proto",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
2021-02-09 10:05:22 +00:00
|
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
2021-06-02 23:49:52 +00:00
|
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
|
|
"//proto/eth/ext:go_default_library",
|
2020-01-03 02:41:31 +00:00
|
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
2021-05-17 18:32:04 +00:00
|
|
|
"@com_github_golang_protobuf//proto:go_default_library",
|
|
|
|
"@org_golang_google_protobuf//reflect/protoreflect:go_default_library",
|
|
|
|
"@org_golang_google_protobuf//runtime/protoimpl:go_default_library",
|
2019-12-21 03:47:00 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
embed = [":ethereum_slashing_go_proto"],
|
|
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/slashing",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|