2017-09-08 22:47:47 -07:00
|
|
|
//
|
|
|
|
// Copyright 2010 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Keymap validation tool.
|
|
|
|
//
|
|
|
|
|
|
|
|
cc_binary_host {
|
|
|
|
name: "validatekeymaps",
|
|
|
|
|
|
|
|
srcs: ["Main.cpp"],
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
],
|
|
|
|
|
|
|
|
static_libs: [
|
2018-07-06 11:50:18 +01:00
|
|
|
"libbase",
|
2017-09-08 22:47:47 -07:00
|
|
|
"libinput",
|
|
|
|
"libutils",
|
|
|
|
"libcutils",
|
|
|
|
"liblog",
|
|
|
|
],
|
|
|
|
|
|
|
|
// This tool is prebuilt if we're doing an app-only build.
|
|
|
|
product_variables: {
|
|
|
|
unbundled_build: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|