blob: 6fb278c83f0a7b2e4b945bf6b80038921c91a2d5 [file] [log] [blame]
Dan Willemsend3eac262017-09-08 22:47:47 -07001//
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 "libinput",
19 "libutils",
20 "libcutils",
21 "liblog",
22 ],
23
24 // This tool is prebuilt if we're doing an app-only build.
25 product_variables: {
26 unbundled_build: {
27 enabled: false,
28 },
29 },
30}