Merge "Add a libc++ version of ijar for prebuilt use"

This commit is contained in:
Treehugger Robot 2016-06-14 18:34:38 +00:00 committed by Gerrit Code Review
commit 06f3e8349f
1 changed files with 14 additions and 0 deletions

View File

@ -18,3 +18,17 @@ cc_binary_host {
// libc++ is not supported for TARGET_BUILD_APPS builds // libc++ is not supported for TARGET_BUILD_APPS builds
stl: "libstdc++", stl: "libstdc++",
} }
cc_binary_host {
srcs: [
"classfile.cc",
"ijar.cc",
"zip.cc",
],
cflags: [
"-Wall",
"-Werror",
],
host_ldlibs: ["-lz"],
name: "ijar_libc++",
}