Index: third_party/ijar/BUILD |
diff --git a/third_party/ijar/BUILD b/third_party/ijar/BUILD |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5f22b676b3a1ba99e1e7ac83e73c043795bf1be2 |
--- /dev/null |
+++ b/third_party/ijar/BUILD |
@@ -0,0 +1,38 @@ |
+package( |
+ default_visibility = [ |
+ "//src:__subpackages__", |
+ "//third_party/ijar:__subpackages__", |
+ ], |
+) |
+ |
+licenses(["notice"]) # Apache 2.0 |
+ |
+cc_library( |
+ name = "zip", |
+ srcs = ["zip.cc"], |
+ hdrs = [ |
+ "common.h", |
+ "zip.h", |
+ ], |
+ # TODO(bazel-team): we should replace the -lz flag, it is non-hermetic. |
+ # We should instead use a new_local_repository once the autoconf |
+ # mechanism is ready. |
+ linkopts = ["-lz"], |
+) |
+ |
+cc_binary( |
+ name = "zipper", |
+ srcs = ["zip_main.cc"], |
+ visibility = ["//visibility:public"], |
+ deps = [":zip"], |
+) |
+ |
+cc_binary( |
+ name = "ijar", |
+ srcs = [ |
+ "classfile.cc", |
+ "ijar.cc", |
+ ], |
+ visibility = ["//visibility:public"], |
+ deps = [":zip"], |
+) |