Dan Willemsen | 56eb2f9f | 2016-06-06 14:41:32 -0700 | [diff] [blame^] | 1 | // 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 | |||||
6 | cc_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 | } |