blob: 8ab2ba8b9aec9f77ca4544b8ce53b00c5be1754c [file] [log] [blame]
Bob Badourb224b362021-02-12 20:13:01 -08001package {
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 Vishniakoua0e7f732018-01-17 11:49:04 -080010cc_binary {
Siarhei Vishniakou443e98b2019-02-07 15:42:06 -080011 name: "android.hardware.input.classifier@1.0-service.default",
12 init_rc: ["android.hardware.input.classifier@1.0-service.default.rc"],
Siarhei Vishniakoua0e7f732018-01-17 11:49:04 -080013 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 Vishniakoua0e7f732018-01-17 11:49:04 -080023 "liblog",
24 "libutils",
25 ],
26 cflags: [
27 "-Wall",
28 "-Werror",
29 "-Wextra",
30 ],
31}