aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/java/buck-ios-support/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/java/buck-ios-support/BUILD')
-rw-r--r--third_party/java/buck-ios-support/BUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/third_party/java/buck-ios-support/BUILD b/third_party/java/buck-ios-support/BUILD
new file mode 100644
index 0000000000..fd84b25b2d
--- /dev/null
+++ b/third_party/java/buck-ios-support/BUILD
@@ -0,0 +1,21 @@
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"]) # Apache 2.0
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//third_party:__pkg__"],
+)
+
+java_library(
+ name = "buck-ios-support",
+ srcs = glob(
+ ["java/**/*.java"],
+ ),
+ deps = [
+ "//third_party:guava",
+ "//third_party:jsr305",
+ "//third_party/java/dd_plist",
+ ],
+)