blob: 6f3a2394253a1620f3b4bf6146ce8628d7302bf1 [file] [log] [blame]
Dan Willemsen56eb2f9f2016-06-06 14:41:32 -07001// Copyright 2015 The Android Open Source Project
2//
3// The rest of files in this directory comes from
4// https://github.com/bazelbuild/bazel/tree/master/third_party/ijar
5
6cc_binary_host {
7 srcs: [
8 "classfile.cc",
9 "ijar.cc",
10 "zip.cc",
11 ],
12 cflags: [
13 "-Wall",
14 "-Werror",
15 ],
16 host_ldlibs: ["-lz"],
17 name: "ijar",
18 // libc++ is not supported for TARGET_BUILD_APPS builds
19 stl: "libstdc++",
20}
Dan Willemsene19d4512016-06-14 10:30:06 -070021
22cc_binary_host {
23 srcs: [
24 "classfile.cc",
25 "ijar.cc",
26 "zip.cc",
27 ],
28 cflags: [
29 "-Wall",
30 "-Werror",
31 ],
32 host_ldlibs: ["-lz"],
33 name: "ijar_libc++",
34}