mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 01:04:29 +00:00
eb694ab5d5
* Update rules_go and fix proto conflicts * gaz * Update generated code * more emptypb fixes * gaz Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
20 lines
490 B
Python
20 lines
490 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["math_helper.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/mathutil",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["math_helper_test.go"],
|
|
deps = [
|
|
":go_default_library",
|
|
"//shared/testutil/require:go_default_library",
|
|
],
|
|
)
|