2021-06-30 19:22:09 +00:00
|
|
|
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
2018-10-09 05:58:54 +00:00
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
srcs = ["math_helper.go"],
|
2021-09-17 21:55:24 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/math",
|
2018-10-09 05:58:54 +00:00
|
|
|
visibility = ["//visibility:public"],
|
2021-05-21 16:02:16 +00:00
|
|
|
deps = ["@com_github_thomaso_mirodin_intmath//u64:go_default_library"],
|
2018-10-09 05:58:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
2019-06-30 16:00:22 +00:00
|
|
|
size = "small",
|
2018-10-09 05:58:54 +00:00
|
|
|
srcs = ["math_helper_test.go"],
|
2021-03-12 00:03:19 +00:00
|
|
|
deps = [
|
|
|
|
":go_default_library",
|
2021-09-23 18:53:46 +00:00
|
|
|
"//testing/require:go_default_library",
|
2021-03-12 00:03:19 +00:00
|
|
|
],
|
2018-10-09 05:58:54 +00:00
|
|
|
)
|