7c2d228701
For acp, we've been using an old prebuilt in prebuilts/sdk, but it's not part of the SDK. Instead, we'll use a prebuilt in the build-tools repository. For ijar, we've been using the host libstdc++ to workaround the lack of libc++ on some unbundled branches. Instead, use a prebuilt that can use libc++. For ziptime, we've been disabling it on unbundled branches, due to the lack of libc++. Instead, use a prebuilt version of ziptime that can use the prebuilt libc++. Change-Id: If80f845ea06f76e3fe6765964e77c864eaf303d0
18 lines
372 B
Text
18 lines
372 B
Text
// Copyright 2015 The Android Open Source Project
|
|
//
|
|
// The rest of files in this directory comes from
|
|
// https://github.com/bazelbuild/bazel/tree/master/third_party/ijar
|
|
|
|
cc_binary_host {
|
|
srcs: [
|
|
"classfile.cc",
|
|
"ijar.cc",
|
|
"zip.cc",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
host_ldlibs: ["-lz"],
|
|
name: "ijar",
|
|
}
|