Files
hardware_interfaces/tv/cec/2.0/default/Android.bp
Henry Fang 2bb37160b2 Update CEC hal to 2.0
cec@2.0 spec was published with HDMI 2.0b in March 2016.
it added a few important message types, and
also require new mechanism to build and maintain device information.
Test: manual
Bug: 122853595

Change-Id: I00819829573dc260b043f5b14a15c29bc2a119b0
2019-01-22 17:45:47 -08:00

43 lines
941 B
Plaintext

cc_library_shared {
name: "android.hardware.tv.cec@2.0-impl",
defaults: ["hidl_defaults"],
vendor: true,
relative_install_path: "hw",
srcs: ["HdmiCec.cpp"],
shared_libs: [
"libhidlbase",
"libhidltransport",
"liblog",
"libbase",
"libutils",
"libhardware",
"android.hardware.tv.cec@2.0",
],
}
cc_binary {
name: "android.hardware.tv.cec@2.0-service",
vintf_fragments: ["android.hardware.tv.cec@2.0-service.xml"],
defaults: ["hidl_defaults"],
relative_install_path: "hw",
vendor: true,
init_rc: ["android.hardware.tv.cec@2.0-service.rc"],
srcs: ["service.cpp"],
shared_libs: [
"liblog",
"libcutils",
"libdl",
"libbase",
"libutils",
"libhardware_legacy",
"libhardware",
"libhidlbase",
"libhidltransport",
"android.hardware.tv.cec@2.0",
],
}