kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/extractors/bazel/extutil/BUILD (about)

     1  load("//:visibility.bzl", "PUBLIC_VISIBILITY")
     2  load("//tools:build_rules/shims.bzl", "go_library")
     3  
     4  package(default_visibility = ["//kythe:default_visibility"])
     5  
     6  # A library to support Bazel extractors switching between .kzip and .kindex
     7  # output, for temporary use in migrating away from .kindex files.
     8  # TODO: refactor this now that kindex is gone
     9  go_library(
    10      name = "extutil",
    11      srcs = ["extutil.go"],
    12      importpath = "kythe.io/kythe/go/extractors/bazel/extutil",
    13      visibility = [PUBLIC_VISIBILITY],
    14      deps = ["//kythe/go/extractors/bazel"],
    15  )