1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "aes_ctr_hmac_streaming_go_proto", 5 srcs = ["aes_ctr_hmac_streaming.pb.go"], 6 importpath = "github.com/google/tink/go/proto/aes_ctr_hmac_streaming_go_proto", 7 visibility = ["//visibility:public"], 8 deps = [ 9 "//proto/common_go_proto", 10 "//proto/hmac_go_proto", 11 "@org_golang_google_protobuf//reflect/protoreflect", 12 "@org_golang_google_protobuf//runtime/protoimpl", 13 ], 14) 15 16alias( 17 name = "go_default_library", 18 actual = ":aes_ctr_hmac_streaming_go_proto", 19 visibility = ["//visibility:public"], 20) 21