1// 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
11    cflags: [
12        "-Wall",
13        "-Werror",
14    ],
15
16    static_libs: [
17        "libexpat",
18        "libpng",
19        "libETC1",
20        "libz",
21    ],
22
23    target: {
24        windows: {
25            enabled: true,
26        },
27    },
28}
29