2018-07-19 16:31:50 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
srcs = [
|
|
|
|
"core.go",
|
2018-09-02 16:44:03 +00:00
|
|
|
"schema.go",
|
2018-07-19 16:31:50 +00:00
|
|
|
"service.go",
|
|
|
|
],
|
2018-07-20 21:31:26 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/blockchain",
|
2018-07-19 16:31:50 +00:00
|
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
|
|
deps = [
|
2018-09-18 13:06:28 +00:00
|
|
|
"//beacon-chain/params:go_default_library",
|
2018-07-22 16:58:14 +00:00
|
|
|
"//beacon-chain/powchain:go_default_library",
|
2018-07-19 16:31:50 +00:00
|
|
|
"//beacon-chain/types:go_default_library",
|
2018-09-27 02:34:35 +00:00
|
|
|
"//beacon-chain/utils:go_default_library",
|
2018-07-31 18:54:45 +00:00
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
2018-07-19 16:31:50 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//ethdb:go_default_library",
|
2018-08-24 04:09:59 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
2018-07-31 00:29:40 +00:00
|
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
2018-07-19 16:31:50 +00:00
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
|
|
|
srcs = [
|
|
|
|
"core_test.go",
|
2018-09-02 16:44:03 +00:00
|
|
|
"schema_test.go",
|
2018-07-19 16:31:50 +00:00
|
|
|
"service_test.go",
|
|
|
|
],
|
|
|
|
embed = [":go_default_library"],
|
2018-08-16 21:37:53 +00:00
|
|
|
race = "off", # TODO(#412): fix issues with tests failing with race on.
|
2018-07-19 16:31:50 +00:00
|
|
|
deps = [
|
2018-07-26 18:20:55 +00:00
|
|
|
"//beacon-chain/params:go_default_library",
|
2018-07-22 16:58:14 +00:00
|
|
|
"//beacon-chain/powchain:go_default_library",
|
2018-07-19 16:31:50 +00:00
|
|
|
"//beacon-chain/types:go_default_library",
|
2018-07-31 18:54:45 +00:00
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
2018-07-30 06:14:50 +00:00
|
|
|
"//shared/database:go_default_library",
|
2018-08-18 03:34:56 +00:00
|
|
|
"//shared/testutil:go_default_library",
|
2018-08-15 04:49:59 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//:go_default_library",
|
2018-07-19 16:31:50 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
2018-07-23 15:43:41 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
2018-08-24 04:09:59 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//ethdb:go_default_library",
|
2018-08-15 04:49:59 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
2018-08-13 02:07:37 +00:00
|
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
2018-08-18 03:34:56 +00:00
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
2018-07-19 16:31:50 +00:00
|
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
2018-08-13 02:07:37 +00:00
|
|
|
"@io_bazel_rules_go//proto/wkt:timestamp_go_proto",
|
2018-07-19 16:31:50 +00:00
|
|
|
],
|
|
|
|
)
|