2a5bc9dfbf
* Remove unused local variables. Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: Iced5bb903902f49d7cd5cf5f572906a512c75e18
33 lines
515 B
Text
33 lines
515 B
Text
//
|
|
// 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"],
|
|
|
|
static_libs: [
|
|
"libandroidfw",
|
|
"libutils",
|
|
"libcutils",
|
|
"liblog",
|
|
"libzopfli",
|
|
"libz",
|
|
],
|
|
|
|
target: {
|
|
windows: {
|
|
host_ldlibs: ["-lpthread"],
|
|
enabled: true,
|
|
},
|
|
},
|
|
}
|