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