add hdmi cec hal

* Based on AOSP yukawa HDMI-CEC HAL
  https://android.googlesource.com/device/amlogic/yukawa/+/refs/heads/main/hal/hdmicec/
This commit is contained in:
Konsta
2023-07-24 23:07:27 +03:00
parent 6dd65fa73f
commit c0a8378d8b
11 changed files with 675 additions and 0 deletions

17
cec/Android.bp Normal file
View File

@@ -0,0 +1,17 @@
// Copyright (C) 2019 The Android Open-Source Project
// Copyright (C) 2021-2022 KonstaKANG
//
// SPDX-License-Identifier: Apache-2.0
cc_library_shared {
name: "hdmi_cec.rpi",
relative_install_path: "hw",
proprietary: true,
srcs: ["hdmi_cec.c"],
cflags: ["-Werror"],
shared_libs: [
"liblog",
"libcutils",
"libhardware",
],
}