25 lines
536 B
Text
25 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",
|
||
|
],
|
||
|
}
|