Yixiao Luo | aaa5230 | 2022-08-11 18:44:50 -0700 | [diff] [blame] | 1 | package { |
Aditya Choudhary | c5c6c62 | 2024-01-31 11:06:17 +0000 | [diff] [blame^] | 2 | default_team: "trendy_team_tv_os", |
Yixiao Luo | aaa5230 | 2022-08-11 18:44:50 -0700 | [diff] [blame] | 3 | // 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 | |
| 11 | cc_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 Zhao | 6bdbc5e | 2023-01-12 16:51:03 -0800 | [diff] [blame] | 17 | cflags: [ |
| 18 | "-Werror", |
| 19 | "-Wno-unused-parameter", |
| 20 | ], |
Yixiao Luo | aaa5230 | 2022-08-11 18:44:50 -0700 | [diff] [blame] | 21 | srcs: [ |
| 22 | "TvInput.cpp", |
| 23 | "service.cpp", |
| 24 | ], |
| 25 | static_libs: [ |
| 26 | "libaidlcommonsupport", |
| 27 | ], |
| 28 | shared_libs: [ |
| 29 | "libbase", |
| 30 | "liblog", |
David Zhao | 6bdbc5e | 2023-01-12 16:51:03 -0800 | [diff] [blame] | 31 | "libfmq", |
Yixiao Luo | aaa5230 | 2022-08-11 18:44:50 -0700 | [diff] [blame] | 32 | "libutils", |
| 33 | "libcutils", |
| 34 | "libbinder_ndk", |
| 35 | "android.hardware.tv.input-V1-ndk", |
David Zhao | 6bdbc5e | 2023-01-12 16:51:03 -0800 | [diff] [blame] | 36 | "android.hardware.common.fmq-V1-ndk", |
Yixiao Luo | aaa5230 | 2022-08-11 18:44:50 -0700 | [diff] [blame] | 37 | ], |
| 38 | } |