kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/serving/xrefs/assemble/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 = "assemble",
     7      srcs = ["assemble.go"],
     8      importpath = "kythe.io/kythe/go/serving/xrefs/assemble",
     9      deps = [
    10          "//kythe/go/services/graphstore",
    11          "//kythe/go/services/xrefs",
    12          "//kythe/go/storage/stream",
    13          "//kythe/go/util/compare",
    14          "//kythe/go/util/encoding/text",
    15          "//kythe/go/util/kytheuri",
    16          "//kythe/go/util/log",
    17          "//kythe/go/util/pager",
    18          "//kythe/go/util/schema/edges",
    19          "//kythe/go/util/schema/facts",
    20          "//kythe/go/util/schema/nodes",
    21          "//kythe/go/util/schema/tickets",
    22          "//kythe/go/util/span",
    23          "//kythe/proto:common_go_proto",
    24          "//kythe/proto:internal_go_proto",
    25          "//kythe/proto:serving_go_proto",
    26          "//kythe/proto:storage_go_proto",
    27      ],
    28  )
    29  
    30  go_test(
    31      name = "assemble_test",
    32      size = "small",
    33      srcs = ["assemble_test.go"],
    34      library = "assemble",
    35      visibility = ["//visibility:private"],
    36      deps = [
    37          "//kythe/go/test/testutil",
    38          "//kythe/proto:internal_go_proto",
    39          "//kythe/proto:serving_go_proto",
    40          "//kythe/proto:storage_go_proto",
    41          "@org_golang_google_protobuf//proto",
    42      ],
    43  )