Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: I4403d4e304a662f51a1a239f415cc11d97d33a33
29 lines
392 B
Plaintext
29 lines
392 B
Plaintext
// Copyright 2009 Google Inc. All Rights Reserved.
|
|
//
|
|
// Android.mk for etc1tool
|
|
//
|
|
|
|
cc_binary_host {
|
|
name: "etc1tool",
|
|
|
|
srcs: ["etc1tool.cpp"],
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
static_libs: [
|
|
"libexpat",
|
|
"libpng",
|
|
"libETC1",
|
|
"libz",
|
|
],
|
|
|
|
target: {
|
|
windows: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
}
|