mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
61 lines
2.3 KiB
Python
61 lines
2.3 KiB
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = [
|
||
|
"assignments.go",
|
||
|
"attestations.go",
|
||
|
"blocks.go",
|
||
|
"server.go",
|
||
|
"validators.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/rpc/beacon",
|
||
|
visibility = ["//beacon-chain:__subpackages__"],
|
||
|
deps = [
|
||
|
"//beacon-chain/blockchain:go_default_library",
|
||
|
"//beacon-chain/core/epoch:go_default_library",
|
||
|
"//beacon-chain/core/helpers:go_default_library",
|
||
|
"//beacon-chain/core/validators:go_default_library",
|
||
|
"//beacon-chain/db:go_default_library",
|
||
|
"//beacon-chain/db/filters:go_default_library",
|
||
|
"//beacon-chain/operations:go_default_library",
|
||
|
"//beacon-chain/powchain:go_default_library",
|
||
|
"//proto/beacon/p2p/v1:go_default_library",
|
||
|
"//proto/eth/v1alpha1:go_default_library",
|
||
|
"//shared/bytesutil:go_default_library",
|
||
|
"//shared/hashutil:go_default_library",
|
||
|
"//shared/pagination:go_default_library",
|
||
|
"//shared/params:go_default_library",
|
||
|
"@com_github_gogo_protobuf//types:go_default_library",
|
||
|
"@com_github_pkg_errors//:go_default_library",
|
||
|
"@org_golang_google_grpc//codes:go_default_library",
|
||
|
"@org_golang_google_grpc//status:go_default_library",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_test(
|
||
|
name = "go_default_test",
|
||
|
srcs = [
|
||
|
"assignments_test.go",
|
||
|
"attestations_test.go",
|
||
|
"blocks_test.go",
|
||
|
"validators_test.go",
|
||
|
],
|
||
|
embed = [":go_default_library"],
|
||
|
shard_count = 4,
|
||
|
deps = [
|
||
|
"//beacon-chain/blockchain/testing:go_default_library",
|
||
|
"//beacon-chain/core/helpers:go_default_library",
|
||
|
"//beacon-chain/db:go_default_library",
|
||
|
"//beacon-chain/db/testing:go_default_library",
|
||
|
"//beacon-chain/operations/testing:go_default_library",
|
||
|
"//proto/beacon/p2p/v1:go_default_library",
|
||
|
"//proto/eth/v1alpha1:go_default_library",
|
||
|
"//shared/params:go_default_library",
|
||
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
||
|
"@com_github_gogo_protobuf//types:go_default_library",
|
||
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
||
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
||
|
],
|
||
|
)
|