blob: 15b8b4105713d5bad93709b80fd9bc4ece46cdef [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",
Dan Willemsend3eac262017-09-08 22:47:47 -070019 "libinput",
20 "libutils",
21 "libcutils",
22 "liblog",
chaviw929d80f2020-07-01 12:01:54 -070023 "libui-types",
Dan Willemsend3eac262017-09-08 22:47:47 -070024 ],
Brett Chabot4bfc6502020-11-03 16:04:22 -080025 target: {
26 linux_glibc: {
27 static_libs: [
28 // libbinder is only available for linux
29 "libbinder",
30 ],
31 },
32 },
Dan Willemsend3eac262017-09-08 22:47:47 -070033
34 // This tool is prebuilt if we're doing an app-only build.
35 product_variables: {
36 unbundled_build: {
Brett Chabot4bfc6502020-11-03 16:04:22 -080037 enabled: false,
Dan Willemsend3eac262017-09-08 22:47:47 -070038 },
39 },
40}