platform_build/tools/zipalign/Android.bp

32 lines
480 B
Text
Raw Normal View History

//
// Copyright 2008 The Android Open Source Project
//
// Zip alignment tool
//
cc_binary_host {
name: "zipalign",
srcs: [
"ZipAlign.cpp",
"ZipEntry.cpp",
"ZipFile.cpp",
],
static_libs: [
"libandroidfw",
"libutils",
"libcutils",
"liblog",
"libzopfli",
"libz",
],
target: {
windows: {
host_ldlibs: ["-lpthread"],
enabled: true,
},
},
}