14fdf9342e
Implement genasciidoc rule for bazel. It's a filegroup containing all the html and resource files. Also implement genasciidoc_zip rule for bazel, which is similar to buck's genasciidoc rule to produce a zip file containing all asciidoctor generated and resource files. TEST PLAN: bazel build Documentation buck build Documentation:html diff -u bazel-bin/Documentation/install.html buck-out/gen/Documentation/html__tmp/Documentation/install.html Change-Id: I3065355800a982c6956d3bb634204baaa60c045e
41 lines
984 B
Python
41 lines
984 B
Python
load('//tools/bzl:gwt.bzl', 'gwt_module')
|
|
|
|
SRC = 'src/main/java/com/google/gerrit/prettify/'
|
|
|
|
gwt_module(
|
|
name = 'client',
|
|
srcs = glob([
|
|
SRC + 'common/**/*.java',
|
|
]),
|
|
gwt_xml = SRC + 'PrettyFormatter.gwt.xml',
|
|
deps = ['//lib/gwt:user'],
|
|
exported_deps = [
|
|
'//gerrit-extension-api:client',
|
|
'//gerrit-gwtexpui:SafeHtml',
|
|
'//gerrit-patch-jgit:client',
|
|
'//gerrit-patch-jgit:Edit',
|
|
'//gerrit-reviewdb:client',
|
|
'//lib:gwtjsonrpc',
|
|
'//lib:gwtjsonrpc_src',
|
|
],
|
|
visibility = ['//visibility:public'],
|
|
)
|
|
|
|
java_library(
|
|
name = 'server',
|
|
srcs = glob([SRC + 'common/**/*.java']),
|
|
deps = [
|
|
'//gerrit-patch-jgit:server',
|
|
'//gerrit-reviewdb:server',
|
|
'//lib:guava',
|
|
'//lib:gwtjsonrpc',
|
|
'//lib/jgit/org.eclipse.jgit:jgit',
|
|
],
|
|
visibility = ['//visibility:public'],
|
|
)
|
|
|
|
exports_files([
|
|
'src/main/resources/com/google/gerrit/prettify/client/prettify.css',
|
|
'src/main/resources/com/google/gerrit/prettify/client/prettify.js',
|
|
])
|