Files
prysm/consensus-types/primitives/BUILD.bazel
Raul Jordan 84916672c6 Remove Eth2-Types Dependency in Prysm (#10578)
* replace eth2 types

* replace protos

* regen proto

* replace

* gaz

* deps

* amend

* regen proto

* mod

* gaz

* gaz

* ensure build

* ssz

* add dep

* no more eth2 types

* no more eth2

* remg

* all builds

* buidl

* tidy

* clean

* fmt

* val serv

* gaz

Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
2022-04-29 10:32:11 -04:00

39 lines
925 B
Python

load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"committee_index.go",
"domain.go",
"epoch.go",
"slot.go",
"sszbytes.go",
"sszuint64.go",
"validator.go",
],
importpath = "github.com/prysmaticlabs/prysm/consensus-types/primitives",
visibility = ["//visibility:public"],
deps = [
"//math:go_default_library",
"@com_github_ferranbt_fastssz//:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"committee_index_test.go",
"domain_test.go",
"epoch_test.go",
"slot_test.go",
"sszbytes_test.go",
"sszuint64_test.go",
"validator_test.go",
],
embed = [":go_default_library"],
deps = [
"//math:go_default_library",
"//testing/require:go_default_library",
],
)