blob: 9083a45c55b96d94939ff178fab341b4a4ae584b [file] [log] [blame]
load("//tools/bzl:asciidoc.bzl", "genasciidoc", "genasciidoc_zip", "release_notes_attributes")
SRCS = glob(["*.txt"])
genasciidoc(
name = "ReleaseNotes",
srcs = SRCS,
attributes = release_notes_attributes(),
backend = "html5",
resources = False,
searchbox = False,
visibility = ["//visibility:public"],
)
genasciidoc_zip(
name = "html",
srcs = SRCS,
attributes = release_notes_attributes(),
backend = "html5",
resources = False,
searchbox = False,
visibility = ["//visibility:public"],
)