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