2019-09-18 14:30:02 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
srcs = ["service.go"],
|
|
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/archiver",
|
|
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
|
|
deps = [
|
|
|
|
"//beacon-chain/blockchain:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"//beacon-chain/core/epoch:go_default_library",
|
2019-12-07 17:57:26 +00:00
|
|
|
"//beacon-chain/core/feed:go_default_library",
|
|
|
|
"//beacon-chain/core/feed/state:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"//beacon-chain/core/helpers:go_default_library",
|
2019-09-25 23:06:02 +00:00
|
|
|
"//beacon-chain/core/validators:go_default_library",
|
2019-09-18 14:30:02 +00:00
|
|
|
"//beacon-chain/db:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
2019-11-11 22:03:44 +00:00
|
|
|
"//shared/params:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"@com_github_pkg_errors//:go_default_library",
|
2019-09-18 14:30:02 +00:00
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
|
|
|
srcs = ["service_test.go"],
|
|
|
|
embed = [":go_default_library"],
|
|
|
|
deps = [
|
|
|
|
"//beacon-chain/blockchain/testing:go_default_library",
|
2019-12-07 17:57:26 +00:00
|
|
|
"//beacon-chain/core/feed:go_default_library",
|
|
|
|
"//beacon-chain/core/feed/state:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"//beacon-chain/core/helpers:go_default_library",
|
2019-09-20 16:51:06 +00:00
|
|
|
"//beacon-chain/db:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"//beacon-chain/db/testing:go_default_library",
|
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
|
|
"//shared/params:go_default_library",
|
2019-09-18 14:30:02 +00:00
|
|
|
"//shared/testutil:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
2019-11-27 05:08:18 +00:00
|
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
2019-09-19 20:59:23 +00:00
|
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
2019-09-18 14:30:02 +00:00
|
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
|
|
|
],
|
|
|
|
)
|