blob: 2759e29d1620006356dd77215e07541d396d0f3f [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: [
Siarhei Vishniakou80278762018-07-06 11:50:18 +010018 "libbase",
Brett Chabot00195522020-09-09 13:52:20 -070019 "libbinder",
Dan Willemsend3eac262017-09-08 22:47:47 -070020 "libinput",
21 "libutils",
22 "libcutils",
23 "liblog",
chaviw929d80f2020-07-01 12:01:54 -070024 "libui-types",
Dan Willemsend3eac262017-09-08 22:47:47 -070025 ],
26
27 // This tool is prebuilt if we're doing an app-only build.
28 product_variables: {
29 unbundled_build: {
30 enabled: false,
31 },
32 },
33}