aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/BUILD
diff options
context:
space:
mode:
authorGravatar Rumou Duan <rduan@google.com>2016-09-21 21:59:01 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2016-09-22 09:55:50 +0000
commita518f63e6a9f42996b1707dd6bb9a9287eb5b675 (patch)
tree0dc35c1f3a1dd9a7b6f2297a23b32a82e35ede4f /third_party/ijar/BUILD
parentd7886f0589c217f90dca42cb5269d004ed3abbd1 (diff)
Move zlib-interfacing code from third_party/ijar/zip.cc into a separate class. And add a dummy zlib client.
-- MOS_MIGRATED_REVID=133879880
Diffstat (limited to 'third_party/ijar/BUILD')
-rw-r--r--third_party/ijar/BUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/ijar/BUILD b/third_party/ijar/BUILD
index 85245de548..9abfd4d46c 100644
--- a/third_party/ijar/BUILD
+++ b/third_party/ijar/BUILD
@@ -24,6 +24,16 @@ cc_library(
"mapped_file.h",
"zip.h",
],
+ deps = [":zlib_client"],
+)
+
+cc_library(
+ name = "zlib_client",
+ srcs = ["zlib_client.cc"],
+ hdrs = [
+ "common.h",
+ "zlib_client.h",
+ ],
deps = ["//third_party/zlib"],
)