summaryrefslogtreecommitdiff
path: root/jurt/BUCK
diff options
context:
space:
mode:
Diffstat (limited to 'jurt/BUCK')
-rw-r--r--jurt/BUCK21
1 files changed, 21 insertions, 0 deletions
diff --git a/jurt/BUCK b/jurt/BUCK
new file mode 100644
index 000000000000..f2349aa017e0
--- /dev/null
+++ b/jurt/BUCK
@@ -0,0 +1,21 @@
+
+java_sources(
+ name = 'jurt-src',
+ srcs = glob(['com/**']),
+ visibility = ['PUBLIC'],
+)
+
+java_doc(
+ name = 'jurt-javadoc',
+ title = 'LibreOffice Java Uno Runtime',
+ pkgs = [
+ 'com.sun.star',
+ ],
+ paths = ['.'],
+ srcs = glob(['com/**']),
+ deps = [
+ '//:jurt',
+ '//:unoloader',
+ ],
+ visibility = ['PUBLIC'],
+)