1//
2// Copyright 2010 The Android Open Source Project
3//
4// Keymap validation tool.
5//
6
7cc_binary_host {
8    name: "validatekeymaps",
9
10    srcs: ["Main.cpp"],
11
12    cflags: [
13        "-Wall",
14        "-Werror",
15    ],
16
17    static_libs: [
18        "libbase",
19        "libinput",
20        "libutils",
21        "libcutils",
22        "liblog",
23    ],
24
25    // This tool is prebuilt if we're doing an app-only build.
26    product_variables: {
27        unbundled_build: {
28          enabled: false,
29        },
30    },
31}
32