c0a0f2dc1f
Test: m atree fs_config fs_config_generate_test fs_config-unit-tests fs_get_stats zipalign Test: cd out/host/linux-x86/nativetest64/fs_config-unit-tests ./fs_config-unit-tests Change-Id: I3c5403a7f1cf221715eb52a41c640af9afcee175
31 lines
480 B
Text
31 lines
480 B
Text
//
|
|
// 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,
|
|
},
|
|
},
|
|
}
|