prysm-pulse/shared/roughtime/BUILD.bazel
Preston Van Loon e88bbaf614
Block networking in sandbox test by default, fix roughtime panic (#3240)
* block networking in sandbox test by default, fix roughtime panic

* Update .bazelrc
2019-08-19 12:13:05 -04:00

14 lines
468 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["roughtime.go"],
importpath = "github.com/prysmaticlabs/prysm/shared/roughtime",
visibility = ["//visibility:public"],
deps = [
"@com_github_cloudflare_roughtime//:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
"@com_googlesource_roughtime_roughtime_git//go/config:go_default_library",
],
)