2018-11-22 19:18:06 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
2018-11-24 18:57:07 +00:00
|
|
|
srcs = [
|
|
|
|
"processing.go",
|
|
|
|
"state_transition.go",
|
2018-12-01 22:09:12 +00:00
|
|
|
"validity_conditions.go",
|
2018-11-24 18:57:07 +00:00
|
|
|
],
|
2018-11-22 19:18:06 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/state",
|
|
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
|
|
deps = [
|
2018-11-24 18:57:07 +00:00
|
|
|
"//beacon-chain/core/incentives:go_default_library",
|
2018-12-19 05:18:42 +00:00
|
|
|
"//beacon-chain/core/randao:go_default_library",
|
2018-11-24 18:57:07 +00:00
|
|
|
"//beacon-chain/core/types:go_default_library",
|
2018-11-22 19:18:06 +00:00
|
|
|
"//beacon-chain/core/validators:go_default_library",
|
2018-11-24 18:57:07 +00:00
|
|
|
"//beacon-chain/utils:go_default_library",
|
2018-11-22 19:18:06 +00:00
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
2018-12-01 22:09:12 +00:00
|
|
|
"//shared/bitutil:go_default_library",
|
|
|
|
"//shared/hashutil:go_default_library",
|
2018-11-22 19:18:06 +00:00
|
|
|
"//shared/params:go_default_library",
|
2018-12-01 22:09:12 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
2018-12-19 05:18:42 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
2018-11-22 19:18:06 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
2018-11-24 18:57:07 +00:00
|
|
|
srcs = [
|
|
|
|
"processing_test.go",
|
|
|
|
"state_transition_test.go",
|
2018-12-01 22:09:12 +00:00
|
|
|
"validity_conditions_test.go",
|
2018-11-24 18:57:07 +00:00
|
|
|
],
|
2018-11-22 19:18:06 +00:00
|
|
|
embed = [":go_default_library"],
|
|
|
|
deps = [
|
2018-11-24 18:57:07 +00:00
|
|
|
"//beacon-chain/core/types:go_default_library",
|
|
|
|
"//beacon-chain/core/validators:go_default_library",
|
|
|
|
"//beacon-chain/utils:go_default_library",
|
2018-11-22 19:18:06 +00:00
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
|
|
"//shared/bytes:go_default_library",
|
2018-12-01 22:09:12 +00:00
|
|
|
"//shared/hashutil:go_default_library",
|
2018-11-22 19:18:06 +00:00
|
|
|
"//shared/params:go_default_library",
|
2018-12-19 05:18:42 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
2018-12-01 22:09:12 +00:00
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
2018-11-22 19:18:06 +00:00
|
|
|
],
|
|
|
|
)
|