8027876f9f
DisplayViewport::uniqueId is now std::string, so change the calls appropriately. Do some additional cleanups and conversions. This almost completely removes the dependency on String8. Test: build only Bug: 111108021 Change-Id: Ibbb6ca59e9061954d4a5fb930ef03d42cb0230db
32 lines
503 B
Plaintext
32 lines
503 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",
|
|
],
|
|
|
|
// This tool is prebuilt if we're doing an app-only build.
|
|
product_variables: {
|
|
unbundled_build: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|