1// Copyright 2009 Google Inc. All Rights Reserved. 2// 3// Android.mk for etc1tool 4// 5 6package { 7 default_applicable_licenses: ["Android-Apache-2.0"], 8} 9 10cc_binary_host { 11 name: "etc1tool", 12 13 srcs: ["etc1tool.cpp"], 14 15 cflags: [ 16 "-Wall", 17 "-Werror", 18 ], 19 20 static_libs: [ 21 "libexpat", 22 "libpng", 23 "libETC1", 24 "libz", 25 ], 26 27 target: { 28 windows: { 29 enabled: true, 30 }, 31 }, 32} 33