Files
hardware_interfaces/tv/tuner/aidl/default/Android.bp
Kiyoung Kim 4a518d2e1e Reapply "Define vintf_fragments as modules"
Previous commit was reverted as it removed wifi vintf fragment from
devices, which was caused by 'no_full_install' property from
vintf_fragment module. This change relands the change, with removing
no_full_install property from the vintf_fragment module

Bug: 322089980
Test: aosp_cf_x86_64_phone build succeeded
Test: mokey_go32 build contains
/vendor/etc/vintf/manifest/android.hardware.wifi.supplicant.xml file

Change-Id: I523ce570068b180805b65f984a0d6def0612db87
2024-09-04 15:55:29 +09:00

70 lines
1.6 KiB
Plaintext

package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "hardware_interfaces_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["hardware_interfaces_license"],
}
cc_defaults {
name: "tuner_hal_example_defaults",
relative_install_path: "hw",
vendor: true,
compile_multilib: "first",
srcs: [
"Demux.cpp",
"Descrambler.cpp",
"Dvr.cpp",
"Filter.cpp",
"Frontend.cpp",
"Lnb.cpp",
"TimeFilter.cpp",
"Tuner.cpp",
"service.cpp",
"dtv_plugin.cpp",
],
static_libs: [
"libaidlcommonsupport",
],
shared_libs: [
"android.hardware.common.fmq-V1-ndk",
"android.hardware.tv.tuner-V2-ndk",
"libbase",
"libbinder_ndk",
"libcutils",
"libdmabufheap",
"libfmq",
"libion",
"liblog",
"libutils",
],
header_libs: [
"media_plugin_headers",
],
vintf_fragment_modules: [
"tuner-default.xml",
],
}
vintf_fragment {
name: "tuner-default.xml",
src: "tuner-default.xml",
vendor: true,
}
cc_binary {
name: "android.hardware.tv.tuner-service.example",
defaults: ["tuner_hal_example_defaults"],
init_rc: ["tuner-default.rc"],
}
cc_binary {
name: "android.hardware.tv.tuner-service.example-lazy",
defaults: ["tuner_hal_example_defaults"],
init_rc: ["tuner-default-lazy.rc"],
cflags: [
"-DLAZY_HAL",
],
}