blob: a244a2ddbbf0d9c3484e6209b07d63428f798969 [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",
Dan Willemsene19d4512016-06-14 10:30:06 -070018}