kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/services/link/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 = "link",
     7      srcs = ["link.go"],
     8      importpath = "kythe.io/kythe/go/services/link",
     9      deps = [
    10          "//kythe/go/util/kytheuri",
    11          "//kythe/go/util/log",
    12          "//kythe/go/util/schema/edges",
    13          "//kythe/go/util/schema/facts",
    14          "//kythe/proto:identifier_go_proto",
    15          "//kythe/proto:link_go_proto",
    16          "//kythe/proto:xref_go_proto",
    17          "@org_bitbucket_creachadair_stringset//:stringset",
    18          "@org_golang_google_grpc//codes",
    19          "@org_golang_google_grpc//status",
    20          "@org_golang_google_protobuf//encoding/prototext",
    21          "@org_golang_google_protobuf//proto",
    22          "@org_golang_x_sync//errgroup",
    23          "@org_golang_x_sync//semaphore",
    24      ],
    25  )
    26  
    27  go_test(
    28      name = "link_test",
    29      srcs = ["link_test.go"],
    30      library = ":link",
    31      deps = [
    32          "//kythe/proto:common_go_proto",
    33          "//kythe/proto:identifier_go_proto",
    34          "//kythe/proto:link_go_proto",
    35          "//kythe/proto:xref_go_proto",
    36          "@org_golang_google_grpc//codes",
    37          "@org_golang_google_grpc//status",
    38          "@org_golang_google_protobuf//proto",
    39      ],
    40  )