Bob Badour | b224b36 | 2021-02-12 20:13:01 -0800 | [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 | |
Siarhei Vishniakou | a0e7f73 | 2018-01-17 11:49:04 -0800 | [diff] [blame] | 10 | cc_binary { |
Siarhei Vishniakou | 443e98b | 2019-02-07 15:42:06 -0800 | [diff] [blame] | 11 | name: "android.hardware.input.classifier@1.0-service.default", |
| 12 | init_rc: ["android.hardware.input.classifier@1.0-service.default.rc"], |
Siarhei Vishniakou | a0e7f73 | 2018-01-17 11:49:04 -0800 | [diff] [blame] | 13 | relative_install_path: "hw", |
| 14 | vendor: true, |
| 15 | vintf_fragments: ["manifest_input.classifier.xml"], |
| 16 | srcs: [ |
| 17 | "InputClassifier.cpp", |
| 18 | "service.cpp", |
| 19 | ], |
| 20 | shared_libs: [ |
| 21 | "android.hardware.input.classifier@1.0", |
| 22 | "libhidlbase", |
Siarhei Vishniakou | a0e7f73 | 2018-01-17 11:49:04 -0800 | [diff] [blame] | 23 | "liblog", |
| 24 | "libutils", |
| 25 | ], |
| 26 | cflags: [ |
| 27 | "-Wall", |
| 28 | "-Werror", |
| 29 | "-Wextra", |
| 30 | ], |
| 31 | } |