2021-10-27 13:13:59 +00:00
|
|
|
load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc")
|
2019-02-28 22:43:57 +00:00
|
|
|
|
2019-05-01 15:33:25 +00:00
|
|
|
licenses(["notice"])
|
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
# Note that due to a bug in Bazel 0.22.0, these targets cannot be built without
|
|
|
|
# the --incompatible_remap_main_repo flag.
|
|
|
|
stardoc(
|
|
|
|
name = "build_test_docs",
|
|
|
|
out = "build_test_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//rules:build_test.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//rules:build_test"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "analysis_test_docs",
|
|
|
|
out = "analysis_test_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//rules:analysis_test.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "collections_docs",
|
|
|
|
out = "collections_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:collections.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:collections"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "dicts_docs",
|
|
|
|
out = "dicts_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:dicts.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:dicts"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "partial_docs",
|
|
|
|
out = "partial_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:partial.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:partial"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "paths_docs",
|
|
|
|
out = "paths_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:paths.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:paths"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "selects_docs",
|
|
|
|
out = "selects_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:selects.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:selects"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "new_sets_docs",
|
|
|
|
out = "new_sets_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:new_sets.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:new_sets"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "shell_docs",
|
|
|
|
out = "shell_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:shell.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:shell"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "structs_docs",
|
|
|
|
out = "structs_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:structs.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:structs"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "types_docs",
|
|
|
|
out = "types_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:types.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:types"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "unittest_docs",
|
|
|
|
out = "unittest_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:unittest.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:unittest"],
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "versions_docs",
|
|
|
|
out = "versions_doc_gen.md",
|
2019-03-07 22:22:04 +00:00
|
|
|
input = "//lib:versions.bzl",
|
2019-02-28 22:43:57 +00:00
|
|
|
deps = ["//lib:versions"],
|
|
|
|
)
|
|
|
|
|
2019-03-18 12:23:15 +00:00
|
|
|
stardoc(
|
|
|
|
name = "copy_file_docs",
|
|
|
|
out = "copy_file_doc_gen.md",
|
|
|
|
input = "//rules:copy_file.bzl",
|
|
|
|
deps = ["//rules:copy_file"],
|
|
|
|
)
|
|
|
|
|
2019-03-19 06:52:56 +00:00
|
|
|
stardoc(
|
|
|
|
name = "write_file_docs",
|
|
|
|
out = "write_file_doc_gen.md",
|
|
|
|
input = "//rules:write_file.bzl",
|
|
|
|
deps = ["//rules:write_file"],
|
|
|
|
)
|
2019-04-12 17:35:29 +00:00
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "diff_test_docs",
|
|
|
|
out = "diff_test_doc_gen.md",
|
|
|
|
input = "//rules:diff_test.bzl",
|
|
|
|
deps = ["//rules:diff_test"],
|
|
|
|
)
|
2019-05-14 11:33:01 +00:00
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "native_binary_docs",
|
|
|
|
out = "native_binary_doc_gen.md",
|
|
|
|
input = "//rules:native_binary.bzl",
|
|
|
|
deps = ["//rules:native_binary"],
|
|
|
|
)
|
2019-05-21 12:46:09 +00:00
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "run_binary_docs",
|
|
|
|
out = "run_binary_doc_gen.md",
|
|
|
|
input = "//rules:run_binary.bzl",
|
|
|
|
deps = ["//rules:run_binary"],
|
|
|
|
)
|
2019-07-03 16:46:14 +00:00
|
|
|
|
|
|
|
stardoc(
|
|
|
|
name = "common_settings_docs",
|
|
|
|
out = "common_settings_doc_gen.md",
|
|
|
|
input = "//rules:common_settings.bzl",
|
2019-09-17 12:03:22 +00:00
|
|
|
deps = ["//rules:common_settings"],
|
2019-07-03 16:46:14 +00:00
|
|
|
)
|