github.com/gnattishness/bazel-go-ethereum@v0.0.0-20190929123618-7022a154f56d/crypto/ecies/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 "ecies.go", 7 "params.go", 8 ], 9 importpath = "github.com/ethereum/go-ethereum/crypto/ecies", 10 visibility = ["//visibility:public"], 11 deps = ["//crypto:go_default_library"], 12 ) 13 14 go_test( 15 name = "go_default_test", 16 srcs = ["ecies_test.go"], 17 embed = [":go_default_library"], 18 deps = ["//crypto:go_default_library"], 19 )