kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/storage/entryset/BUILD (about) 1 load("//tools:build_rules/shims.bzl", "go_library", "go_test") 2 3 package(default_visibility = ["//kythe:default_visibility"]) 4 5 go_library( 6 name = "entryset", 7 srcs = ["entryset.go"], 8 importpath = "kythe.io/kythe/go/storage/entryset", 9 deps = [ 10 "//kythe/go/util/kytheuri", 11 "//kythe/go/util/schema/edges", 12 "//kythe/proto:entryset_go_proto", 13 "//kythe/proto:internal_go_proto", 14 "//kythe/proto:storage_go_proto", 15 "@com_github_pkg_errors//:errors", 16 "@org_golang_google_protobuf//proto", 17 ], 18 ) 19 20 go_test( 21 name = "entryset_test", 22 size = "small", 23 srcs = ["entryset_test.go"], 24 library = ":entryset", 25 deps = [ 26 "//kythe/go/util/compare", 27 "//kythe/go/util/kytheuri", 28 "//kythe/go/util/log", 29 "//kythe/proto:entryset_go_proto", 30 "//kythe/proto:internal_go_proto", 31 "//kythe/proto:storage_go_proto", 32 "@org_golang_google_protobuf//encoding/prototext", 33 "@org_golang_google_protobuf//proto", 34 ], 35 )