1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3licenses(["notice"]) 4 5package(default_visibility = ["//:__subpackages__"]) # keep 6 7go_library( 8 name = "fakekms", 9 testonly = 1, 10 srcs = ["fakekms.go"], 11 importpath = "github.com/google/tink/go/testing/fakekms", 12 visibility = ["//visibility:public"], 13 deps = [ 14 "//aead", 15 "//core/registry", 16 "//keyset", 17 "//testkeyset", 18 "//tink", 19 ], 20) 21 22go_test( 23 name = "fakekms_test", 24 srcs = ["fakekms_test.go"], 25 deps = [":fakekms"], 26) 27 28alias( 29 name = "go_default_library", 30 actual = ":fakekms", 31 visibility = ["//visibility:public"], 32) 33