Dan Willemsen | c0a0f2d | 2017-09-09 13:37:03 -0700 | [diff] [blame^] | 1 | // |
2 | // Copyright 2008 The Android Open Source Project | ||||
3 | // | ||||
4 | // Zip alignment tool | ||||
5 | // | ||||
6 | |||||
7 | cc_binary_host { | ||||
8 | name: "zipalign", | ||||
9 | |||||
10 | srcs: [ | ||||
11 | "ZipAlign.cpp", | ||||
12 | "ZipEntry.cpp", | ||||
13 | "ZipFile.cpp", | ||||
14 | ], | ||||
15 | |||||
16 | static_libs: [ | ||||
17 | "libandroidfw", | ||||
18 | "libutils", | ||||
19 | "libcutils", | ||||
20 | "liblog", | ||||
21 | "libzopfli", | ||||
22 | "libz", | ||||
23 | ], | ||||
24 | |||||
25 | target: { | ||||
26 | windows: { | ||||
27 | host_ldlibs: ["-lpthread"], | ||||
28 | enabled: true, | ||||
29 | }, | ||||
30 | }, | ||||
31 | } |