blob: 05af6a94fbbe75a0d52e793065f3bbdcac07b1c3 [file] [log] [blame]
Yixiao Luoaaa52302022-08-11 18:44:50 -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.input-service.example",
12 relative_install_path: "hw",
13 init_rc: ["input-default.rc"],
14 vintf_fragments: ["input-default.xml"],
15 vendor: true,
David Zhao6bdbc5e2023-01-12 16:51:03 -080016 cflags: [
17 "-Werror",
18 "-Wno-unused-parameter",
19 ],
Yixiao Luoaaa52302022-08-11 18:44:50 -070020 srcs: [
21 "TvInput.cpp",
22 "service.cpp",
23 ],
24 static_libs: [
25 "libaidlcommonsupport",
26 ],
27 shared_libs: [
28 "libbase",
29 "liblog",
David Zhao6bdbc5e2023-01-12 16:51:03 -080030 "libfmq",
Yixiao Luoaaa52302022-08-11 18:44:50 -070031 "libutils",
32 "libcutils",
33 "libbinder_ndk",
34 "android.hardware.tv.input-V1-ndk",
David Zhao6bdbc5e2023-01-12 16:51:03 -080035 "android.hardware.common.fmq-V1-ndk",
Yixiao Luoaaa52302022-08-11 18:44:50 -070036 ],
37}