prysm-pulse/client/syncer/BUILD.bazel

52 lines
2.0 KiB
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"handlers.go",
"service.go",
],
importpath = "github.com/prysmaticlabs/prysm/client/syncer",
visibility = ["//client:__subpackages__"],
deps = [
"//client/mainchain:go_default_library",
"//client/params:go_default_library",
"//client/types:go_default_library",
"//proto/sharding/p2p/v1:go_default_library",
"//shared/database:go_default_library",
"//shared/p2p:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
],
)
go_test(
name = "go_default_test",
size = "small",
srcs = [
"handlers_test.go",
"service_test.go",
],
embed = [":go_default_library"],
deps = [
"//client/contracts:go_default_library",
"//client/mainchain:go_default_library",
"//client/params:go_default_library",
"//client/types:go_default_library",
"//proto/sharding/p2p/v1:go_default_library",
"//shared:go_default_library",
"//shared/database:go_default_library",
"//shared/p2p:go_default_library",
"@com_github_ethereum_go_ethereum//accounts:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/abi/bind/backends:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
"@com_github_ethereum_go_ethereum//core:go_default_library",
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
],
)