747fa28ad9
The otherwise unused charging-LED is used as notification light with configurable pulse-widths. Change-Id: Ic6c7cf993b8e83793b191d24cff65320c68d40d0
24 lines
536 B
Text
24 lines
536 B
Text
//
|
|
// Copyright (C) 2023 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_binary {
|
|
name: "android.hardware.lights-service.bengal",
|
|
relative_install_path: "hw",
|
|
init_rc: ["android.hardware.lights.bengal.rc"],
|
|
vintf_fragments: ["android.hardware.lights.bengal.xml"],
|
|
vendor: true,
|
|
shared_libs: [
|
|
"libbase",
|
|
"liblog",
|
|
"libhardware",
|
|
"libbinder_ndk",
|
|
"android.hardware.light-V1-ndk",
|
|
],
|
|
srcs: [
|
|
"Lights.cpp",
|
|
"main.cpp",
|
|
],
|
|
}
|