blob: f7e9a28391f6e50b3fbf7dcc6b2b057bd993bb49 [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}