2018-08-01 22:08:44 +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/rpc",
|
|
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
|
|
deps = [
|
2018-08-18 03:34:56 +00:00
|
|
|
"//beacon-chain/types:go_default_library",
|
2018-09-05 03:35:32 +00:00
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
2018-08-01 22:08:44 +00:00
|
|
|
"//proto/beacon/rpc/v1:go_default_library",
|
2018-09-05 03:35:32 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
2018-08-01 22:08:44 +00:00
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
2018-08-09 22:54:59 +00:00
|
|
|
"@io_bazel_rules_go//proto/wkt:empty_go_proto",
|
2018-08-01 22:08:44 +00:00
|
|
|
"@org_golang_google_grpc//:go_default_library",
|
2018-08-08 22:43:25 +00:00
|
|
|
"@org_golang_google_grpc//credentials:go_default_library",
|
2018-08-01 22:08:44 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
|
|
|
srcs = ["service_test.go"],
|
|
|
|
embed = [":go_default_library"],
|
|
|
|
deps = [
|
2018-08-18 03:34:56 +00:00
|
|
|
"//beacon-chain/internal:go_default_library",
|
|
|
|
"//beacon-chain/types:go_default_library",
|
|
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
|
|
"//proto/beacon/rpc/v1:go_default_library",
|
2018-08-01 22:08:44 +00:00
|
|
|
"//shared/testutil:go_default_library",
|
2018-08-24 04:09:59 +00:00
|
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
2018-08-18 03:34:56 +00:00
|
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
2018-09-05 03:35:32 +00:00
|
|
|
"@com_github_golang_protobuf//ptypes:go_default_library",
|
2018-08-18 03:34:56 +00:00
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
2018-08-01 22:08:44 +00:00
|
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
2018-08-18 03:34:56 +00:00
|
|
|
"@io_bazel_rules_go//proto/wkt:empty_go_proto",
|
2018-08-01 22:08:44 +00:00
|
|
|
],
|
|
|
|
)
|