mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
5aac06f04e
* begin move * use same import path * imports * regen protos * regen * no rename * generate ssz * gaz * fmt * edit build file * imports * modify * remove generated files * remove protos * edit imports in prysm * beacon chain all builds * edit script * add generated pbs * add replace rules * license for ethereumapis protos * change visibility * fmt * update build files to gaz ignore * use proper form * edit imports * wrap block * revert scripts * revert go mod
41 lines
1.4 KiB
Python
41 lines
1.4 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 = [
|
|
"//proto/eth/v1alpha1:proto",
|
|
"//proto/eth/ext:proto",
|
|
"@com_google_protobuf//:empty_proto",
|
|
],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "ethereum_slashing_go_proto",
|
|
compilers = ["@prysm//:cast_grpc_proto_compiler"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/slashing",
|
|
proto = ":ethereum_slashing_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//proto/eth/ext:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
"@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",
|
|
],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":ethereum_slashing_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/slashing",
|
|
visibility = ["//visibility:public"],
|
|
)
|