2022-12-06 16:01:17 +00:00
|
|
|
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
testonly = True,
|
|
|
|
srcs = [
|
|
|
|
"beacon_api.go",
|
|
|
|
"beacon_api_verify.go",
|
|
|
|
"util.go",
|
|
|
|
],
|
2023-03-17 18:52:56 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/testing/endtoend/evaluators/beaconapi_evaluators",
|
2022-12-06 16:01:17 +00:00
|
|
|
visibility = ["//testing/endtoend:__subpackages__"],
|
|
|
|
deps = [
|
2023-10-27 11:57:49 +00:00
|
|
|
"//beacon-chain/rpc/apimiddleware:go_default_library",
|
2023-09-11 18:57:17 +00:00
|
|
|
"//beacon-chain/rpc/eth/beacon:go_default_library",
|
2023-11-13 23:38:23 +00:00
|
|
|
"//beacon-chain/rpc/eth/config:go_default_library",
|
2023-10-25 18:12:58 +00:00
|
|
|
"//beacon-chain/rpc/eth/debug:go_default_library",
|
2023-10-11 20:18:49 +00:00
|
|
|
"//beacon-chain/rpc/eth/node:go_default_library",
|
2023-09-12 13:57:04 +00:00
|
|
|
"//beacon-chain/rpc/eth/validator:go_default_library",
|
2022-12-06 16:01:17 +00:00
|
|
|
"//config/params:go_default_library",
|
|
|
|
"//consensus-types/primitives:go_default_library",
|
|
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
|
|
"//testing/endtoend/helpers:go_default_library",
|
|
|
|
"//testing/endtoend/params:go_default_library",
|
|
|
|
"//testing/endtoend/policies:go_default_library",
|
|
|
|
"//testing/endtoend/types:go_default_library",
|
|
|
|
"//time/slots:go_default_library",
|
|
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
|
|
],
|
|
|
|
)
|