* Needed for AIDL HDMI-CEC HAL to work. Some functions that were in the HIDL HDMI-CEC HAL have been moved to separate HDMI connection HAL in the AIDL versions. Only returns connection status of HDMI ports on Pi. onHotplugEvent is not implemented. * Use hardware/interfaces/tv/hdmi/connection/aidl/ as reference.
23 lines
614 B
Plaintext
23 lines
614 B
Plaintext
// Copyright (C) 2022 The Android Open Source Project
|
|
// Copyright (C) 2025 KonstaKANG
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
cc_binary {
|
|
name: "android.hardware.tv.hdmi.connection-service.rpi",
|
|
relative_install_path: "hw",
|
|
init_rc: ["android.hardware.tv.hdmi.connection-service.rpi.rc"],
|
|
vintf_fragments: ["android.hardware.tv.hdmi.connection-service.rpi.xml"],
|
|
vendor: true,
|
|
srcs: [
|
|
"HdmiConnection.cpp",
|
|
"main.cpp",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.tv.hdmi.connection-V1-ndk",
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"liblog",
|
|
],
|
|
}
|