kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/docs/schema/BUILD (about) 1 load("@bazel_skylib//:bzl_library.bzl", "bzl_library") 2 load(":asciidoc_with_verifier.bzl", "asciidoc_with_verifier", "build_example_sh") 3 4 package(default_visibility = ["//kythe:default_visibility"]) 5 6 build_example_sh() 7 8 asciidoc_with_verifier( 9 name = "schema", 10 src = "schema.txt", 11 tags = ["manual"], 12 ) 13 14 asciidoc_with_verifier( 15 name = "influences-relation", 16 src = "influences-relation.txt", 17 ) 18 19 asciidoc_with_verifier( 20 name = "callgraph", 21 src = "callgraph.txt", 22 ) 23 24 asciidoc_with_verifier( 25 name = "verifierstyle", 26 src = "verifierstyle.txt", 27 ) 28 29 asciidoc_with_verifier( 30 name = "indexing-generated-code", 31 src = "indexing-generated-code.txt", 32 ) 33 34 asciidoc_with_verifier( 35 name = "writing-an-indexer", 36 src = "writing-an-indexer.txt", 37 ) 38 39 asciidoc_with_verifier( 40 name = "marked-source", 41 src = "marked-source.txt", 42 ) 43 44 asciidoc_with_verifier( 45 name = "modules", 46 src = "modules.txt", 47 ) 48 49 bzl_library( 50 name = "asciidoc_with_verifier_bzl", 51 srcs = ["asciidoc_with_verifier.bzl"], 52 deps = ["//kythe/docs:asciidoc_bzl"], 53 )