mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
# gazelle:ignore
|
|
proto_library(
|
|
name = "ethereum_validator_accounts_v2_proto",
|
|
srcs = [
|
|
"keymanager.proto",
|
|
"web_api.proto",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:proto",
|
|
"@com_google_protobuf//:empty_proto",
|
|
"@go_googleapis//google/api:annotations_proto",
|
|
],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "ethereum_validator_account_go_proto",
|
|
compilers = ["@prysm//:grpc_proto_compiler"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2",
|
|
proto = ":ethereum_validator_accounts_v2_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@go_googleapis//google/api:annotations_go_proto",
|
|
],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":ethereum_validator_account_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2",
|
|
visibility = ["//visibility:public"],
|
|
)
|