blob: 264292becdea1fd013df655388d40a0eeae594d9 [file] [log] [blame]
Bob Badourb224b362021-02-12 20:13:01 -08001package {
Aditya Choudharyad2ba1b2024-02-05 15:45:22 +00002 default_team: "trendy_team_input_framework",
Bob Badourb224b362021-02-12 20:13:01 -08003 // 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
Siarhei Vishniakoua0e7f732018-01-17 11:49:04 -080011cc_binary {
Siarhei Vishniakou443e98b2019-02-07 15:42:06 -080012 name: "android.hardware.input.classifier@1.0-service.default",
13 init_rc: ["android.hardware.input.classifier@1.0-service.default.rc"],
Siarhei Vishniakoua0e7f732018-01-17 11:49:04 -080014 relative_install_path: "hw",
15 vendor: true,
16 vintf_fragments: ["manifest_input.classifier.xml"],
17 srcs: [
18 "InputClassifier.cpp",
19 "service.cpp",
20 ],
21 shared_libs: [
22 "android.hardware.input.classifier@1.0",
23 "libhidlbase",
Siarhei Vishniakoua0e7f732018-01-17 11:49:04 -080024 "liblog",
25 "libutils",
26 ],
27 cflags: [
28 "-Wall",
29 "-Werror",
30 "-Wextra",
31 ],
32}