blob: cfc6aecdf0879bcaecd2c3f8b1b7b0f768b36fc4 [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
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}