prysm-pulse/proto/prysm/v1alpha1/attestation/aggregation/BUILD.bazel
terence tsao 2ba29a3cfc
Move block and attestation to proto v1alpha1 folder (#9618)
* Add block and attestation to container pkg

* Move aggregation into attestation

* Update attestation_test.go

* Move them to proto

* Gazelle

* fix cycle

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
2021-09-20 16:17:03 +00:00

32 lines
955 B
Python

load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"aggregation.go",
"maxcover.go",
],
importpath = "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/attestation/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_bench_test.go",
"maxcover_test.go",
],
embed = [":go_default_library"],
deps = [
"//proto/prysm/v1alpha1/attestation/aggregation/testing:go_default_library",
"//shared/params:go_default_library",
"//shared/testutil/assert:go_default_library",
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
],
)