mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
61c24c3870
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
31 lines
1004 B
Python
31 lines
1004 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"altair.go",
|
|
"phase0.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/state",
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//proto/testing:__subpackages__",
|
|
"//shared/aggregation:__subpackages__",
|
|
"//shared/depositutil:__subpackages__",
|
|
"//shared/testutil:__pkg__",
|
|
"//slasher/rpc:__subpackages__",
|
|
"//testing/benchmark:__pkg__",
|
|
"//testing/fuzz:__pkg__",
|
|
"//testing/spectest:__subpackages__",
|
|
"//tools/benchmark-files-gen:__pkg__",
|
|
"//tools/exploredb:__pkg__",
|
|
"//tools/pcli:__pkg__",
|
|
],
|
|
deps = [
|
|
"//proto/eth/v1:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|