Files
frameworks_base/tools/validatekeymaps/Android.bp
chaviw 929d80f726 Add dependency on libui-types
Test: Builds
Bug: 158476194
Change-Id: I9234bd688e572a40649810eb1862a3e9e5386e5f
2020-07-13 10:44:53 -07:00

33 lines
526 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",
"libinput",
"libutils",
"libcutils",
"liblog",
"libui-types",
],
// This tool is prebuilt if we're doing an app-only build.
product_variables: {
unbundled_build: {
enabled: false,
},
},
}