2020-05-05 07:22:26 +00:00
|
|
|
load("@prysm//tools/go:def.bzl", "go_library")
|
2019-09-09 21:13:50 +00:00
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
testonly = True,
|
|
|
|
srcs = [
|
2022-04-01 18:04:24 +00:00
|
|
|
"mock_engine_client.go",
|
2022-08-01 14:43:47 +00:00
|
|
|
"mock_execution_chain.go",
|
2021-01-25 22:30:55 +00:00
|
|
|
"mock_faulty_powchain.go",
|
2019-09-09 21:13:50 +00:00
|
|
|
],
|
2022-08-16 12:20:13 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/beacon-chain/execution/testing",
|
2021-05-05 20:18:55 +00:00
|
|
|
visibility = [
|
|
|
|
"//beacon-chain:__subpackages__",
|
|
|
|
],
|
2019-09-09 21:13:50 +00:00
|
|
|
deps = [
|
2021-09-18 17:26:11 +00:00
|
|
|
"//async/event:go_default_library",
|
2022-08-01 14:43:47 +00:00
|
|
|
"//beacon-chain/execution/types:go_default_library",
|
2021-07-23 16:11:21 +00:00
|
|
|
"//beacon-chain/state:go_default_library",
|
2021-06-30 15:06:19 +00:00
|
|
|
"//beacon-chain/state/v1:go_default_library",
|
2022-04-01 18:04:24 +00:00
|
|
|
"//config/params:go_default_library",
|
2022-08-02 15:30:46 +00:00
|
|
|
"//consensus-types/blocks:go_default_library",
|
2022-07-13 01:49:38 +00:00
|
|
|
"//consensus-types/interfaces:go_default_library",
|
2021-09-23 15:23:37 +00:00
|
|
|
"//encoding/bytesutil:go_default_library",
|
2022-04-01 18:04:24 +00:00
|
|
|
"//proto/engine/v1:go_default_library",
|
2021-07-21 21:34:07 +00:00
|
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
2020-01-16 01:46:15 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind/backends:go_default_library",
|
2019-09-09 21:13:50 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
2020-01-16 01:46:15 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//rpc:go_default_library",
|
2022-04-12 10:19:07 +00:00
|
|
|
"@com_github_holiman_uint256//:go_default_library",
|
2022-02-08 09:30:06 +00:00
|
|
|
"@com_github_pkg_errors//:go_default_library",
|
2019-09-09 21:13:50 +00:00
|
|
|
],
|
|
|
|
)
|