Add a libc++ version of ijar for prebuilt use

I'll remove the old version once we've moved over to the prebuilts.

Change-Id: Ifd8d396f8b653abbe958cd34e69831a6ca378649
This commit is contained in:
Dan Willemsen 2016-06-14 10:30:06 -07:00
parent e6fae50455
commit e19d451f49

View file

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