blob: ba4af445e6e28ec3a42023bae215672dbd2365bc [file] [log] [blame]
Hongguang4092f2f2021-07-08 18:49:12 -07001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "hardware_interfaces_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10cc_binary {
11 name: "android.hardware.tv.tuner-service.example",
12 relative_install_path: "hw",
13 init_rc: ["tuner-default.rc"],
14 vintf_fragments: ["tuner-default.xml"],
15 vendor: true,
16 compile_multilib: "first",
17 srcs: [
18 "Demux.cpp",
19 "Descrambler.cpp",
20 "Dvr.cpp",
21 "Filter.cpp",
22 "Frontend.cpp",
23 "Lnb.cpp",
24 "TimeFilter.cpp",
25 "Tuner.cpp",
26 "service.cpp",
27 ],
28 static_libs: [
29 "libaidlcommonsupport",
30 ],
31 shared_libs: [
32 "android.hardware.common.fmq-V1-ndk_platform",
33 "android.hardware.tv.tuner-V1-ndk_platform",
34 "libbase",
35 "libbinder_ndk",
36 "libcutils",
37 "libdmabufheap",
38 "libfmq",
39 "libion",
40 "liblog",
41 "libutils",
42 ],
43 header_libs: [
44 "media_plugin_headers",
45 ],
46}