kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/docs/BUILD (about)

     1  load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
     2  load(":asciidoc.bzl", "asciidoc")
     3  
     4  package(default_visibility = ["//kythe:default_visibility"])
     5  
     6  asciidoc(
     7      name = "kythe-compatible-compilers",
     8      src = "kythe-compatible-compilers.txt",
     9  )
    10  
    11  asciidoc(
    12      name = "kythe-overview",
    13      src = "kythe-overview.txt",
    14  )
    15  
    16  asciidoc(
    17      name = "kythe-storage",
    18      src = "kythe-storage.txt",
    19  )
    20  
    21  asciidoc(
    22      name = "kythe-uri-spec",
    23      src = "kythe-uri-spec.txt",
    24  )
    25  
    26  asciidoc(
    27      name = "kythe-verifier",
    28      src = "kythe-verifier.txt",
    29  )
    30  
    31  asciidoc(
    32      name = "kythe-compilation-database",
    33      src = "kythe-compilation-database.txt",
    34  )
    35  
    36  asciidoc(
    37      name = "kythes-command-line-tool",
    38      src = "kythes-command-line-tool.txt",
    39  )
    40  
    41  asciidoc(
    42      name = "modeling-libraries",
    43      src = "modeling-libraries.txt",
    44  )
    45  
    46  asciidoc(
    47      name = "kythe-configurable-extraction",
    48      src = "kythe-configurable-extraction.txt",
    49  )
    50  
    51  asciidoc(
    52      name = "kythe-kzip",
    53      src = "kythe-kzip.txt",
    54  )
    55  
    56  asciidoc(
    57      name = "schema-overview",
    58      src = "schema-overview.txt",
    59  )
    60  
    61  bzl_library(
    62      name = "asciidoc_bzl",
    63      srcs = ["asciidoc.bzl"],
    64      deps = [
    65          "@bazel_skylib//lib:paths",
    66          "@bazel_skylib//lib:shell",
    67      ],
    68  )