2020-07-03 23:00:02 +00:00
|
|
|
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")
|
|
|
|
|
2020-07-10 05:49:56 +00:00
|
|
|
# gazelle:ignore
|
2020-07-03 23:00:02 +00:00
|
|
|
proto_library(
|
2020-07-10 05:49:56 +00:00
|
|
|
name = "ethereum_validator_accounts_v2_proto",
|
2020-08-11 20:23:16 +00:00
|
|
|
srcs = [
|
|
|
|
"keymanager.proto",
|
|
|
|
"web_api.proto",
|
2020-08-14 02:49:57 +00:00
|
|
|
],
|
2020-07-03 23:00:02 +00:00
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
2020-08-06 23:18:38 +00:00
|
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:proto",
|
2020-07-10 05:49:56 +00:00
|
|
|
"@com_google_protobuf//:empty_proto",
|
|
|
|
"@go_googleapis//google/api:annotations_proto",
|
2020-07-03 23:00:02 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2020-08-14 02:49:57 +00:00
|
|
|
go_proto_library(
|
|
|
|
name = "ethereum_validator_account_gateway_proto",
|
|
|
|
compilers = [
|
|
|
|
"@io_bazel_rules_go//proto:go_grpc",
|
|
|
|
"@com_github_grpc_ecosystem_grpc_gateway//protoc-gen-grpc-gateway:go_gen_grpc_gateway",
|
|
|
|
],
|
|
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2_gateway",
|
|
|
|
proto = ":ethereum_validator_accounts_v2_proto",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
|
|
|
"@com_github_golang_protobuf//descriptor:go_default_library",
|
|
|
|
"@com_github_golang_protobuf//ptypes/empty:go_default_library",
|
|
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
|
|
"@go_googleapis//google/api:annotations_go_proto",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2020-07-03 23:00:02 +00:00
|
|
|
go_proto_library(
|
|
|
|
name = "ethereum_validator_account_go_proto",
|
2020-07-10 05:49:56 +00:00
|
|
|
compilers = ["@prysm//:grpc_proto_compiler"],
|
2020-07-03 23:00:02 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2",
|
|
|
|
proto = ":ethereum_validator_accounts_v2_proto",
|
|
|
|
visibility = ["//visibility:public"],
|
2020-07-10 05:49:56 +00:00
|
|
|
deps = [
|
2020-08-06 23:18:38 +00:00
|
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
2020-07-10 05:49:56 +00:00
|
|
|
"@go_googleapis//google/api:annotations_go_proto",
|
|
|
|
],
|
2020-07-03 23:00:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
embed = [":ethereum_validator_account_go_proto"],
|
|
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|