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