github.com/prysmaticlabs/prysm@v1.4.4/shared/mathutil/BUILD.bazel (about)

     1  load("@prysm//tools/go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "go_default_library",
     5      srcs = ["math_helper.go"],
     6      importpath = "github.com/prysmaticlabs/prysm/shared/mathutil",
     7      visibility = ["//visibility:public"],
     8      deps = ["@com_github_thomaso_mirodin_intmath//u64:go_default_library"],
     9  )
    10  
    11  go_test(
    12      name = "go_default_test",
    13      size = "small",
    14      srcs = ["math_helper_test.go"],
    15      deps = [
    16          ":go_default_library",
    17          "//shared/testutil/require:go_default_library",
    18      ],
    19  )