Files
frameworks_base/tools/validatekeymaps/Android.bp
Brett Chabot 0019552d44 Build input and binder JNI bindings for linux host.
And add Transform.cpp to libhostgraphics to support this.

Test: m libandroid_runtime
Change-Id: I848b3e1ef79cb3f5cf8477c49eb50d4ed701a4a8
2020-10-28 09:29:28 -07:00

34 lines
547 B
Plaintext

//
// Copyright 2010 The Android Open Source Project
//
// Keymap validation tool.
//
cc_binary_host {
name: "validatekeymaps",
srcs: ["Main.cpp"],
cflags: [
"-Wall",
"-Werror",
],
static_libs: [
"libbase",
"libbinder",
"libinput",
"libutils",
"libcutils",
"liblog",
"libui-types",
],
// This tool is prebuilt if we're doing an app-only build.
product_variables: {
unbundled_build: {
enabled: false,
},
},
}