30 lines
500 B
Text
30 lines
500 B
Text
|
//
|
||
|
// Copyright (C) 2024 The LineageOS Project
|
||
|
//
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
//
|
||
|
|
||
|
cc_binary {
|
||
|
name: "nonui-notifier",
|
||
|
vendor: true,
|
||
|
|
||
|
init_rc: ["nonui-notifier.rc"],
|
||
|
|
||
|
srcs: [
|
||
|
"NonUiNotifier.cpp",
|
||
|
],
|
||
|
|
||
|
shared_libs: [
|
||
|
"libbase",
|
||
|
"libcutils",
|
||
|
"libhidlbase",
|
||
|
"libutils",
|
||
|
"android.frameworks.sensorservice@1.0",
|
||
|
"android.hardware.sensors@1.0",
|
||
|
],
|
||
|
|
||
|
header_libs: [
|
||
|
"generated_kernel_headers",
|
||
|
],
|
||
|
}
|