blob: 18f6dbc1e1fb7286741726c56a8b716bf605d885 [file] [log] [blame]
Colin Cross45a1b9c2017-04-19 16:56:46 -07001// Copyright (C) 2013 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Prabir Pradhan9244aea2020-02-05 20:31:40 -080015// Default flags to be used throughout all libraries in inputflinger.
Bob Badour3306e492021-02-25 15:35:37 -080016package {
17 // See: http://go/android-license-faq
18 // A large-scale-change added 'default_applicable_licenses' to import
19 // all of the 'license_kinds' from "frameworks_native_license"
20 // to get the below license kinds:
21 // SPDX-license-identifier-Apache-2.0
22 default_applicable_licenses: ["frameworks_native_license"],
23}
24
Michael Wright8e9a8562022-02-09 13:44:29 +000025inputflinger_tidy_checks = [
26 "android-*",
27]
28
Siarhei Vishniakou61291d42019-02-11 18:13:20 -080029cc_defaults {
30 name: "inputflinger_defaults",
Siarhei Vishniakou4c155eb2023-06-30 11:47:12 -070031 host_supported: true,
Siarhei Vishniakouf47c339e2021-12-30 11:22:26 -080032 cpp_std: "c++20",
Siarhei Vishniakou61291d42019-02-11 18:13:20 -080033 cflags: [
34 "-Wall",
35 "-Wextra",
36 "-Werror",
37 "-Wno-unused-parameter",
38 "-Wthread-safety",
Siarhei Vishniakoub4d960d2019-10-03 15:38:44 -050039 "-Wshadow",
Siarhei Vishniakou3cab9b62020-08-05 11:45:47 -050040 "-Wshadow-field-in-constructor-modified",
41 "-Wshadow-uncaptured-local",
Siarhei Vishniakouaed7ad02022-08-03 15:04:33 -070042 "-DANDROID_UTILS_REF_BASE_DISABLE_IMPLICIT_CONSTRUCTION",
Siarhei Vishniakou61291d42019-02-11 18:13:20 -080043 ],
Siarhei Vishniakoud549b252020-08-11 11:25:26 -050044 sanitize: {
Siarhei Vishniakou31977182022-09-30 08:51:23 -070045 misc_undefined: [
46 "bounds",
47 ],
Siarhei Vishniakoud549b252020-08-11 11:25:26 -050048 },
Michael Wright8e9a8562022-02-09 13:44:29 +000049 tidy: true,
50 tidy_checks: [
51 "-*", // Disable all checks not explicitly enabled for now
52 ] + inputflinger_tidy_checks,
53 tidy_checks_as_errors: inputflinger_tidy_checks,
Siarhei Vishniakou4c155eb2023-06-30 11:47:12 -070054 target: {
55 host: {
56 sanitize: {
57 address: true,
58 },
59 include_dirs: [
60 "bionic/libc/kernel/android/uapi/",
61 "bionic/libc/kernel/uapi",
62 ],
63 cflags: [
64 "-D__ANDROID_HOST__",
65 ],
66 },
67 },
Siarhei Vishniakou61291d42019-02-11 18:13:20 -080068}
69
Prabir Pradhan9244aea2020-02-05 20:31:40 -080070/////////////////////////////////////////////////
71// libinputflinger
72/////////////////////////////////////////////////
Colin Cross45a1b9c2017-04-19 16:56:46 -070073
Prabir Pradhan9244aea2020-02-05 20:31:40 -080074filegroup {
75 name: "libinputflinger_sources",
Colin Cross45a1b9c2017-04-19 16:56:46 -070076 srcs: [
Siarhei Vishniakou34d6fef2022-02-01 19:03:45 -080077 "InputCommonConverter.cpp",
Prabir Pradhanaddf8e92023-04-06 00:28:48 +000078 "InputDeviceMetricsCollector.cpp",
Siarhei Vishniakou31977182022-09-30 08:51:23 -070079 "InputProcessor.cpp",
Siarhei Vishniakoua3c8e512022-02-10 19:46:34 -080080 "PreferStylusOverTouchBlocker.cpp",
Siarhei Vishniakouba0a8752021-09-14 14:43:25 -070081 "UnwantedInteractionBlocker.cpp",
Colin Cross45a1b9c2017-04-19 16:56:46 -070082 ],
Prabir Pradhan9244aea2020-02-05 20:31:40 -080083}
Colin Cross45a1b9c2017-04-19 16:56:46 -070084
Prabir Pradhan9244aea2020-02-05 20:31:40 -080085cc_defaults {
86 name: "libinputflinger_defaults",
87 srcs: [":libinputflinger_sources"],
Colin Cross45a1b9c2017-04-19 16:56:46 -070088 shared_libs: [
Harry Cuttsd1f18fa2022-12-08 14:28:02 +000089 "android.hardware.input.processor-V1-ndk",
Siarhei Vishniakou61291d42019-02-11 18:13:20 -080090 "libbase",
Colin Cross45a1b9c2017-04-19 16:56:46 -070091 "libbinder",
Siarhei Vishniakou34d6fef2022-02-01 19:03:45 -080092 "libbinder_ndk",
Siarhei Vishniakouba0a8752021-09-14 14:43:25 -070093 "libchrome",
Gang Wang342c9272020-01-13 13:15:04 -050094 "libcrypto",
Colin Cross45a1b9c2017-04-19 16:56:46 -070095 "libcutils",
Siarhei Vishniakou473174e2017-12-27 16:44:42 -080096 "libhidlbase",
Prabir Pradhan89f71192023-06-15 22:14:15 +000097 "libinput",
Siarhei Vishniakou99b9d382021-04-01 08:03:41 +000098 "libkll",
Colin Cross45a1b9c2017-04-19 16:56:46 -070099 "liblog",
Siarhei Vishniakou99b9d382021-04-01 08:03:41 +0000100 "libprotobuf-cpp-lite",
Siarhei Vishniakoude4bf152019-08-16 11:12:52 -0500101 "libstatslog",
Colin Cross45a1b9c2017-04-19 16:56:46 -0700102 "libutils",
Siarhei Vishniakoua04181f2021-03-26 05:56:49 +0000103 "server_configurable_flags",
Colin Cross45a1b9c2017-04-19 16:56:46 -0700104 ],
chaviw09c8d2d2020-08-24 15:48:26 -0700105 static_libs: [
106 "libattestation",
Siarhei Vishniakouba0a8752021-09-14 14:43:25 -0700107 "libpalmrejection",
Siarhei Vishniakou862ae212022-09-28 15:17:28 -0700108 "libui-types",
chaviw09c8d2d2020-08-24 15:48:26 -0700109 ],
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700110 target: {
111 android: {
112 shared_libs: [
113 "libgui",
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700114 "libstatspull",
115 "libstatssocket",
116 ],
117 },
118 host: {
119 static_libs: [
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700120 "libstatspull",
121 "libstatssocket",
122 ],
123 },
124 },
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800125}
Colin Cross45a1b9c2017-04-19 16:56:46 -0700126
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800127cc_library_shared {
128 name: "libinputflinger",
Siarhei Vishniakoucac84272023-06-28 14:43:25 -0700129 host_supported: true,
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800130 defaults: [
131 "inputflinger_defaults",
132 "libinputflinger_defaults",
Garfield Tane84e6f92019-08-29 17:28:41 -0700133 ],
Siarhei Vishniakou45b703e2022-11-18 15:33:27 -0800134 srcs: [
135 "InputManager.cpp",
136 // other sources are added via "defaults"
137 ],
Colin Cross45a1b9c2017-04-19 16:56:46 -0700138 cflags: [
Siarhei Vishniakou473174e2017-12-27 16:44:42 -0800139 // TODO(b/23084678): Move inputflinger to its own process and mark it hidden
Colin Cross45a1b9c2017-04-19 16:56:46 -0700140 //-fvisibility=hidden
141 ],
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800142 shared_libs: [
143 // This should consist only of dependencies from inputflinger. Other dependencies should be
144 // in cc_defaults so that they are included in the tests.
145 "libinputflinger_base",
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800146 "libinputreader",
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700147 "libinputreporter",
Prabir Pradhanaddf8e92023-04-06 00:28:48 +0000148 "libPlatformProperties",
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800149 ],
150 static_libs: [
151 "libinputdispatcher",
152 ],
153 export_static_lib_headers: [
154 "libinputdispatcher",
155 ],
Prabir Pradhan29c95332018-11-14 20:14:11 -0800156 export_include_dirs: [
157 ".",
158 "include",
159 ],
Prabir Pradhan29c95332018-11-14 20:14:11 -0800160}
161
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800162/////////////////////////////////////////////////
163// libinputflinger_base
164/////////////////////////////////////////////////
165
Prabir Pradhan29c95332018-11-14 20:14:11 -0800166cc_library_headers {
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800167 name: "libinputflinger_headers",
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700168 host_supported: true,
Siarhei Vishniakou61291d42019-02-11 18:13:20 -0800169 export_include_dirs: ["include"],
Prabir Pradhan29c95332018-11-14 20:14:11 -0800170}
171
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800172filegroup {
173 name: "libinputflinger_base_sources",
Prabir Pradhan29c95332018-11-14 20:14:11 -0800174 srcs: [
175 "InputListener.cpp",
176 "InputReaderBase.cpp",
Prabir Pradhan5a57cff2019-10-31 18:40:33 -0700177 "InputThread.cpp",
Siarhei Vishniakou78513032022-09-15 18:42:05 -0700178 "NotifyArgs.cpp",
Prabir Pradhan8b89c2f2021-07-29 16:30:14 +0000179 "VibrationElement.cpp",
Prabir Pradhan29c95332018-11-14 20:14:11 -0800180 ],
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800181}
Prabir Pradhan29c95332018-11-14 20:14:11 -0800182
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800183cc_defaults {
184 name: "libinputflinger_base_defaults",
185 srcs: [":libinputflinger_base_sources"],
Prabir Pradhan29c95332018-11-14 20:14:11 -0800186 shared_libs: [
187 "libbase",
Zim23457d02022-08-17 12:57:41 +0100188 "libbinder",
Garfield Tanff1f1bb2020-01-28 13:24:04 -0800189 "libcutils",
Prabir Pradhan89f71192023-06-15 22:14:15 +0000190 "libinput",
Prabir Pradhan29c95332018-11-14 20:14:11 -0800191 "liblog",
192 "libutils",
193 ],
Prabir Pradhan29c95332018-11-14 20:14:11 -0800194 header_libs: [
195 "libinputflinger_headers",
196 ],
Colin Cross45a1b9c2017-04-19 16:56:46 -0700197}
198
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800199cc_library_shared {
200 name: "libinputflinger_base",
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700201 host_supported: true,
Prabir Pradhan9244aea2020-02-05 20:31:40 -0800202 defaults: [
203 "inputflinger_defaults",
204 "libinputflinger_base_defaults",
205 ],
206 export_header_lib_headers: [
207 "libinputflinger_headers",
208 ],
209}
Siarhei Vishniakouce555312022-07-21 17:52:02 -0700210
211// This target will build everything 'input-related'. This could be useful for
212// large refactorings of the input code. This is similar to 'm checkbuild', but
213// just for input code.
214// Use 'm checkinput' to build, and then (optionally) use 'm installclean' to
215// remove any of the installed artifacts that you may not want on your actual
216// build.
217phony {
218 name: "checkinput",
219 required: [
220 // native targets
Siarhei Vishniakou63b63612023-04-12 11:00:23 -0700221 "libgui_test",
Siarhei Vishniakouce555312022-07-21 17:52:02 -0700222 "libinput",
Siarhei Vishniakou4c155eb2023-06-30 11:47:12 -0700223 "libinputreader_static",
Siarhei Vishniakouce555312022-07-21 17:52:02 -0700224 "libinputflinger",
225 "inputflinger_tests",
226 "inputflinger_benchmarks",
227 "libinput_tests",
228 "libpalmrejection_test",
229 "libandroid_runtime",
230 "libinputservice_test",
231 "Bug-115739809",
232 "StructLayout_test",
Siarhei Vishniakou2a916c42023-04-17 10:37:05 -0700233 // currently unused, but still must build correctly
234 "inputflinger",
235 "libinputflingerhost",
Siarhei Vishniakou007713d2022-09-16 14:40:11 -0700236
Siarhei Vishniakou5c02a712023-05-15 15:45:02 -0700237 // rust targets
238 "libinput_rust_test",
239
Siarhei Vishniakou007713d2022-09-16 14:40:11 -0700240 // native fuzzers
Siarhei Vishniakou400294a2022-08-03 17:58:57 -0700241 "inputflinger_latencytracker_fuzzer",
Siarhei Vishniakou007713d2022-09-16 14:40:11 -0700242 "inputflinger_cursor_input_fuzzer",
243 "inputflinger_keyboard_input_fuzzer",
244 "inputflinger_multitouch_input_fuzzer",
245 "inputflinger_switch_input_fuzzer",
Harry Cuttsccb75e82023-06-23 14:08:06 +0000246 "inputflinger_touchpad_input_fuzzer",
Siarhei Vishniakou007713d2022-09-16 14:40:11 -0700247 "inputflinger_input_reader_fuzzer",
248 "inputflinger_blocking_queue_fuzzer",
249 "inputflinger_input_classifier_fuzzer",
Siarhei Vishniakouce555312022-07-21 17:52:02 -0700250
251 // Java/Kotlin targets
Nataniel Borges45f243d2023-07-25 14:50:20 +0000252 "CtsWindowManagerDeviceWindow",
Siarhei Vishniakouce555312022-07-21 17:52:02 -0700253 "InputTests",
254 "CtsHardwareTestCases",
255 "CtsInputTestCases",
256 "CtsViewTestCases",
257 "CtsWidgetTestCases",
258 "FrameworksCoreTests",
259 "FrameworksServicesTests",
260 "CtsSecurityTestCases",
261 "CtsSecurityBulletinHostTestCases",
262 ],
263}