mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
70f3fcdbd9
* add ssz rules * regenerate protos to include deposit message * built to match the deposit cli * derived test * fix up nil item * fix up more nil items * preston suggestion * comment * add missing tests to build file * fix busted tests Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
70 lines
2.4 KiB
Python
70 lines
2.4 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")
|
|
load("@com_github_prysmaticlabs_ethereumapis//tools:ssz.bzl", "SSZ_DEPS", "ssz_gen_marshal")
|
|
|
|
# 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",
|
|
"@gogo_special_proto//github.com/gogo/protobuf/gogoproto",
|
|
],
|
|
)
|
|
|
|
ssz_gen_marshal(
|
|
name = "ssz_generated_files",
|
|
go_proto = ":ethereum_validator_account_go_proto",
|
|
objs = [
|
|
"DepositMessage",
|
|
],
|
|
)
|
|
|
|
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",
|
|
"@com_github_gogo_protobuf//gogoproto:go_default_library",
|
|
],
|
|
)
|
|
|
|
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",
|
|
srcs = [":ssz_generated_files"],
|
|
embed = [":ethereum_validator_account_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2",
|
|
visibility = ["//visibility:public"],
|
|
deps = SSZ_DEPS,
|
|
)
|