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