blob: bfde785483a0f1c5dbce773b32b08a5bb4b01c48 [file] [log] [blame]
Colin Cross6d7b3462017-10-20 13:02:56 -07001// Copyright 2009 Google Inc. All Rights Reserved.
2//
3// Android.mk for etc1tool
4//
5
6cc_binary_host {
7 name: "etc1tool",
8
9 srcs: ["etc1tool.cpp"],
10
Chih-Hung Hsieh49448132017-10-31 14:54:46 -070011 cflags: [
12 "-Wall",
13 "-Werror",
14 ],
15
Colin Cross6d7b3462017-10-20 13:02:56 -070016 static_libs: [
17 "libexpat",
18 "libpng",
19 "libETC1",
20 "libz",
21 ],
22
23 target: {
24 windows: {
25 enabled: true,
26 },
27 },
28}