mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
16 lines
518 B
Python
16 lines
518 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
testonly = True,
|
||
|
srcs = ["mock.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/state/stategen/mock",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//beacon-chain/state:go_default_library",
|
||
|
"//proto/prysm/v1alpha1:go_default_library",
|
||
|
"//proto/prysm/v1alpha1/block:go_default_library",
|
||
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
||
|
],
|
||
|
)
|