kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/localrun/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 = "localrun",
     7      srcs = ["localrun.go"],
     8      importpath = "kythe.io/kythe/go/localrun",
     9      deps = [
    10          "//kythe/go/platform/delimited",
    11          "//kythe/go/platform/delimited/dedup",
    12          "//kythe/go/serving/pipeline",
    13          "//kythe/go/serving/pipeline/beamio",
    14          "//kythe/go/serving/xrefs",
    15          "//kythe/go/util/datasize",
    16          "//kythe/go/util/log",
    17          "//third_party/bazel:build_event_stream_go_proto",
    18          "@com_github_apache_beam//sdks/go/pkg/beam",
    19          "@com_github_apache_beam//sdks/go/pkg/beam/transforms/stats",
    20          "@com_github_apache_beam//sdks/go/pkg/beam/x/beamx",
    21      ],
    22  )
    23  
    24  go_test(
    25      name = "localrun_test",
    26      srcs = ["localrun_test.go"],
    27      library = ":localrun",
    28  )