Home | History | Annotate | Download | only in ijar
      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 }
     19