kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/platform/analysis/proxy/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 = "proxy",
     7      srcs = ["proxy.go"],
     8      importpath = "kythe.io/kythe/go/platform/analysis/proxy",
     9      deps = [
    10          "//kythe/go/util/log",
    11          "//kythe/go/util/schema/facts",
    12          "//kythe/proto:analysis_go_proto",
    13          "//kythe/proto:common_go_proto",
    14          "//kythe/proto:storage_go_proto",
    15          "@org_golang_google_protobuf//encoding/protojson",
    16          "@org_golang_google_protobuf//proto",
    17      ],
    18  )
    19  
    20  go_test(
    21      name = "proxy_test",
    22      size = "small",
    23      srcs = ["proxy_test.go"],
    24      library = ":proxy",
    25      deps = [
    26          "//kythe/go/test/testutil",
    27          "//kythe/go/util/compare",
    28          "//kythe/go/util/log",
    29          "//kythe/go/util/schema/facts",
    30          "//kythe/proto:analysis_go_proto",
    31          "//kythe/proto:common_go_proto",
    32          "//kythe/proto:storage_go_proto",
    33          "@org_golang_google_protobuf//encoding/protojson",
    34          "@org_golang_google_protobuf//proto",
    35      ],
    36  )