kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/platform/kzip/info/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 = "info", 7 srcs = ["info.go"], 8 importpath = "kythe.io/kythe/go/platform/kzip/info", 9 deps = [ 10 "//kythe/go/platform/kzip", 11 "//kythe/go/util/log", 12 "//kythe/proto:analysis_go_proto", 13 "//kythe/proto:storage_go_proto", 14 "@org_bitbucket_creachadair_stringset//:stringset", 15 "@org_golang_google_protobuf//encoding/prototext", 16 ], 17 ) 18 19 go_test( 20 name = "info_test", 21 srcs = ["info_test.go"], 22 library = ":info", 23 deps = [ 24 "//kythe/go/platform/kzip", 25 "//kythe/go/util/compare", 26 "//kythe/proto:analysis_go_proto", 27 "//kythe/proto:storage_go_proto", 28 ], 29 )