github.com/gnattishness/bazel-go-ethereum@v0.0.0-20190929123618-7022a154f56d/common/math/BUILD.bazel (about) 1 load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3 go_library( 4 name = "go_default_library", 5 srcs = [ 6 "big.go", 7 "integer.go", 8 ], 9 importpath = "github.com/ethereum/go-ethereum/common/math", 10 visibility = ["//visibility:public"], 11 ) 12 13 go_test( 14 name = "go_default_test", 15 srcs = [ 16 "big_test.go", 17 "integer_test.go", 18 ], 19 embed = [":go_default_library"], 20 deps = ["//common:go_default_library"], 21 )