mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
21ede7634e
* maxcover performance test * gazelle Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"attestations.go",
|
|
"maxcover.go",
|
|
"naive.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/aggregation/attestations",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//beacon-chain/state:go_default_library",
|
|
"//shared/aggregation:go_default_library",
|
|
"//shared/bls:go_default_library",
|
|
"//shared/featureconfig:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
# gazelle:exclude attestations_bench_test.go
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"attestations_test.go",
|
|
"maxcover_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//shared/aggregation:go_default_library",
|
|
"//shared/aggregation/testing:go_default_library",
|
|
"//shared/bls:go_default_library",
|
|
"//shared/featureconfig:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"//shared/testutil/assert:go_default_library",
|
|
"//shared/testutil/require:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|