50 lines
844 B
Plaintext
50 lines
844 B
Plaintext
//
|
|
// Copyright (C) 2023 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
android_app {
|
|
name: "XiaomiPeripheralManager",
|
|
defaults: [
|
|
"SettingsLibDefaults",
|
|
],
|
|
|
|
certificate: "platform",
|
|
srcs: ["src/**/*.java"],
|
|
platform_apis: true,
|
|
privileged: true,
|
|
system_ext_specific: true,
|
|
resource_dirs: ["res"],
|
|
static_libs: [
|
|
"androidx.core_core",
|
|
"androidx.preference_preference",
|
|
],
|
|
required: [
|
|
"xiaomi-pen",
|
|
"xiaomi-keyboard"
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "xiaomi-pen",
|
|
vendor: true,
|
|
srcs: [
|
|
"xiaomi-pen.cpp",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "xiaomi-keyboard",
|
|
vendor: true,
|
|
srcs: [
|
|
"xiaomi-keyboard.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
"libsensorndkbridge",
|
|
],
|
|
}
|