summaryrefslogtreecommitdiffstats
path: root/ReleaseNotes/BUILD
blob: 9083a45c55b96d94939ff178fab341b4a4ae584b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"],
)