mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
5c90038007
* adds feature flag * aggregations/attestation package * better tests * bazel visibility issues * removes redundant code Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
28 lines
792 B
Python
28 lines
792 B
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 = [
|
|
"aggregation.go",
|
|
"maxcover.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/aggregation",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["maxcover_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//shared/aggregation/testing:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|