mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
7e1a61f8eb
* add debug endpoints * gaz * add more stuff * add tests * clean up * Update beacon-chain/rpc/debug/server.go * fmt Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
57 lines
1.9 KiB
Python
57 lines
1.9 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")
|
|
|
|
go_proto_library(
|
|
name = "go_grpc_gateway_library",
|
|
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/beacon/rpc/v1_gateway",
|
|
proto = ":v1_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"@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",
|
|
],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "v1_go_proto",
|
|
compilers = ["@prysm//:grpc_proto_compiler"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/beacon/rpc/v1",
|
|
proto = ":v1_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1: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",
|
|
],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":v1_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/beacon/rpc/v1",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
proto_library(
|
|
name = "v1_proto",
|
|
srcs = ["debug.proto"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:v1_proto",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:proto",
|
|
"@com_google_protobuf//:empty_proto",
|
|
"@go_googleapis//google/api:annotations_proto",
|
|
],
|
|
)
|