blob: c8d91860109b4e458533a0923da0b69356848f57 [file] [log] [blame]
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -07001// 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 Badour4bdf3802021-02-12 17:08:17 -080015package {
16 default_applicable_licenses: ["packages_apps_Launcher3_license"],
17}
18
Sunny Goyal1fb271f2021-05-20 10:43:23 -070019min_launcher3_sdk_version = "26"
20
Bob Badour4bdf3802021-02-12 17:08:17 -080021// Added automatically by a large-scale-change
22// See: http://go/android-license-faq
23license {
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
vadimt09df0832019-03-07 14:59:30 -080034android_library {
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070035 name: "launcher-aosp-tapl",
Thiru Ramasamyd495e8c2021-08-26 10:37:17 -070036 libs: [
37 "framework-statsd",
38 ],
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070039 static_libs: [
40 "androidx.annotation_annotation",
Brett Chabotd7d692c2018-10-23 21:17:58 -070041 "androidx.test.runner",
42 "androidx.test.rules",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070043 "androidx.test.uiautomator_uiautomator",
Hyunyoung Songbb715822020-08-04 10:45:53 -070044 "androidx.preference_preference",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070045 "SystemUISharedLib",
46 ],
47 srcs: [
48 "tests/tapl/**/*.java",
vadimt1b383af2019-05-08 15:29:37 -070049 "src/com/android/launcher3/ResourceUtils.java",
Sunny Goyalab3963d2019-05-23 00:50:08 -070050 "src/com/android/launcher3/testing/TestProtocol.java",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070051 ],
Sunny Goyal572aca42021-03-24 15:21:39 -070052 resource_dirs: [ ],
vadimt09df0832019-03-07 14:59:30 -080053 manifest: "tests/tapl/AndroidManifest.xml",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070054 platform_apis: true,
55}
thiruram5e1ecf62019-11-13 17:49:35 -080056
57java_library_static {
thiruramc1c2bfa2020-02-04 18:56:40 -080058 name: "launcher_log_protos_lite",
thiruram5e1ecf62019-11-13 17:49:35 -080059 srcs: [
60 "protos/*.proto",
thiruramcbeb13d2021-01-27 14:45:58 -080061 "protos_overrides/*.proto",
thiruram5e1ecf62019-11-13 17:49:35 -080062 ],
63 sdk_version: "current",
64 proto: {
65 type: "lite",
66 local_include_dirs:[
67 "protos",
thiruramcbeb13d2021-01-27 14:45:58 -080068 "protos_overrides",
thiruram5e1ecf62019-11-13 17:49:35 -080069 ],
70 },
thiruramc1c2bfa2020-02-04 18:56:40 -080071 static_libs: ["libprotobuf-java-lite"],
thiruram5e1ecf62019-11-13 17:49:35 -080072}
Hyunyoung Song8605be32020-02-21 14:52:25 -080073
thiruramcbeb13d2021-01-27 14:45:58 -080074java_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 Song8605be32020-02-21 14:52:25 -080092java_library {
93 name: "LauncherPluginLib",
94
95 static_libs: ["PluginCoreLib"],
96
97 srcs: ["src_plugins/**/*.java"],
98
99 sdk_version: "current",
Sunny Goyal1fb271f2021-05-20 10:43:23 -0700100 min_sdk_version: min_launcher3_sdk_version,
Hyunyoung Song8605be32020-02-21 14:52:25 -0800101}
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800102
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800103// Library with all the dependencies for building Launcher3
104android_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 Isganitis93031bc2021-06-09 16:34:45 -0400118 "com.google.android.material_material",
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800119 "iconloader_base",
120 ],
121 manifest: "AndroidManifest-common.xml",
122 sdk_version: "current",
Sunny Goyal1fb271f2021-05-20 10:43:23 -0700123 min_sdk_version: min_launcher3_sdk_version,
Pedro Loureiro1e296c12021-03-09 18:35:52 +0000124 lint: {
125 baseline_filename: "lint-baseline-res-lib.xml",
126 },
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800127}
128
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800129//
130// Build rule for Launcher3 dependencies lib.
131//
132android_library {
133 name: "Launcher3CommonDepsLib",
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800134 srcs: ["src_build_config/**/*.java"],
135 static_libs: ["Launcher3ResLib"],
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800136 sdk_version: "current",
Sunny Goyal1fb271f2021-05-20 10:43:23 -0700137 min_sdk_version: min_launcher3_sdk_version,
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800138 manifest: "AndroidManifest-common.xml",
Pedro Loureiro1e296c12021-03-09 18:35:52 +0000139 lint: {
140 baseline_filename: "lint-baseline-common-deps-lib.xml",
141 },
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800142}
143
144//
145// Build rule for Launcher3 app.
146//
147android_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 Goyal1fb271f2021-05-20 10:43:23 -0700169 min_sdk_version: min_launcher3_sdk_version,
170 target_sdk_version: "current",
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800171 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 Loureiro1e296c12021-03-09 18:35:52 +0000186 lint: {
187 baseline_filename: "lint-baseline-launcher3.xml",
188 },
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800189}
190
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800191// Library with all the dependencies for building quickstep
192android_library {
193 name: "QuickstepResLib",
194 srcs: [ ],
195 resource_dirs: [
196 "quickstep/res",
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800197 ],
Thiru Ramasamyd495e8c2021-08-26 10:37:17 -0700198 libs: [
199 "framework-statsd",
200 ],
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800201 static_libs: [
202 "Launcher3ResLib",
203 "SystemUISharedLib",
204 "SystemUI-statsd",
205 ],
206 manifest: "quickstep/AndroidManifest.xml",
Sunny Goyal1fb271f2021-05-20 10:43:23 -0700207 min_sdk_version: "current",
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800208}
209
210
211// Source code used for test helpers
212filegroup {
213 name: "launcher-src-ext-tests",
214 srcs: ["ext_tests/src/**/*.java"],
215}
216
217// Common source files used to build launcher
218filegroup {
219 name: "launcher-src-no-build-config",
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800220 srcs: [
221 "src/**/*.java",
222 "src_shortcuts_overrides/**/*.java",
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800223 "quickstep/src/**/*.java",
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800224 ],
Sunny Goyalf5c42ea2021-03-12 16:00:40 -0800225}
226
227// Proguard files for Launcher3
228filegroup {
229 name: "launcher-proguard-rules",
230 srcs: ["proguard.flags"],
Hyunyoung Song5a007fe2021-02-25 00:58:05 -0800231}
Jon Spivacka65d68b2021-04-07 10:22:25 -0700232
Jon Spivacka65d68b2021-04-07 10:22:25 -0700233// Library with all the dependencies for building Launcher Go
234android_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 Goyal1fb271f2021-05-20 10:43:23 -0700255 min_sdk_version: "current",
Pedro Loureiro1e296c12021-03-09 18:35:52 +0000256 lint: {
257 baseline_filename: "lint-baseline-go-res-lib.xml",
258 },
Jon Spivacka65d68b2021-04-07 10:22:25 -0700259}
260
Sunny Goyal4af8cf92021-07-29 15:48:24 -0700261// Build rule for Quickstep library
262android_library {
263 name: "Launcher3QuickStepLib",
264 srcs: [
265 ":launcher-src-no-build-config",
266 ],
267 resource_dirs: [
268 "quickstep/res",
269 ],
Thiru Ramasamyd495e8c2021-08-26 10:37:17 -0700270 libs: [
271 "framework-statsd",
272 ],
Sunny Goyal4af8cf92021-07-29 15:48:24 -0700273 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}