Files
rk35xx-android14/hardware/rockchip/hdmicec/Android.bp
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

82 lines
1.5 KiB
Plaintext

bootstrap_go_package {
name: "soong-init",
pkgPath: "android/soong/init",
deps: [
"blueprint",
"blueprint-pathtools",
"soong",
"soong-android",
"soong-cc",
"soong-genrule",
],
srcs: [
"Android.go",
],
pluginFor: ["soong_build"],
}
hdmicec{
name: "hdmi_cec_type"
}
cc_defaults {
name: "hdmi_cec_defaults",
cppflags: [
"-Wno-error",
"-fpermissive",
"-Wno-unused-parameter",
],
}
cc_library_shared {
name: "hdmi_cec.rk30board",
defaults: [
"hdmi_cec_defaults",
],
vendor: true,
relative_install_path: "hw",
header_libs: [
"libhardware_headers",
"libsystem_headers",
],
shared_libs: [
"libbase",
"libcutils",
"liblog",
"libsync",
"libutils",
"libhardware_legacy",
],
srcs: [
"hdmi_cec.cpp",
"hdmicec_event.cpp",
],
}
cc_library_shared {
name: "hdmi_connection.rk30board",
defaults: [
"hdmi_cec_defaults",
"hdmi_cec_type",
],
vendor: true,
relative_install_path: "hw",
header_libs: [
"libhardware_headers",
"libsystem_headers",
],
shared_libs: [
"libbase",
"libcutils",
"liblog",
"libsync",
"libutils",
"libhardware_legacy",
],
srcs: [
"hdmi_connection.cpp",
"hdmi_connection_event.cpp",
],
}