Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 1 | // Copyright (C) 2018 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 | 4bdf380 | 2021-02-12 17:08:17 -0800 | [diff] [blame] | 15 | package { |
Bob Badour | a7548b5 | 2022-01-27 22:04:48 -0800 | [diff] [blame] | 16 | // See: http://go/android-license-faq |
| 17 | default_applicable_licenses: ["Android-Apache-2.0"], |
Bob Badour | 4bdf380 | 2021-02-12 17:08:17 -0800 | [diff] [blame] | 18 | } |
| 19 | |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 20 | min_launcher3_sdk_version = "26" |
| 21 | |
vadimt | 09df083 | 2019-03-07 14:59:30 -0800 | [diff] [blame] | 22 | android_library { |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 23 | name: "launcher-aosp-tapl", |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 24 | libs: [ |
| 25 | "framework-statsd", |
| 26 | ], |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 27 | static_libs: [ |
| 28 | "androidx.annotation_annotation", |
Brett Chabot | d7d692c | 2018-10-23 21:17:58 -0700 | [diff] [blame] | 29 | "androidx.test.runner", |
| 30 | "androidx.test.rules", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 31 | "androidx.test.uiautomator_uiautomator", |
Hyunyoung Song | bb71582 | 2020-08-04 10:45:53 -0700 | [diff] [blame] | 32 | "androidx.preference_preference", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 33 | "SystemUISharedLib", |
Jon Miranda | 27f9559 | 2022-04-06 17:29:09 +0000 | [diff] [blame] | 34 | "SystemUIAnimationLib", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 35 | ], |
| 36 | srcs: [ |
| 37 | "tests/tapl/**/*.java", |
vadimt | 1b383af | 2019-05-08 15:29:37 -0700 | [diff] [blame] | 38 | "src/com/android/launcher3/ResourceUtils.java", |
Sunny Goyal | ab3963d | 2019-05-23 00:50:08 -0700 | [diff] [blame] | 39 | "src/com/android/launcher3/testing/TestProtocol.java", |
Benno Lin | 7738cac | 2021-09-03 20:18:34 +0000 | [diff] [blame] | 40 | "src/com/android/launcher3/testing/*Request.java", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 41 | ], |
Sunny Goyal | 572aca4 | 2021-03-24 15:21:39 -0700 | [diff] [blame] | 42 | resource_dirs: [ ], |
vadimt | 09df083 | 2019-03-07 14:59:30 -0800 | [diff] [blame] | 43 | manifest: "tests/tapl/AndroidManifest.xml", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 44 | platform_apis: true, |
| 45 | } |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 46 | |
| 47 | java_library_static { |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame] | 48 | name: "launcher_log_protos_lite", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 49 | srcs: [ |
| 50 | "protos/*.proto", |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 51 | "protos_overrides/*.proto", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 52 | ], |
| 53 | sdk_version: "current", |
| 54 | proto: { |
| 55 | type: "lite", |
| 56 | local_include_dirs:[ |
| 57 | "protos", |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 58 | "protos_overrides", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 59 | ], |
| 60 | }, |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame] | 61 | static_libs: ["libprotobuf-java-lite"], |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 62 | } |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 63 | |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 64 | java_library_static { |
| 65 | name: "launcher_quickstep_log_protos_lite", |
| 66 | srcs: [ |
| 67 | "quickstep/protos_overrides/*.proto", |
| 68 | ], |
| 69 | sdk_version: "current", |
| 70 | proto: { |
| 71 | type: "lite", |
| 72 | local_include_dirs:[ |
| 73 | "quickstep/protos_overrides", |
| 74 | ], |
| 75 | }, |
| 76 | static_libs: [ |
| 77 | "libprotobuf-java-lite", |
| 78 | "launcher_log_protos_lite" |
| 79 | ], |
| 80 | } |
| 81 | |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 82 | java_library { |
| 83 | name: "LauncherPluginLib", |
| 84 | |
| 85 | static_libs: ["PluginCoreLib"], |
| 86 | |
| 87 | srcs: ["src_plugins/**/*.java"], |
| 88 | |
| 89 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 90 | min_sdk_version: min_launcher3_sdk_version, |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 91 | } |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 92 | |
Edward Cross | e016d58 | 2018-07-31 15:17:57 +0200 | [diff] [blame^] | 93 | java_import { |
| 94 | name: "libGoogleFeed", |
| 95 | jars: [ |
| 96 | "libs/libGoogleFeed.jar", |
| 97 | ], |
| 98 | } |
| 99 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 100 | // Library with all the dependencies for building Launcher3 |
| 101 | android_library { |
| 102 | name: "Launcher3ResLib", |
| 103 | srcs: [ ], |
| 104 | resource_dirs: ["res"], |
| 105 | static_libs: [ |
| 106 | "LauncherPluginLib", |
| 107 | "launcher_quickstep_log_protos_lite", |
| 108 | "androidx-constraintlayout_constraintlayout", |
| 109 | "androidx.recyclerview_recyclerview", |
| 110 | "androidx.dynamicanimation_dynamicanimation", |
| 111 | "androidx.fragment_fragment", |
| 112 | "androidx.preference_preference", |
| 113 | "androidx.slice_slice-view", |
| 114 | "androidx.cardview_cardview", |
Brian Isganitis | 93031bc | 2021-06-09 16:34:45 -0400 | [diff] [blame] | 115 | "com.google.android.material_material", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 116 | "iconloader_base", |
Edward Cross | e016d58 | 2018-07-31 15:17:57 +0200 | [diff] [blame^] | 117 | "libGoogleFeed", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 118 | ], |
| 119 | manifest: "AndroidManifest-common.xml", |
| 120 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 121 | min_sdk_version: min_launcher3_sdk_version, |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 122 | lint: { |
| 123 | baseline_filename: "lint-baseline-res-lib.xml", |
| 124 | }, |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 125 | } |
| 126 | |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 127 | // |
| 128 | // Build rule for Launcher3 dependencies lib. |
| 129 | // |
| 130 | android_library { |
| 131 | name: "Launcher3CommonDepsLib", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 132 | srcs: ["src_build_config/**/*.java"], |
| 133 | static_libs: ["Launcher3ResLib"], |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 134 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 135 | min_sdk_version: min_launcher3_sdk_version, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 136 | manifest: "AndroidManifest-common.xml", |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 137 | lint: { |
| 138 | baseline_filename: "lint-baseline-common-deps-lib.xml", |
| 139 | }, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | // |
| 143 | // Build rule for Launcher3 app. |
| 144 | // |
| 145 | android_app { |
Joey | 0fd9476 | 2018-10-02 17:09:53 +0200 | [diff] [blame] | 146 | name: "Trebuchet", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 147 | |
| 148 | static_libs: [ |
| 149 | "Launcher3CommonDepsLib", |
| 150 | ], |
| 151 | srcs: [ |
| 152 | "src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 153 | "src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 154 | "src_shortcuts_overrides/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 155 | "src_shortcuts_overrides/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 156 | "src_ui_overrides/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 157 | "src_ui_overrides/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 158 | "ext_tests/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 159 | "ext_tests/src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 160 | ], |
| 161 | resource_dirs: [ |
| 162 | "ext_tests/res", |
| 163 | ], |
| 164 | optimize: { |
| 165 | proguard_flags_files: ["proguard.flags"], |
| 166 | // Proguard is disable for testing. Derivarive prjects to keep proguard enabled |
| 167 | enabled: false, |
| 168 | }, |
| 169 | |
| 170 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 171 | min_sdk_version: min_launcher3_sdk_version, |
| 172 | target_sdk_version: "current", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 173 | privileged: true, |
| 174 | system_ext_specific: true, |
| 175 | |
| 176 | overrides: [ |
| 177 | "Home", |
| 178 | "Launcher2", |
| 179 | ], |
| 180 | required: ["privapp_whitelist_com.android.launcher3"], |
| 181 | |
| 182 | jacoco: { |
| 183 | include_filter: ["com.android.launcher3.**"], |
| 184 | }, |
| 185 | additional_manifests: [ |
| 186 | "AndroidManifest-common.xml", |
| 187 | ], |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 188 | lint: { |
| 189 | baseline_filename: "lint-baseline-launcher3.xml", |
| 190 | }, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 191 | } |
| 192 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 193 | // Library with all the dependencies for building quickstep |
| 194 | android_library { |
| 195 | name: "QuickstepResLib", |
| 196 | srcs: [ ], |
| 197 | resource_dirs: [ |
| 198 | "quickstep/res", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 199 | ], |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 200 | libs: [ |
| 201 | "framework-statsd", |
| 202 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 203 | static_libs: [ |
| 204 | "Launcher3ResLib", |
Schneider Victor-tulias | d0865f8 | 2021-11-09 13:19:21 -0800 | [diff] [blame] | 205 | "lottie", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 206 | "SystemUISharedLib", |
| 207 | "SystemUI-statsd", |
Jon Miranda | 27f9559 | 2022-04-06 17:29:09 +0000 | [diff] [blame] | 208 | "SystemUIAnimationLib", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 209 | ], |
| 210 | manifest: "quickstep/AndroidManifest.xml", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 211 | min_sdk_version: "current", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | |
| 215 | // Source code used for test helpers |
| 216 | filegroup { |
| 217 | name: "launcher-src-ext-tests", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 218 | srcs: [ |
| 219 | "ext_tests/src/**/*.java", |
| 220 | "ext_tests/src/**/*.kt", |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 221 | "quickstep/ext_tests/src/**/*.java", |
| 222 | "quickstep/ext_tests/src/**/*.kt", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 223 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | // Common source files used to build launcher |
| 227 | filegroup { |
| 228 | name: "launcher-src-no-build-config", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 229 | srcs: [ |
| 230 | "src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 231 | "src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 232 | "src_shortcuts_overrides/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 233 | "src_shortcuts_overrides/**/*.kt", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 234 | "quickstep/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 235 | "quickstep/src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 236 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 237 | } |
| 238 | |
Shikha Malhotra | e957b60 | 2022-04-11 07:57:18 +0000 | [diff] [blame] | 239 | // Common source files used to build go launcher except go/src files |
Shikha Malhotra | 7884332 | 2022-02-24 13:30:57 +0000 | [diff] [blame] | 240 | filegroup { |
| 241 | name: "launcher-go-src-no-build-config", |
| 242 | srcs: [ |
| 243 | "src/**/*.java", |
| 244 | "src/**/*.kt", |
| 245 | "quickstep/src/**/*.java", |
| 246 | "quickstep/src/**/*.kt", |
Shikha Malhotra | 7884332 | 2022-02-24 13:30:57 +0000 | [diff] [blame] | 247 | "go/quickstep/src/**/*.java", |
| 248 | "go/quickstep/src/**/*.kt", |
| 249 | ], |
| 250 | } |
| 251 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 252 | // Proguard files for Launcher3 |
| 253 | filegroup { |
| 254 | name: "launcher-proguard-rules", |
| 255 | srcs: ["proguard.flags"], |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 256 | } |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 257 | |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 258 | // Library with all the dependencies for building Launcher Go |
| 259 | android_library { |
| 260 | name: "LauncherGoResLib", |
| 261 | srcs: [ |
| 262 | "src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 263 | "src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 264 | "quickstep/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 265 | "quickstep/src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 266 | "go/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 267 | "go/src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 268 | "go/quickstep/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 269 | "go/quickstep/src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 270 | ], |
| 271 | resource_dirs: [ |
| 272 | "go/res", |
| 273 | "go/quickstep/res", |
| 274 | ], |
Ben Murdoch | fabc873 | 2021-12-02 18:22:17 +0000 | [diff] [blame] | 275 | // Note the ordering here is important when it comes to resource |
| 276 | // overriding. We want the most specific resource overrides defined |
| 277 | // in QuickstepResLib to take precendece, so it should be the final |
| 278 | // dependency. See b/205278434 for how this can go wrong. |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 279 | static_libs: [ |
Greg Kaiser | 6f220d9 | 2021-11-05 16:12:47 +0000 | [diff] [blame] | 280 | "Launcher3CommonDepsLib", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 281 | "QuickstepResLib", |
Jon Spivack | 89c21c7 | 2021-08-13 13:18:24 -0700 | [diff] [blame] | 282 | "androidx.room_room-runtime", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 283 | ], |
Jon Spivack | 89c21c7 | 2021-08-13 13:18:24 -0700 | [diff] [blame] | 284 | plugins: ["androidx.room_room-compiler-plugin"], |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 285 | manifest: "quickstep/AndroidManifest-launcher.xml", |
| 286 | additional_manifests: [ |
| 287 | "go/AndroidManifest.xml", |
| 288 | "AndroidManifest-common.xml", |
| 289 | ], |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 290 | min_sdk_version: "current", |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 291 | lint: { |
| 292 | baseline_filename: "lint-baseline-go-res-lib.xml", |
| 293 | }, |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 294 | } |
| 295 | |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 296 | // Build rule for Quickstep library |
| 297 | android_library { |
| 298 | name: "Launcher3QuickStepLib", |
| 299 | srcs: [ |
| 300 | ":launcher-src-no-build-config", |
| 301 | ], |
Thales Lima | c335ad2 | 2021-11-08 15:31:49 +0000 | [diff] [blame] | 302 | resource_dirs: [], |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 303 | libs: [ |
| 304 | "framework-statsd", |
| 305 | ], |
Ben Murdoch | fabc873 | 2021-12-02 18:22:17 +0000 | [diff] [blame] | 306 | // Note the ordering here is important when it comes to resource |
| 307 | // overriding. We want the most specific resource overrides defined |
| 308 | // in QuickstepResLib to take precendece, so it should be the final |
| 309 | // dependency. See b/208647810 for how this can go wrong. |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 310 | static_libs: [ |
| 311 | "SystemUI-statsd", |
| 312 | "SystemUISharedLib", |
Thales Lima | c335ad2 | 2021-11-08 15:31:49 +0000 | [diff] [blame] | 313 | "Launcher3CommonDepsLib", |
Ben Murdoch | fabc873 | 2021-12-02 18:22:17 +0000 | [diff] [blame] | 314 | "QuickstepResLib", |
Jon Miranda | 27f9559 | 2022-04-06 17:29:09 +0000 | [diff] [blame] | 315 | "SystemUIAnimationLib", |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 316 | ], |
| 317 | manifest: "quickstep/AndroidManifest.xml", |
| 318 | platform_apis: true, |
| 319 | min_sdk_version: "current", |
| 320 | lint: { |
| 321 | baseline_filename: "lint-baseline-launcher3.xml", |
| 322 | }, |
| 323 | } |