mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
53 lines
1.8 KiB
Python
53 lines
1.8 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"api_middleware.go",
|
|
"api_middleware_processing.go",
|
|
"api_middleware_structs.go",
|
|
"gateway.go",
|
|
"log.go",
|
|
"param_handling.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/api/gateway",
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//api/grpc:go_default_library",
|
|
"//encoding/bytesutil:go_default_library",
|
|
"//runtime:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
|
"@com_github_gorilla_mux//:go_default_library",
|
|
"@com_github_grpc_ecosystem_grpc_gateway_v2//runtime:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_rs_cors//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_wealdtech_go_bytesutil//:go_default_library",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
"@org_golang_google_grpc//connectivity:go_default_library",
|
|
"@org_golang_google_grpc//credentials:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"api_middleware_processing_test.go",
|
|
"gateway_test.go",
|
|
"param_handling_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//api/grpc:go_default_library",
|
|
"//cmd/beacon-chain/flags:go_default_library",
|
|
"//testing/assert:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"@com_github_gorilla_mux//:go_default_library",
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|