mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
caf9bdbc6f
* commit initial work * checkpoint current work * gaz * checkpoint * req/resp changes * initial-sync * finally works * fix error * fix bugs * fix issue * fix issues * fix refs * tests * more text fixes * more text fixes * more text fixes * fix tests * fix tests * tests * finally fix builds * finally * comments * fix fuzz * share common library * fix * fix * add in more defensive nil checks * add in more defensive nil checks * imports * Apply suggestions from code review Co-authored-by: terence tsao <terence@prysmaticlabs.com> * Apply suggestions from code review Co-authored-by: terence tsao <terence@prysmaticlabs.com> * Update shared/interfaces/block_interface.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> * Update shared/interfaces/block_wrapper.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> * Update shared/interfaces/block_interface.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> * imports * fix bad changes * fix * terence's review * terence's review * fmt * Update beacon-chain/rpc/beacon/blocks.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * fix tests * fix * fix all tests Co-authored-by: terence tsao <terence@prysmaticlabs.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl>
72 lines
2.2 KiB
Python
72 lines
2.2 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
# Build with --define=kafka_enabled=false to exclude kafka wrapper.
|
|
config_setting(
|
|
name = "kafka_disabled",
|
|
values = {"define": "kafka_enabled=false"},
|
|
)
|
|
|
|
# gazelle:exclude db.go
|
|
# gazelle:exclude db_kafka_wrapped.go
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"alias.go",
|
|
"log.go",
|
|
"restore.go",
|
|
] + select({
|
|
":kafka_disabled": [
|
|
"db.go",
|
|
],
|
|
"//conditions:default": [
|
|
"db_kafka_wrapped.go",
|
|
],
|
|
}),
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/db",
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//cmd/beacon-chain:__subpackages__",
|
|
"//fuzz:__pkg__",
|
|
"//tools:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//beacon-chain/cache:go_default_library",
|
|
"//beacon-chain/db/iface:go_default_library",
|
|
"//beacon-chain/db/kv:go_default_library",
|
|
"//beacon-chain/db/slasherkv:go_default_library",
|
|
"//shared/cmd:go_default_library",
|
|
"//shared/fileutil:go_default_library",
|
|
"//shared/promptutil:go_default_library",
|
|
"//shared/tos:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
] + select({
|
|
"//conditions:default": [
|
|
"//beacon-chain/db/kafka:go_default_library",
|
|
],
|
|
":kafka_disabled": [],
|
|
}),
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"db_test.go",
|
|
"restore_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//beacon-chain/db/kv:go_default_library",
|
|
"//shared/cmd:go_default_library",
|
|
"//shared/interfaces:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"//shared/testutil/assert:go_default_library",
|
|
"//shared/testutil/require:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|