You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
462 B
33 lines
462 B
4 months ago
|
// Copyright 2009 Google Inc. All Rights Reserved.
|
||
|
//
|
||
|
// Android.mk for etc1tool
|
||
|
//
|
||
|
|
||
|
package {
|
||
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
||
|
}
|
||
|
|
||
|
cc_binary_host {
|
||
|
name: "etc1tool",
|
||
|
|
||
|
srcs: ["etc1tool.cpp"],
|
||
|
|
||
|
cflags: [
|
||
|
"-Wall",
|
||
|
"-Werror",
|
||
|
],
|
||
|
|
||
|
static_libs: [
|
||
|
"libexpat",
|
||
|
"libpng",
|
||
|
"libETC1",
|
||
|
"libz",
|
||
|
],
|
||
|
|
||
|
target: {
|
||
|
windows: {
|
||
|
enabled: true,
|
||
|
},
|
||
|
},
|
||
|
}
|