blob: 2aa64504e5423af045742f327a31f296f957fd31 [file] [log] [blame]
Dan Willemsenc0a0f2d2017-09-09 13:37:03 -07001//
2// Copyright 2008 The Android Open Source Project
3//
4// Zip alignment tool
5//
6
7cc_binary_host {
8 name: "zipalign",
9
10 srcs: [
11 "ZipAlign.cpp",
12 "ZipEntry.cpp",
13 "ZipFile.cpp",
14 ],
15
Chih-Hung Hsieh2a5bc9d2017-10-03 13:45:03 -070016 cflags: ["-Wall", "-Werror"],
17
Dan Willemsenc0a0f2d2017-09-09 13:37:03 -070018 static_libs: [
19 "libandroidfw",
20 "libutils",
21 "libcutils",
22 "liblog",
23 "libzopfli",
24 "libz",
25 ],
26
27 target: {
28 windows: {
29 host_ldlibs: ["-lpthread"],
30 enabled: true,
31 },
32 },
33}