Files
android_kernel_samsung_sm87…/qcom/opensource/lights/Android.bp
2025-08-12 23:12:57 +02:00

45 lines
895 B
Plaintext
Executable File

cc_binary {
name: "vendor.qti.hardware.lights.service",
relative_install_path: "hw",
init_rc: ["vendor.qti.hardware.lights.service.rc"],
vintf_fragments: ["vendor.qti.hardware.lights.service.xml"],
vendor: true,
shared_libs: [
"libbase",
"liblog",
"libhardware",
"libbinder_ndk",
"android.hardware.light-V2-ndk",
],
srcs: [
"Lights.cpp",
"main.cpp",
],
}
cc_fuzz {
name: "vendor.qti.hardware.lights-service.aidl_fuzzer",
vendor: true,
shared_libs: [
"liblog",
"libutils",
"libcutils",
"libbinder",
"libbinder_ndk",
"libhardware",
"android.hardware.light-V2-ndk",
],
static_libs: [
"libbinder_random_parcel",
],
srcs: ["fuzzer.cpp", "Lights.cpp"],
cflags: [
"-Wall",
"-Werror",
],
}