summaryrefslogtreecommitdiffstats
path: root/javaunohelper/BUCK
diff options
context:
space:
mode:
Diffstat (limited to 'javaunohelper/BUCK')
-rw-r--r--javaunohelper/BUCK21
1 files changed, 21 insertions, 0 deletions
diff --git a/javaunohelper/BUCK b/javaunohelper/BUCK
new file mode 100644
index 000000000..a33df7b9d
--- /dev/null
+++ b/javaunohelper/BUCK
@@ -0,0 +1,21 @@
+genrule(
+ name = 'juh-src',
+ cmd = ' && '.join([
+ 'cd $TMP',
+ 'echo "FAKE SOURCE ARCHIVE" > README',
+ 'zip -qr $OUT *',
+ ]),
+ out = 'juh-src.jar',
+ visibility = ['PUBLIC'],
+)
+
+genrule(
+ name = 'juh-javadoc',
+ cmd = ' && '.join([
+ 'cd $TMP',
+ 'echo "FAKE JAVADOC ARCHIVE" > README',
+ 'zip -qr $OUT *',
+ ]),
+ out = 'juh-javadoc.jar',
+ visibility = ['PUBLIC'],
+)