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 { |
| 16 | default_applicable_licenses: ["packages_apps_Launcher3_license"], |
| 17 | } |
| 18 | |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 19 | min_launcher3_sdk_version = "26" |
| 20 | |
Bob Badour | 4bdf380 | 2021-02-12 17:08:17 -0800 | [diff] [blame] | 21 | // Added automatically by a large-scale-change |
| 22 | // See: http://go/android-license-faq |
| 23 | license { |
| 24 | name: "packages_apps_Launcher3_license", |
| 25 | visibility: [":__subpackages__"], |
| 26 | license_kinds: [ |
| 27 | "SPDX-license-identifier-Apache-2.0", |
| 28 | ], |
| 29 | license_text: [ |
| 30 | "NOTICE", |
| 31 | ], |
| 32 | } |
| 33 | |
vadimt | 09df083 | 2019-03-07 14:59:30 -0800 | [diff] [blame] | 34 | android_library { |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 35 | name: "launcher-aosp-tapl", |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 36 | libs: [ |
| 37 | "framework-statsd", |
| 38 | ], |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 39 | static_libs: [ |
| 40 | "androidx.annotation_annotation", |
Brett Chabot | d7d692c | 2018-10-23 21:17:58 -0700 | [diff] [blame] | 41 | "androidx.test.runner", |
| 42 | "androidx.test.rules", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 43 | "androidx.test.uiautomator_uiautomator", |
Hyunyoung Song | bb71582 | 2020-08-04 10:45:53 -0700 | [diff] [blame] | 44 | "androidx.preference_preference", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 45 | "SystemUISharedLib", |
| 46 | ], |
| 47 | srcs: [ |
| 48 | "tests/tapl/**/*.java", |
vadimt | 1b383af | 2019-05-08 15:29:37 -0700 | [diff] [blame] | 49 | "src/com/android/launcher3/ResourceUtils.java", |
Sunny Goyal | ab3963d | 2019-05-23 00:50:08 -0700 | [diff] [blame] | 50 | "src/com/android/launcher3/testing/TestProtocol.java", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 51 | ], |
Sunny Goyal | 572aca4 | 2021-03-24 15:21:39 -0700 | [diff] [blame] | 52 | resource_dirs: [ ], |
vadimt | 09df083 | 2019-03-07 14:59:30 -0800 | [diff] [blame] | 53 | manifest: "tests/tapl/AndroidManifest.xml", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 54 | platform_apis: true, |
| 55 | } |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 56 | |
| 57 | java_library_static { |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame] | 58 | name: "launcher_log_protos_lite", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 59 | srcs: [ |
| 60 | "protos/*.proto", |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 61 | "protos_overrides/*.proto", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 62 | ], |
| 63 | sdk_version: "current", |
| 64 | proto: { |
| 65 | type: "lite", |
| 66 | local_include_dirs:[ |
| 67 | "protos", |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 68 | "protos_overrides", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 69 | ], |
| 70 | }, |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame] | 71 | static_libs: ["libprotobuf-java-lite"], |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 72 | } |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 73 | |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 74 | java_library_static { |
| 75 | name: "launcher_quickstep_log_protos_lite", |
| 76 | srcs: [ |
| 77 | "quickstep/protos_overrides/*.proto", |
| 78 | ], |
| 79 | sdk_version: "current", |
| 80 | proto: { |
| 81 | type: "lite", |
| 82 | local_include_dirs:[ |
| 83 | "quickstep/protos_overrides", |
| 84 | ], |
| 85 | }, |
| 86 | static_libs: [ |
| 87 | "libprotobuf-java-lite", |
| 88 | "launcher_log_protos_lite" |
| 89 | ], |
| 90 | } |
| 91 | |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 92 | java_library { |
| 93 | name: "LauncherPluginLib", |
| 94 | |
| 95 | static_libs: ["PluginCoreLib"], |
| 96 | |
| 97 | srcs: ["src_plugins/**/*.java"], |
| 98 | |
| 99 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 100 | min_sdk_version: min_launcher3_sdk_version, |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 101 | } |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 102 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 103 | // Library with all the dependencies for building Launcher3 |
| 104 | android_library { |
| 105 | name: "Launcher3ResLib", |
| 106 | srcs: [ ], |
| 107 | resource_dirs: ["res"], |
| 108 | static_libs: [ |
| 109 | "LauncherPluginLib", |
| 110 | "launcher_quickstep_log_protos_lite", |
| 111 | "androidx-constraintlayout_constraintlayout", |
| 112 | "androidx.recyclerview_recyclerview", |
| 113 | "androidx.dynamicanimation_dynamicanimation", |
| 114 | "androidx.fragment_fragment", |
| 115 | "androidx.preference_preference", |
| 116 | "androidx.slice_slice-view", |
| 117 | "androidx.cardview_cardview", |
Brian Isganitis | 93031bc | 2021-06-09 16:34:45 -0400 | [diff] [blame] | 118 | "com.google.android.material_material", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 119 | "iconloader_base", |
| 120 | ], |
| 121 | manifest: "AndroidManifest-common.xml", |
| 122 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 123 | min_sdk_version: min_launcher3_sdk_version, |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 124 | lint: { |
| 125 | baseline_filename: "lint-baseline-res-lib.xml", |
| 126 | }, |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 127 | } |
| 128 | |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 129 | // |
| 130 | // Build rule for Launcher3 dependencies lib. |
| 131 | // |
| 132 | android_library { |
| 133 | name: "Launcher3CommonDepsLib", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 134 | srcs: ["src_build_config/**/*.java"], |
| 135 | static_libs: ["Launcher3ResLib"], |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 136 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 137 | min_sdk_version: min_launcher3_sdk_version, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 138 | manifest: "AndroidManifest-common.xml", |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 139 | lint: { |
| 140 | baseline_filename: "lint-baseline-common-deps-lib.xml", |
| 141 | }, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | // |
| 145 | // Build rule for Launcher3 app. |
| 146 | // |
| 147 | android_app { |
| 148 | name: "Launcher3", |
| 149 | |
| 150 | static_libs: [ |
| 151 | "Launcher3CommonDepsLib", |
| 152 | ], |
| 153 | srcs: [ |
| 154 | "src/**/*.java", |
| 155 | "src_shortcuts_overrides/**/*.java", |
| 156 | "src_ui_overrides/**/*.java", |
| 157 | "ext_tests/src/**/*.java", |
| 158 | ], |
| 159 | resource_dirs: [ |
| 160 | "ext_tests/res", |
| 161 | ], |
| 162 | optimize: { |
| 163 | proguard_flags_files: ["proguard.flags"], |
| 164 | // Proguard is disable for testing. Derivarive prjects to keep proguard enabled |
| 165 | enabled: false, |
| 166 | }, |
| 167 | |
| 168 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 169 | min_sdk_version: min_launcher3_sdk_version, |
| 170 | target_sdk_version: "current", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 171 | privileged: true, |
| 172 | system_ext_specific: true, |
| 173 | |
| 174 | overrides: [ |
| 175 | "Home", |
| 176 | "Launcher2", |
| 177 | ], |
| 178 | required: ["privapp_whitelist_com.android.launcher3"], |
| 179 | |
| 180 | jacoco: { |
| 181 | include_filter: ["com.android.launcher3.**"], |
| 182 | }, |
| 183 | additional_manifests: [ |
| 184 | "AndroidManifest-common.xml", |
| 185 | ], |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 186 | lint: { |
| 187 | baseline_filename: "lint-baseline-launcher3.xml", |
| 188 | }, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 189 | } |
| 190 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 191 | // Library with all the dependencies for building quickstep |
| 192 | android_library { |
| 193 | name: "QuickstepResLib", |
| 194 | srcs: [ ], |
| 195 | resource_dirs: [ |
| 196 | "quickstep/res", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 197 | ], |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 198 | libs: [ |
| 199 | "framework-statsd", |
| 200 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 201 | static_libs: [ |
| 202 | "Launcher3ResLib", |
| 203 | "SystemUISharedLib", |
| 204 | "SystemUI-statsd", |
| 205 | ], |
| 206 | manifest: "quickstep/AndroidManifest.xml", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 207 | min_sdk_version: "current", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | |
| 211 | // Source code used for test helpers |
| 212 | filegroup { |
| 213 | name: "launcher-src-ext-tests", |
| 214 | srcs: ["ext_tests/src/**/*.java"], |
| 215 | } |
| 216 | |
| 217 | // Common source files used to build launcher |
| 218 | filegroup { |
| 219 | name: "launcher-src-no-build-config", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 220 | srcs: [ |
| 221 | "src/**/*.java", |
| 222 | "src_shortcuts_overrides/**/*.java", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 223 | "quickstep/src/**/*.java", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 224 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | // Proguard files for Launcher3 |
| 228 | filegroup { |
| 229 | name: "launcher-proguard-rules", |
| 230 | srcs: ["proguard.flags"], |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 231 | } |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 232 | |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 233 | // Library with all the dependencies for building Launcher Go |
| 234 | android_library { |
| 235 | name: "LauncherGoResLib", |
| 236 | srcs: [ |
| 237 | "src/**/*.java", |
| 238 | "quickstep/src/**/*.java", |
| 239 | "go/src/**/*.java", |
| 240 | "go/quickstep/src/**/*.java", |
| 241 | ], |
| 242 | resource_dirs: [ |
| 243 | "go/res", |
| 244 | "go/quickstep/res", |
| 245 | ], |
| 246 | static_libs: [ |
| 247 | "Launcher3CommonDepsLib", |
| 248 | "QuickstepResLib", |
| 249 | ], |
| 250 | manifest: "quickstep/AndroidManifest-launcher.xml", |
| 251 | additional_manifests: [ |
| 252 | "go/AndroidManifest.xml", |
| 253 | "AndroidManifest-common.xml", |
| 254 | ], |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 255 | min_sdk_version: "current", |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 256 | lint: { |
| 257 | baseline_filename: "lint-baseline-go-res-lib.xml", |
| 258 | }, |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 261 | // Build rule for Quickstep library |
| 262 | android_library { |
| 263 | name: "Launcher3QuickStepLib", |
| 264 | srcs: [ |
| 265 | ":launcher-src-no-build-config", |
| 266 | ], |
| 267 | resource_dirs: [ |
| 268 | "quickstep/res", |
| 269 | ], |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 270 | libs: [ |
| 271 | "framework-statsd", |
| 272 | ], |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 273 | static_libs: [ |
| 274 | "SystemUI-statsd", |
| 275 | "SystemUISharedLib", |
| 276 | "Launcher3CommonDepsLib" |
| 277 | ], |
| 278 | manifest: "quickstep/AndroidManifest.xml", |
| 279 | platform_apis: true, |
| 280 | min_sdk_version: "current", |
| 281 | lint: { |
| 282 | baseline_filename: "lint-baseline-launcher3.xml", |
| 283 | }, |
| 284 | } |