blob: 67015fb820602d8a0bc48767ded659e3f518ece8 [file] [log] [blame]
Yixiao Luoaaa52302022-08-11 18:44:50 -07001package {
Aditya Choudharyc5c6c622024-01-31 11:06:17 +00002 default_team: "trendy_team_tv_os",
Yixiao Luoaaa52302022-08-11 18:44:50 -07003 // See: http://go/android-license-faq
4 // A large-scale-change added 'default_applicable_licenses' to import
5 // all of the 'license_kinds' from "hardware_interfaces_license"
6 // to get the below license kinds:
7 // SPDX-license-identifier-Apache-2.0
8 default_applicable_licenses: ["hardware_interfaces_license"],
9}
10
11cc_binary {
12 name: "android.hardware.tv.input-service.example",
13 relative_install_path: "hw",
14 init_rc: ["input-default.rc"],
15 vintf_fragments: ["input-default.xml"],
16 vendor: true,
David Zhao6bdbc5e2023-01-12 16:51:03 -080017 cflags: [
18 "-Werror",
19 "-Wno-unused-parameter",
20 ],
Yixiao Luoaaa52302022-08-11 18:44:50 -070021 srcs: [
22 "TvInput.cpp",
23 "service.cpp",
24 ],
25 static_libs: [
26 "libaidlcommonsupport",
27 ],
28 shared_libs: [
29 "libbase",
30 "liblog",
David Zhao6bdbc5e2023-01-12 16:51:03 -080031 "libfmq",
Yixiao Luoaaa52302022-08-11 18:44:50 -070032 "libutils",
33 "libcutils",
34 "libbinder_ndk",
35 "android.hardware.tv.input-V1-ndk",
David Zhao6bdbc5e2023-01-12 16:51:03 -080036 "android.hardware.common.fmq-V1-ndk",
Yixiao Luoaaa52302022-08-11 18:44:50 -070037 ],
38}