kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/serving/explore/BUILD (about)

     1  load("//tools:build_rules/shims.bzl", "go_library", "go_test")
     2  
     3  package(
     4      default_visibility = ["//kythe:default_visibility"],
     5      licenses = ["notice"],
     6  )
     7  
     8  go_library(
     9      name = "explore",
    10      srcs = ["explore.go"],
    11      importpath = "kythe.io/kythe/go/serving/explore",
    12      deps = [
    13          "//kythe/go/storage/table",
    14          "//kythe/proto:explore_go_proto",
    15          "//kythe/proto:serving_go_proto",
    16          "@org_bitbucket_creachadair_stringset//:stringset",
    17      ],
    18  )
    19  
    20  go_test(
    21      name = "explore_test",
    22      size = "small",
    23      srcs = ["explore_test.go"],
    24      library = ":explore",
    25      visibility = ["//visibility:private"],
    26      deps = [
    27          "//kythe/go/storage/table",
    28          "//kythe/go/test/testutil",
    29          "//kythe/proto:explore_go_proto",
    30          "//kythe/proto:serving_go_proto",
    31          "@org_bitbucket_creachadair_stringset//:stringset",
    32          "@org_golang_google_protobuf//proto",
    33      ],
    34  )