mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
20 lines
486 B
Python
20 lines
486 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["scatter.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/mputil",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"benchmark_test.go",
|
|
"scatter_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = ["@com_github_sirupsen_logrus//:go_default_library"],
|
|
)
|