Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 1 | // Copyright (C) 2019 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 | |
Bob Badour | 3306e49 | 2021-02-25 15:35:37 -0800 | [diff] [blame] | 15 | package { |
| 16 | // See: http://go/android-license-faq |
| 17 | // A large-scale-change added 'default_applicable_licenses' to import |
| 18 | // all of the 'license_kinds' from "frameworks_native_license" |
| 19 | // to get the below license kinds: |
| 20 | // SPDX-license-identifier-Apache-2.0 |
| 21 | default_applicable_licenses: ["frameworks_native_license"], |
| 22 | } |
| 23 | |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 24 | cc_library_headers { |
| 25 | name: "libinputreader_headers", |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 26 | host_supported: true, |
Prabir Pradhan | 2770d24 | 2019-09-02 18:07:11 -0700 | [diff] [blame] | 27 | export_include_dirs: [ |
Chris Ye | e2b1e5c | 2021-03-10 22:45:12 -0800 | [diff] [blame] | 28 | "controller", |
Prabir Pradhan | 2770d24 | 2019-09-02 18:07:11 -0700 | [diff] [blame] | 29 | "include", |
| 30 | "mapper", |
| 31 | "mapper/accumulator", |
Harry Cutts | 47db1c7 | 2022-12-13 19:20:47 +0000 | [diff] [blame] | 32 | "mapper/gestures", |
Prabir Pradhan | 2770d24 | 2019-09-02 18:07:11 -0700 | [diff] [blame] | 33 | ], |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 34 | } |
| 35 | |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 36 | filegroup { |
| 37 | name: "libinputreader_sources", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 38 | srcs: [ |
| 39 | "EventHub.cpp", |
Prabir Pradhan | baa5c82 | 2019-08-30 15:27:05 -0700 | [diff] [blame] | 40 | "InputDevice.cpp", |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 41 | "InputReader.cpp", |
| 42 | "TouchVideoDevice.cpp", |
Chris Ye | 1dd2e5c | 2021-04-04 23:12:41 -0700 | [diff] [blame] | 43 | "controller/PeripheralController.cpp", |
Prabir Pradhan | 2770d24 | 2019-09-02 18:07:11 -0700 | [diff] [blame] | 44 | "mapper/CursorInputMapper.cpp", |
| 45 | "mapper/ExternalStylusInputMapper.cpp", |
| 46 | "mapper/InputMapper.cpp", |
| 47 | "mapper/JoystickInputMapper.cpp", |
| 48 | "mapper/KeyboardInputMapper.cpp", |
| 49 | "mapper/MultiTouchInputMapper.cpp", |
| 50 | "mapper/RotaryEncoderInputMapper.cpp", |
Chris Ye | f59a2f4 | 2020-10-16 12:55:26 -0700 | [diff] [blame] | 51 | "mapper/SensorInputMapper.cpp", |
Prabir Pradhan | 2770d24 | 2019-09-02 18:07:11 -0700 | [diff] [blame] | 52 | "mapper/SingleTouchInputMapper.cpp", |
| 53 | "mapper/SwitchInputMapper.cpp", |
Harry Cutts | b1a0084 | 2022-12-06 16:20:29 +0000 | [diff] [blame] | 54 | "mapper/TouchCursorInputMapperCommon.cpp", |
Prabir Pradhan | 2770d24 | 2019-09-02 18:07:11 -0700 | [diff] [blame] | 55 | "mapper/TouchInputMapper.cpp", |
Harry Cutts | 79cc9fa | 2022-10-28 15:32:39 +0000 | [diff] [blame] | 56 | "mapper/TouchpadInputMapper.cpp", |
Prabir Pradhan | 2770d24 | 2019-09-02 18:07:11 -0700 | [diff] [blame] | 57 | "mapper/VibratorInputMapper.cpp", |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 58 | "mapper/accumulator/CursorButtonAccumulator.cpp", |
| 59 | "mapper/accumulator/CursorScrollAccumulator.cpp", |
Prabir Pradhan | 84395e6 | 2022-10-26 19:52:00 +0000 | [diff] [blame] | 60 | "mapper/accumulator/HidUsageAccumulator.cpp", |
Harry Cutts | 2d77f55 | 2022-11-07 12:10:56 +0000 | [diff] [blame] | 61 | "mapper/accumulator/MultiTouchMotionAccumulator.cpp", |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 62 | "mapper/accumulator/SingleTouchMotionAccumulator.cpp", |
| 63 | "mapper/accumulator/TouchButtonAccumulator.cpp", |
Ben Murdoch | 5024482 | 2022-10-31 10:41:01 +0000 | [diff] [blame] | 64 | "mapper/gestures/GesturesLogging.cpp", |
Harry Cutts | 47db1c7 | 2022-12-13 19:20:47 +0000 | [diff] [blame] | 65 | "mapper/gestures/HardwareStateConverter.cpp", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 66 | ], |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 67 | } |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 68 | |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 69 | cc_defaults { |
| 70 | name: "libinputreader_defaults", |
| 71 | srcs: [":libinputreader_sources"], |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 72 | shared_libs: [ |
| 73 | "libbase", |
Siarhei Vishniakou | 7a522bf | 2019-09-24 12:46:29 +0100 | [diff] [blame] | 74 | "libcap", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 75 | "libcrypto", |
| 76 | "libcutils", |
Ben Murdoch | 5024482 | 2022-10-31 10:41:01 +0000 | [diff] [blame] | 77 | "libjsoncpp", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 78 | "liblog", |
Siarhei Vishniakou | 9faa446 | 2022-12-06 11:45:04 -0800 | [diff] [blame] | 79 | "libPlatformProperties", |
Chris Ye | d3fef46 | 2021-03-07 17:10:08 -0800 | [diff] [blame] | 80 | "libstatslog", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 81 | "libutils", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 82 | ], |
Kim Low | 03ea035 | 2020-11-06 12:45:07 -0800 | [diff] [blame] | 83 | static_libs: [ |
| 84 | "libc++fs", |
Ben Murdoch | 5024482 | 2022-10-31 10:41:01 +0000 | [diff] [blame] | 85 | "libchrome-gestures", |
Siarhei Vishniakou | 862ae21 | 2022-09-28 15:17:28 -0700 | [diff] [blame] | 86 | "libui-types", |
Kim Low | 03ea035 | 2020-11-06 12:45:07 -0800 | [diff] [blame] | 87 | ], |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 88 | header_libs: [ |
Kim Low | 03ea035 | 2020-11-06 12:45:07 -0800 | [diff] [blame] | 89 | "libbatteryservice_headers", |
Prabir Pradhan | c5e1ca4 | 2022-11-28 22:01:56 +0000 | [diff] [blame] | 90 | "libchrome-gestures_headers", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 91 | "libinputreader_headers", |
| 92 | ], |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 93 | target: { |
| 94 | android: { |
| 95 | shared_libs: [ |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 96 | "libinput", |
| 97 | ], |
| 98 | }, |
| 99 | host: { |
| 100 | static_libs: [ |
| 101 | "libinput", |
Colin Cross | 5b79930 | 2022-10-18 21:52:41 -0700 | [diff] [blame] | 102 | "libbinder", |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 103 | ], |
| 104 | }, |
| 105 | }, |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 106 | } |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 107 | |
Prabir Pradhan | c5e1ca4 | 2022-11-28 22:01:56 +0000 | [diff] [blame] | 108 | cc_library_static { |
| 109 | name: "libinputreader_static", |
| 110 | defaults: [ |
| 111 | "inputflinger_defaults", |
| 112 | "libinputreader_defaults", |
| 113 | ], |
| 114 | shared_libs: [ |
| 115 | "libinputflinger_base", |
| 116 | ], |
| 117 | export_header_lib_headers: [ |
| 118 | "libbatteryservice_headers", |
| 119 | "libchrome-gestures_headers", |
| 120 | "libinputreader_headers", |
| 121 | ], |
Harry Cutts | e23e22d | 2022-12-06 17:00:57 +0000 | [diff] [blame] | 122 | whole_static_libs: [ |
| 123 | "libchrome-gestures", |
| 124 | ], |
Prabir Pradhan | c5e1ca4 | 2022-11-28 22:01:56 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 127 | cc_library_shared { |
| 128 | name: "libinputreader", |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 129 | host_supported: true, |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 130 | defaults: [ |
| 131 | "inputflinger_defaults", |
Prabir Pradhan | 8b89c2f | 2021-07-29 16:30:14 +0000 | [diff] [blame] | 132 | "libinputreader_defaults", |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 133 | ], |
| 134 | srcs: [ |
| 135 | "InputReaderFactory.cpp", |
| 136 | ], |
| 137 | shared_libs: [ |
| 138 | // This should consist only of dependencies from inputflinger. Other dependencies should be |
| 139 | // in cc_defaults so that they are included in the tests. |
| 140 | "libinputflinger_base", |
Harry Cutts | 1f48a44 | 2022-11-15 17:38:36 +0000 | [diff] [blame] | 141 | "libjsoncpp", |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 142 | ], |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 143 | export_header_lib_headers: [ |
Prabir Pradhan | 9244aea | 2020-02-05 20:31:40 -0800 | [diff] [blame] | 144 | "libinputreader_headers", |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 145 | ], |
Siarhei Vishniakou | 3197718 | 2022-09-30 08:51:23 -0700 | [diff] [blame] | 146 | target: { |
| 147 | host: { |
| 148 | include_dirs: [ |
| 149 | "bionic/libc/kernel/android/uapi/", |
| 150 | "bionic/libc/kernel/uapi", |
| 151 | ], |
| 152 | }, |
| 153 | }, |
Chris Ye | 8594e19 | 2020-07-14 10:34:06 -0700 | [diff] [blame] | 154 | static_libs: [ |
Prabir Pradhan | 8b89c2f | 2021-07-29 16:30:14 +0000 | [diff] [blame] | 155 | "libc++fs", |
Harry Cutts | 1f48a44 | 2022-11-15 17:38:36 +0000 | [diff] [blame] | 156 | "libchrome-gestures", |
Chris Ye | 8594e19 | 2020-07-14 10:34:06 -0700 | [diff] [blame] | 157 | ], |
Prabir Pradhan | da7c00c | 2019-08-29 14:12:42 -0700 | [diff] [blame] | 158 | } |