mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
82efca9b6f
* move to deprecated-p2p * fix lint * lint? * fix lint * lint * lint * lint * lint
27 lines
877 B
Python
27 lines
877 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["metric.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/deprecated-p2p/adapter/metric",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/deprecated-p2p:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_prometheus_client_golang//prometheus:go_default_library",
|
|
"@com_github_prometheus_client_golang//prometheus/promauto:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["metric_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/deprecated-p2p:go_default_library",
|
|
"//shared/prometheus:go_default_library",
|
|
],
|
|
)
|