Dan Willemsen | d3eac26 | 2017-09-08 22:47:47 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright 2010 The Android Open Source Project |
| 3 | // |
| 4 | // Keymap validation tool. |
| 5 | // |
| 6 | |
| 7 | cc_binary_host { |
| 8 | name: "validatekeymaps", |
| 9 | |
| 10 | srcs: ["Main.cpp"], |
| 11 | |
| 12 | cflags: [ |
| 13 | "-Wall", |
| 14 | "-Werror", |
| 15 | ], |
| 16 | |
| 17 | static_libs: [ |
Siarhei Vishniakou | 8027876 | 2018-07-06 11:50:18 +0100 | [diff] [blame] | 18 | "libbase", |
Dan Willemsen | d3eac26 | 2017-09-08 22:47:47 -0700 | [diff] [blame] | 19 | "libinput", |
| 20 | "libutils", |
| 21 | "libcutils", |
| 22 | "liblog", |
chaviw | 929d80f | 2020-07-01 12:01:54 -0700 | [diff] [blame^] | 23 | "libui-types", |
Dan Willemsen | d3eac26 | 2017-09-08 22:47:47 -0700 | [diff] [blame] | 24 | ], |
| 25 | |
| 26 | // This tool is prebuilt if we're doing an app-only build. |
| 27 | product_variables: { |
| 28 | unbundled_build: { |
| 29 | enabled: false, |
| 30 | }, |
| 31 | }, |
| 32 | } |