mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Automatic mk -> bp conversion for all modules here which can be converted and built automatically. Test: Soong resolves all dependencies Bug: 37512442 Change-Id: Ib789212cb88d55731397c600d132e7c672c0d8be
42 lines
909 B
Plaintext
42 lines
909 B
Plaintext
cc_library_shared {
|
|
name: "android.hardware.tv.input@1.0-impl",
|
|
vendor: true,
|
|
relative_install_path: "hw",
|
|
srcs: ["TvInput.cpp"],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"liblog",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libutils",
|
|
"android.hardware.audio.common@2.0",
|
|
"android.hardware.tv.input@1.0",
|
|
],
|
|
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.tv.input@1.0-service",
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
init_rc: ["android.hardware.tv.input@1.0-service.rc"],
|
|
srcs: ["service.cpp"],
|
|
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libdl",
|
|
"libbase",
|
|
"libutils",
|
|
"libhardware_legacy",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"android.hardware.audio.common@2.0",
|
|
"android.hardware.tv.input@1.0",
|
|
],
|
|
|
|
}
|