blob: 8e6196d291dc4e8b9f9bb0c6ac1af5e3992052f1 [file] [log] [blame]
//
// Copyright 2008 The Android Open Source Project
//
// Zip alignment tool
//
cc_binary_host {
name: "zipalign",
srcs: [
"ZipAlign.cpp",
"ZipEntry.cpp",
"ZipFile.cpp",
],
cflags: ["-Wall", "-Werror"],
// NOTE: Do not add any shared_libs dependencies because they will break the
// static_sdk_tools target.
static_libs: [
"libutils",
"libcutils",
"liblog",
"libziparchive",
"libz",
"libbase",
"libzopfli",
],
target: {
windows: {
host_ldlibs: ["-lpthread"],
enabled: true,
},
},
}