blob: 4a28fd92907294d485b144a60216d0d8f56857a8 [file] [log] [blame]
Colin Cross30e076a2015-04-13 13:58:27 -07001// Copyright 2015 Google Inc. All rights reserved.
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
15package java
16
17// This file contains the module types for compiling Android apps.
18
19import (
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070020 "path/filepath"
21 "reflect"
Jaewoong Jung5b425e22019-06-17 17:40:56 -070022 "sort"
Sasha Smundaka7856c02020-04-23 09:49:59 -070023 "strconv"
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070024 "strings"
Colin Cross30e076a2015-04-13 13:58:27 -070025
Colin Cross50ddcc42019-05-16 12:28:22 -070026 "github.com/google/blueprint"
27 "github.com/google/blueprint/proptools"
28
Colin Cross635c3b02016-05-18 15:37:25 -070029 "android/soong/android"
Colin Crossa4f08812018-10-02 22:03:40 -070030 "android/soong/cc"
Colin Cross303e21f2018-08-07 16:49:25 -070031 "android/soong/tradefed"
Colin Cross30e076a2015-04-13 13:58:27 -070032)
33
Jaewoong Jung3e18b192019-06-11 12:25:34 -070034var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"}
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070035
Colin Cross3bc7ffa2017-11-22 16:19:37 -080036func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000037 RegisterAppBuildComponents(android.InitRegistrationContext)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -070038
39 initAndroidAppImportVariantGroupTypes()
Colin Cross3bc7ffa2017-11-22 16:19:37 -080040}
41
Paul Duffinf9b1da02019-12-18 19:51:55 +000042func RegisterAppBuildComponents(ctx android.RegistrationContext) {
43 ctx.RegisterModuleType("android_app", AndroidAppFactory)
44 ctx.RegisterModuleType("android_test", AndroidTestFactory)
45 ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
46 ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
47 ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
48 ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory)
Roshan Pius4df2bc72020-04-27 09:42:27 -070049 ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000050 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
51 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080052 ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory)
Sasha Smundaka7856c02020-04-23 09:49:59 -070053 ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory)
54}
55
56type AndroidAppSetProperties struct {
57 // APK Set path
58 Set *string
59
60 // Specifies that this app should be installed to the priv-app directory,
61 // where the system will grant it additional privileges not available to
62 // normal apps.
63 Privileged *bool
64
65 // APKs in this set use prerelease SDK version
66 Prerelease *bool
67
68 // Names of modules to be overridden. Listed modules can only be other apps
69 // (in Make or Soong).
70 Overrides []string
71}
72
73type AndroidAppSet struct {
74 android.ModuleBase
75 android.DefaultableModuleBase
76 prebuilt android.Prebuilt
77
78 properties AndroidAppSetProperties
79 packedOutput android.WritablePath
80 masterFile string
81}
82
83func (as *AndroidAppSet) Name() string {
84 return as.prebuilt.Name(as.ModuleBase.Name())
85}
86
87func (as *AndroidAppSet) IsInstallable() bool {
88 return true
89}
90
91func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
92 return &as.prebuilt
93}
94
95func (as *AndroidAppSet) Privileged() bool {
96 return Bool(as.properties.Privileged)
97}
98
Sasha Smundak18d98bc2020-05-27 16:36:07 -070099func (as *AndroidAppSet) OutputFile() android.Path {
100 return as.packedOutput
101}
102
103func (as *AndroidAppSet) MasterFile() string {
104 return as.masterFile
105}
106
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700107var TargetCpuAbi = map[string]string{
Sasha Smundaka7856c02020-04-23 09:49:59 -0700108 "arm": "ARMEABI_V7A",
109 "arm64": "ARM64_V8A",
110 "x86": "X86",
111 "x86_64": "X86_64",
112}
113
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700114func SupportedAbis(ctx android.ModuleContext) []string {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700115 abiName := func(archVar string, deviceArch string) string {
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700116 if abi, found := TargetCpuAbi[deviceArch]; found {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700117 return abi
118 }
119 ctx.ModuleErrorf("Invalid %s: %s", archVar, deviceArch)
120 return "BAD_ABI"
121 }
122
123 result := []string{abiName("TARGET_ARCH", ctx.DeviceConfig().DeviceArch())}
124 if s := ctx.DeviceConfig().DeviceSecondaryArch(); s != "" {
125 result = append(result, abiName("TARGET_2ND_ARCH", s))
126 }
127 return result
128}
129
130func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700131 as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip")
Sasha Smundaka7856c02020-04-23 09:49:59 -0700132 // We are assuming here that the master file in the APK
133 // set has `.apk` suffix. If it doesn't the build will fail.
134 // APK sets containing APEX files are handled elsewhere.
135 as.masterFile = ctx.ModuleName() + ".apk"
136 screenDensities := "all"
137 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
138 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
139 }
140 // TODO(asmundak): handle locales.
141 // TODO(asmundak): do we support device features
142 ctx.Build(pctx,
143 android.BuildParams{
144 Rule: extractMatchingApks,
145 Description: "Extract APKs from APK set",
146 Output: as.packedOutput,
147 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
148 Args: map[string]string{
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700149 "abis": strings.Join(SupportedAbis(ctx), ","),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700150 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
151 "screen-densities": screenDensities,
152 "sdk-version": ctx.Config().PlatformSdkVersion(),
153 "stem": ctx.ModuleName(),
154 },
155 })
Sasha Smundaka7856c02020-04-23 09:49:59 -0700156}
157
158// android_app_set extracts a set of APKs based on the target device
159// configuration and installs this set as "split APKs".
160// The set will always contain `base-master.apk` and every APK built
161// to the target device. All density-specific APK will be included, too,
162// unless PRODUCT_APPT_PREBUILT_DPI is defined (should contain comma-sepearated
163// list of density names (LDPI, MDPI, HDPI, etc.)
164func AndroidApkSetFactory() android.Module {
165 module := &AndroidAppSet{}
166 module.AddProperties(&module.properties)
167 InitJavaModule(module, android.DeviceSupported)
168 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
169 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000170}
171
Colin Cross30e076a2015-04-13 13:58:27 -0700172// AndroidManifest.xml merging
173// package splits
174
Colin Crossfabb6082018-02-20 17:22:23 -0800175type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700176 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700177 Additional_certificates []string
178
179 // If set, create package-export.apk, which other packages can
180 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800181 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700182
Colin Cross16056062017-12-13 22:46:28 -0800183 // Specifies that this app should be installed to the priv-app directory,
184 // where the system will grant it additional privileges not available to
185 // normal apps.
186 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700187
188 // list of resource labels to generate individual resource packages
189 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400190
191 // Names of modules to be overridden. Listed modules can only be other binaries
192 // (in Make or Soong).
193 // This does not completely prevent installation of the overridden binaries, but if both
194 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
195 // from PRODUCT_PACKAGES.
196 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700197
198 // list of native libraries that will be provided in or alongside the resulting jar
199 Jni_libs []string `android:"arch_variant"`
200
Colin Cross7204cf02020-05-06 17:51:39 -0700201 // if true, use JNI libraries that link against platform APIs even if this module sets
Colin Crossee87c602020-02-19 16:57:15 -0800202 // sdk_version.
203 Jni_uses_platform_apis *bool
204
Colin Cross7204cf02020-05-06 17:51:39 -0700205 // if true, use JNI libraries that link against SDK APIs even if this module does not set
206 // sdk_version.
207 Jni_uses_sdk_apis *bool
208
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700209 // STL library to use for JNI libraries.
210 Stl *string `android:"arch_variant"`
211
Colin Crosse4246ab2019-02-05 21:55:21 -0800212 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
213 // flag so that they are used from inside the APK at runtime. Defaults to true for android_test modules unless
Jiyong Park52cd06f2019-11-11 10:14:32 +0900214 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
215 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
216 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -0800217 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -0800218
219 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
220 // they are used from inside the APK at runtime.
221 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -0700222
223 // Forces native libraries to always be packaged into the APK,
224 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
225 // True for android_test* modules.
226 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700227
228 // If set, find and merge all NOTICE files that this module and its dependencies have and store
229 // it in the APK as an asset.
230 Embed_notices *bool
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700231
232 // cc.Coverage related properties
233 PreventInstall bool `blueprint:"mutated"`
234 HideFromMake bool `blueprint:"mutated"`
235 IsCoverageVariant bool `blueprint:"mutated"`
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100236
237 // Whether this app is considered mainline updatable or not. When set to true, this will enforce
Artur Satayevf40fc852020-04-16 13:43:02 +0100238 // additional rules to make sure an app can safely be updated. Default is false.
239 // Prefer using other specific properties if build behaviour must be changed; avoid using this
240 // flag for anything but neverallow rules (unless the behaviour change is invisible to owners).
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100241 Updatable *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700242}
243
Jaewoong Jung525443a2019-02-28 15:35:54 -0800244// android_app properties that can be overridden by override_android_app
245type overridableAppProperties struct {
246 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
247 // or an android_app_certificate module name in the form ":module".
248 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700249
Liz Kammere2b27f42020-05-07 13:24:05 -0700250 // Name of the signing certificate lineage file.
251 Lineage *string
252
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700253 // the package name of this app. The package name in the manifest file is used if one was not given.
254 Package_name *string
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800255
256 // the logging parent of this app.
257 Logging_parent *string
Jaewoong Jung525443a2019-02-28 15:35:54 -0800258}
259
Roshan Pius4df2bc72020-04-27 09:42:27 -0700260// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
261type OverridableRuntimeResourceOverlayProperties struct {
262 // the package name of this app. The package name in the manifest file is used if one was not given.
263 Package_name *string
264
265 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
266 Target_package_name *string
267}
268
Colin Cross30e076a2015-04-13 13:58:27 -0700269type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700270 Library
271 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800272 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700273
Colin Cross50ddcc42019-05-16 12:28:22 -0700274 usesLibrary usesLibrary
275
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900276 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700277
Colin Crossfabb6082018-02-20 17:22:23 -0800278 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700279
Jaewoong Jung525443a2019-02-28 15:35:54 -0800280 overridableAppProperties overridableAppProperties
281
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700282 installJniLibs []jniLib
283 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700284
285 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800286
287 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
288 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800289
Colin Cross70dda7e2019-10-01 22:05:35 -0700290 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700291
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700292 onDeviceDir string
293
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800294 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700295
296 noticeOutputs android.NoticeOutputs
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900297
298 overriddenManifestPackageName string
Artur Satayev1111b842020-04-27 19:05:28 +0100299
300 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800301}
302
Martin Stjernholm6d415272020-01-31 17:10:36 +0000303func (a *AndroidApp) IsInstallable() bool {
304 return Bool(a.properties.Installable)
305}
306
Colin Cross89c31582018-04-30 15:55:11 -0700307func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
308 return nil
309}
310
Colin Cross66f78822018-05-02 12:58:28 -0700311func (a *AndroidApp) ExportedStaticPackages() android.Paths {
312 return nil
313}
314
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900315func (a *AndroidApp) OutputFile() android.Path {
316 return a.outputFile
317}
318
Colin Cross503c1d02020-01-28 14:00:53 -0800319func (a *AndroidApp) Certificate() Certificate {
320 return a.certificate
321}
322
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700323func (a *AndroidApp) JniCoverageOutputs() android.Paths {
324 return a.jniCoverageOutputs
325}
326
Colin Crossa97c5d32018-03-28 14:58:31 -0700327var _ AndroidLibraryDependency = (*AndroidApp)(nil)
328
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900329type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800330 Pem, Key android.Path
331 presigned bool
332}
333
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700334var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800335
336func (c Certificate) AndroidMkString() string {
337 if c.presigned {
338 return "PRESIGNED"
339 } else {
340 return c.Pem.String()
341 }
Colin Cross30e076a2015-04-13 13:58:27 -0700342}
343
Colin Cross46c9b8b2017-06-22 16:51:17 -0700344func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
345 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700346
Jiyong Park6a927c42020-01-21 02:03:43 +0900347 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700348 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
349 }
350
Paul Duffin250e6192019-06-07 10:44:37 +0100351 sdkDep := decodeSdkDep(ctx, sdkContext(a))
352 if sdkDep.hasFrameworkLibs() {
353 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700354 }
Colin Crossa4f08812018-10-02 22:03:40 -0700355
Colin Cross3c007702020-05-08 11:20:24 -0700356 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
357
358 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
359 ctx.PropertyErrorf("jni_uses_sdk_apis",
360 "can only be set for modules that do not set sdk_version")
361 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
362 ctx.PropertyErrorf("jni_uses_platform_apis",
363 "can only be set for modules that set sdk_version")
364 }
365
Peter Collingbournead84f972019-12-17 16:46:18 -0800366 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700367 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700368 variation := append(jniTarget.Variations(),
369 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossc511bc52020-04-07 16:50:32 +0000370
371 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
372 // unless jni_uses_platform_apis is set.
Colin Crossc2d24052020-05-13 11:05:02 -0700373 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
374 // have stable APIs through the VNDK.
375 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
376 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross7204cf02020-05-06 17:51:39 -0700377 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Crossc511bc52020-04-07 16:50:32 +0000378 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
379 }
Colin Crossa4f08812018-10-02 22:03:40 -0700380 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
381 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700382
Paul Duffin250e6192019-06-07 10:44:37 +0100383 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700384}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700385
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700386func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800387 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700388 if cert != "" {
389 ctx.AddDependency(ctx.Module(), certificateTag, cert)
390 }
391
392 for _, cert := range a.appProperties.Additional_certificates {
393 cert = android.SrcIsModule(cert)
394 if cert != "" {
395 ctx.AddDependency(ctx.Module(), certificateTag, cert)
396 } else {
397 ctx.PropertyErrorf("additional_certificates",
398 `must be names of android_app_certificate modules in the form ":module"`)
399 }
400 }
Colin Cross30e076a2015-04-13 13:58:27 -0700401}
402
Jeongik Cha538c0d02019-07-11 15:54:27 +0900403func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
404 a.generateAndroidBuildActions(ctx)
405}
406
Colin Cross46c9b8b2017-06-22 16:51:17 -0700407func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100408 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700409 a.generateAndroidBuildActions(ctx)
410}
411
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100412func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev849f8442020-04-28 14:57:42 +0100413 if a.Updatable() {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100414 if !a.sdkVersion().stable() {
415 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
416 }
Artur Satayevf40fc852020-04-16 13:43:02 +0100417 if String(a.deviceProperties.Min_sdk_version) == "" {
418 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
419 }
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900420 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
421 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
422 } else {
423 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
424 }
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100425 }
426
427 a.checkPlatformAPI(ctx)
428 a.checkSdkVersions(ctx)
429}
430
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900431// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
432// This check is enforced for "updatable" APKs (including APK-in-APEX).
433// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
434// because, sdk_version is overridden by min_sdk_version (if set as smaller)
435// and linkType is checked with dependencies so we can be sure that the whole dependency tree
436// will meet the requirements.
437func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
438 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
439 ctx.VisitDirectDeps(func(m android.Module) {
440 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
441 return
442 }
443 dep, _ := m.(*cc.Module)
444 jniSdkVersion, err := android.ApiStrToNum(ctx, dep.SdkVersion())
445 if err != nil || int(minSdkVersion) < jniSdkVersion {
446 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
447 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
448 return
449 }
450
451 })
452}
453
Sasha Smundak6ad77252019-05-01 13:16:22 -0700454// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800455// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700456func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900457 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800458 if err != nil {
459 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
460 }
461
Jiyong Park52cd06f2019-11-11 10:14:32 +0900462 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
463 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800464}
465
Colin Cross43f08db2018-11-12 10:13:39 -0800466// Returns whether this module should have the dex file stored uncompressed in the APK.
467func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800468 if Bool(a.appProperties.Use_embedded_dex) {
469 return true
470 }
471
Colin Cross53a87f52019-06-25 13:35:30 -0700472 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
473 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900474 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000475 return true
476 }
477
Colin Cross53a87f52019-06-25 13:35:30 -0700478 if ctx.Config().UnbundledBuild() {
479 return false
480 }
481
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700482 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700483}
484
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700485func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
486 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900487 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700488}
489
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900490func (a *AndroidApp) OverriddenManifestPackageName() string {
491 return a.overriddenManifestPackageName
492}
493
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800494func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000495 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
496
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700497 // Ask manifest_fixer to add or update the application element indicating this app has no code.
498 a.aapt.hasNoCode = !a.hasCode(ctx)
499
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800500 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800501
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800502 // Add TARGET_AAPT_CHARACTERISTICS values to AAPT link flags if they exist and --product flags were not provided.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800503 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700504 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800505 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700506 }
507
Dan Willemsen72be5902018-10-24 20:24:57 -0700508 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
509 // Product AAPT config
510 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800511 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700512 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700513
Dan Willemsen72be5902018-10-24 20:24:57 -0700514 // Product AAPT preferred config
515 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800516 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700517 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700518 }
519
Jiyong Park7f67f482019-01-05 12:57:48 +0900520 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700521 if overridden || a.overridableAppProperties.Package_name != nil {
522 // The product override variable has a priority over the package_name property.
523 if !overridden {
524 manifestPackageName = *a.overridableAppProperties.Package_name
525 }
Liz Kammer1d5983b2020-05-19 19:15:37 +0000526 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900527 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900528 }
529
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800530 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
531
Colin Crosse560c4a2019-03-19 16:03:11 -0700532 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700533 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800534 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800535 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700536
Colin Cross46c9b8b2017-06-22 16:51:17 -0700537 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700538 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800539}
Colin Cross30e076a2015-04-13 13:58:27 -0700540
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800541func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700542 var staticLibProguardFlagFiles android.Paths
543 ctx.VisitDirectDeps(func(m android.Module) {
544 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
545 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
546 }
547 })
548
549 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
550
551 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
552 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800553}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800554
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800555func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
Colin Cross43f08db2018-11-12 10:13:39 -0800556
557 var installDir string
558 if ctx.ModuleName() == "framework-res" {
559 // framework-res.apk is installed as system/framework/framework-res.apk
560 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900561 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800562 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800563 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800564 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800565 }
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800566 a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
David Srbeckye033cba2020-05-20 22:20:28 +0100567 if a.deviceProperties.Uncompress_dex == nil {
568 // If the value was not force-set by the user, use reasonable default based on the module.
569 a.deviceProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
570 }
571 a.dexpreopter.uncompressedDex = *a.deviceProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700572 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
573 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
574 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
575 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
576 a.dexpreopter.manifestFile = a.mergedManifestFile
577
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800578 if ctx.ModuleName() != "framework-res" {
579 a.Module.compile(ctx, a.aaptSrcJar)
580 }
Colin Cross30e076a2015-04-13 13:58:27 -0700581
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800582 return a.maybeStrippedDexJarFile
583}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800584
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800585func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700586 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700587 if len(jniLibs) > 0 {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700588 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700589 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Sasha Smundak6ad77252019-05-01 13:16:22 -0700590 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700591 for _, jni := range jniLibs {
592 if jni.coverageFile.Valid() {
Jaewoong Jung46984ee2020-04-07 13:07:55 -0700593 // Only collect coverage for the first target arch if this is a multilib target.
594 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
595 // data file path collisions since the current coverage file path format doesn't contain
596 // arch-related strings. This is fine for now though; the code coverage team doesn't use
597 // multi-arch targets such as test_suite_* for coverage collections yet.
598 //
599 // Work with the team to come up with a new format that handles multilib modules properly
600 // and change this.
601 if len(ctx.Config().Targets[android.Android]) == 1 ||
602 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
603 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
604 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700605 }
606 }
Colin Crossa4f08812018-10-02 22:03:40 -0700607 } else {
608 a.installJniLibs = jniLibs
609 }
610 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800611 return jniJarFile
612}
Colin Crossa4f08812018-10-02 22:03:40 -0700613
Jaewoong Jung0949f312019-09-11 10:25:18 -0700614func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700615 // Collect NOTICE files from all dependencies.
616 seenModules := make(map[android.Module]bool)
617 noticePathSet := make(map[android.Path]bool)
618
619 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
620 // Have we already seen this?
621 if _, ok := seenModules[child]; ok {
622 return false
623 }
624 seenModules[child] = true
625
626 // Skip host modules.
627 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
628 return false
629 }
630
Bob Badoura75b0572020-02-18 20:21:55 -0800631 paths := child.(android.Module).NoticeFiles()
632 if len(paths) > 0 {
633 for _, path := range paths {
634 noticePathSet[path] = true
635 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700636 }
637 return true
638 })
639
640 // If the app has one, add it too.
Bob Badoura75b0572020-02-18 20:21:55 -0800641 if len(a.NoticeFiles()) > 0 {
642 for _, path := range a.NoticeFiles() {
643 noticePathSet[path] = true
644 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700645 }
646
647 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700648 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700649 }
650 var noticePaths []android.Path
651 for path := range noticePathSet {
652 noticePaths = append(noticePaths, path)
653 }
654 sort.Slice(noticePaths, func(i, j int) bool {
655 return noticePaths[i].String() < noticePaths[j].String()
656 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700657
Jaewoong Jung0949f312019-09-11 10:25:18 -0700658 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700659}
660
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700661// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
662// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
663func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
664 if android.SrcIsModule(certPropValue) == "" {
665 var mainCert Certificate
666 if certPropValue != "" {
667 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
668 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800669 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
670 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700671 }
672 } else {
673 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800674 mainCert = Certificate{
675 Pem: pem,
676 Key: key,
677 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700678 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700679 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700680 }
681
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700682 if !m.Platform() {
683 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900684 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
685 if strings.HasPrefix(certPath, systemCertPath) {
686 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
687 whitelist := ctx.Config().EnforceSystemCertificateWhitelist()
688
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700689 if enforceSystemCert && !inList(m.Name(), whitelist) {
Jeongik Chac9464142019-01-07 12:07:27 +0900690 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
691 }
692 }
693 }
694
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700695 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800696}
697
Jooyung Han39ee1192020-03-23 20:21:11 +0900698func (a *AndroidApp) InstallApkName() string {
699 return a.installApkName
700}
701
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800702func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700703 var apkDeps android.Paths
704
Jeongik Cha538c0d02019-07-11 15:54:27 +0900705 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
706 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
707
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800708 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800709 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800710
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700711 if ctx.ModuleName() == "framework-res" {
712 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700713 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900714 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700715 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
716 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800717 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700718 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700719 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700720 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700721 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700722
Jaewoong Jung0949f312019-09-11 10:25:18 -0700723 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700724 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
725 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
726 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700727
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800728 // Process all building blocks, from AAPT to certificates.
729 a.aaptBuildActions(ctx)
730
Colin Cross50ddcc42019-05-16 12:28:22 -0700731 if a.usesLibrary.enforceUsesLibraries() {
732 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
733 apkDeps = append(apkDeps, manifestCheckFile)
734 }
735
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800736 a.proguardBuildActions(ctx)
737
738 dexJarFile := a.dexBuildActions(ctx)
739
Colin Crossc2d24052020-05-13 11:05:02 -0700740 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800741 jniJarFile := a.jniBuildActions(jniLibs, ctx)
742
743 if ctx.Failed() {
744 return
745 }
746
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700747 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
748 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800749
750 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800751 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Liz Kammere2b27f42020-05-07 13:24:05 -0700752 var lineageFile android.Path
753 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
754 lineageFile = android.PathForModuleSrc(ctx, lineage)
755 }
756 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800757 a.outputFile = packageFile
758
Colin Crosse560c4a2019-03-19 16:03:11 -0700759 for _, split := range a.aapt.splits {
760 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800761 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Liz Kammere2b27f42020-05-07 13:24:05 -0700762 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700763 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
764 }
765
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800766 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700767 bundleFile := android.PathForModuleOut(ctx, "base.zip")
768 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
769 a.bundleFile = bundleFile
770
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800771 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900772 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
773 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
774 for _, extra := range a.extraOutputFiles {
775 ctx.InstallFile(a.installDir, extra.Base(), extra)
776 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800777 }
Artur Satayev1111b842020-04-27 19:05:28 +0100778
779 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700780}
781
Colin Crossc2d24052020-05-13 11:05:02 -0700782type appDepsInterface interface {
783 sdkVersion() sdkSpec
784 minSdkVersion() sdkSpec
785 RequiresStableAPIs(ctx android.BaseModuleContext) bool
786}
787
788func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
789 shouldCollectRecursiveNativeDeps bool,
Colin Cross094cde42020-02-15 10:38:00 -0800790 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crossc2d24052020-05-13 11:05:02 -0700791
Colin Crossa4f08812018-10-02 22:03:40 -0700792 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900793 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800794 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700795
Colin Crossc2d24052020-05-13 11:05:02 -0700796 if checkNativeSdkVersion {
797 checkNativeSdkVersion = app.sdkVersion().specified() &&
798 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
799 }
800
Peter Collingbournead84f972019-12-17 16:46:18 -0800801 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700802 otherName := ctx.OtherModuleName(module)
803 tag := ctx.OtherModuleDependencyTag(module)
804
Peter Collingbournead84f972019-12-17 16:46:18 -0800805 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700806 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800807 if dep.IsNdk() || dep.IsStubs() {
808 return false
809 }
810
Colin Crossa4f08812018-10-02 22:03:40 -0700811 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800812 path := lib.Path()
813 if seenModulePaths[path.String()] {
814 return false
815 }
816 seenModulePaths[path.String()] = true
817
Colin Crossc2d24052020-05-13 11:05:02 -0700818 if checkNativeSdkVersion && dep.SdkVersion() == "" {
819 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
820 otherName)
Colin Cross094cde42020-02-15 10:38:00 -0800821 }
822
Colin Crossa4f08812018-10-02 22:03:40 -0700823 if lib.Valid() {
824 jniLibs = append(jniLibs, jniLib{
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700825 name: ctx.OtherModuleName(module),
826 path: path,
827 target: module.Target(),
828 coverageFile: dep.CoverageOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700829 })
830 } else {
831 ctx.ModuleErrorf("dependency %q missing output file", otherName)
832 }
833 } else {
834 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700835 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800836
837 return shouldCollectRecursiveNativeDeps
838 }
839
840 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700841 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900842 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700843 } else {
844 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
845 }
Colin Crossa4f08812018-10-02 22:03:40 -0700846 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800847
848 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700849 })
850
Colin Crossbd01e2a2018-10-04 15:21:03 -0700851 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700852}
853
Artur Satayev1111b842020-04-27 19:05:28 +0100854func (a *AndroidApp) walkPayloadDeps(ctx android.ModuleContext,
855 do func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool)) {
856
857 ctx.WalkDeps(func(child, parent android.Module) bool {
858 isExternal := !a.DepIsInSameApex(ctx, child)
859 if am, ok := child.(android.ApexModule); ok {
860 do(ctx, parent, am, isExternal)
861 }
862 return !isExternal
863 })
864}
865
866func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
867 if ctx.Host() {
868 return
869 }
870
871 depsInfo := android.DepNameToDepInfoMap{}
872 a.walkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) {
873 depName := to.Name()
874 if info, exist := depsInfo[depName]; exist {
875 info.From = append(info.From, from.Name())
876 info.IsExternal = info.IsExternal && externalDep
877 depsInfo[depName] = info
878 } else {
879 toMinSdkVersion := "(no version)"
880 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
881 if v := m.MinSdkVersion(); v != "" {
882 toMinSdkVersion = v
883 }
884 }
885 depsInfo[depName] = android.ApexModuleDepInfo{
886 To: depName,
887 From: []string{from.Name()},
888 IsExternal: externalDep,
889 MinSdkVersion: toMinSdkVersion,
890 }
891 }
892 })
893
894 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
895}
896
Artur Satayev849f8442020-04-28 14:57:42 +0100897func (a *AndroidApp) Updatable() bool {
898 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
899}
900
Colin Cross0ea8ba82019-06-06 14:33:29 -0700901func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800902 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
903 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000904 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800905 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800906 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800907}
908
Jiyong Park0f80c182020-01-31 02:49:53 +0900909func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
910 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
911 return true
912 }
913 return a.Library.DepIsInSameApex(ctx, dep)
914}
915
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900916// For OutputFileProducer interface
917func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
918 switch tag {
919 case ".aapt.srcjar":
920 return []android.Path{a.aaptSrcJar}, nil
921 }
922 return a.Library.OutputFiles(tag)
923}
924
Jiyong Parkf7487312019-10-17 12:54:30 +0900925func (a *AndroidApp) Privileged() bool {
926 return Bool(a.appProperties.Privileged)
927}
928
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700929func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
930 return ctx.Device() && (ctx.DeviceConfig().NativeCoverageEnabled() || ctx.DeviceConfig().ClangCoverageEnabled())
931}
932
933func (a *AndroidApp) PreventInstall() {
934 a.appProperties.PreventInstall = true
935}
936
937func (a *AndroidApp) HideFromMake() {
938 a.appProperties.HideFromMake = true
939}
940
941func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
942 a.appProperties.IsCoverageVariant = coverage
943}
944
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400945func (a *AndroidApp) EnableCoverageIfNeeded() {}
946
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700947var _ cc.Coverage = (*AndroidApp)(nil)
948
Colin Cross1b16b0e2019-02-12 14:41:32 -0800949// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -0700950func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -0700951 module := &AndroidApp{}
952
Sasha Smundak2057f822019-04-16 17:16:58 -0700953 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross66dbc0b2017-12-28 12:23:20 -0800954 module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
955
Colin Crossae5caf52018-05-22 11:11:52 -0700956 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -0700957 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -0700958
Colin Cross36242852017-06-23 15:06:31 -0700959 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -0700960 &module.Module.properties,
961 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -0800962 &module.Module.dexpreoptProperties,
Colin Crossa97c5d32018-03-28 14:58:31 -0700963 &module.Module.protoProperties,
964 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -0800965 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -0700966 &module.overridableAppProperties,
967 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -0700968
Colin Crossa9d8bee2018-10-02 13:59:46 -0700969 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
970 return class == android.Device && ctx.Config().DevicePrefer32BitApps()
971 })
972
Colin Crossa4f08812018-10-02 22:03:40 -0700973 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
974 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800975 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +0900976 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -0700977
Colin Cross36242852017-06-23 15:06:31 -0700978 return module
Colin Cross30e076a2015-04-13 13:58:27 -0700979}
Colin Crossae5caf52018-05-22 11:11:52 -0700980
981type appTestProperties struct {
Liz Kammer6b0c5522020-04-28 16:10:55 -0700982 // The name of the android_app module that the tests will run against.
Colin Crossae5caf52018-05-22 11:11:52 -0700983 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700984
985 // if specified, the instrumentation target package name in the manifest is overwritten by it.
986 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -0700987}
988
989type AndroidTest struct {
990 AndroidApp
991
992 appTestProperties appTestProperties
993
994 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -0700995
996 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -0700997 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -0700998}
999
Jaewoong Jung0949f312019-09-11 10:25:18 -07001000func (a *AndroidTest) InstallInTestcases() bool {
1001 return true
1002}
1003
Colin Crossae5caf52018-05-22 11:11:52 -07001004func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncylee5bcff5d2020-04-30 14:57:06 +08001005 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001006 if a.appTestProperties.Instrumentation_target_package != nil {
1007 a.additionalAaptFlags = append(a.additionalAaptFlags,
1008 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1009 } else if a.appTestProperties.Instrumentation_for != nil {
1010 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001011 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1012 if overridden {
1013 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1014 }
1015 }
Colin Crossae5caf52018-05-22 11:11:52 -07001016 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001017
easoncylee5bcff5d2020-04-30 14:57:06 +08001018 for _, module := range a.testProperties.Test_mainline_modules {
1019 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1020 }
1021
Jaewoong Jung39982342020-01-14 10:27:18 -08001022 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncylee5bcff5d2020-04-30 14:57:06 +08001023 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001024 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001025 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001026}
1027
Jaewoong Jung39982342020-01-14 10:27:18 -08001028func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1029 if testConfig == nil {
1030 return nil
1031 }
1032
1033 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1034 rule := android.NewRuleBuilder()
1035 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1036 fixNeeded := false
1037
1038 if ctx.ModuleName() != a.installApkName {
1039 fixNeeded = true
1040 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1041 }
1042
1043 if a.overridableAppProperties.Package_name != nil {
1044 fixNeeded = true
1045 command.FlagWithInput("--manifest ", a.manifestPath).
1046 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1047 }
1048
1049 if fixNeeded {
1050 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1051 return fixedConfig
1052 }
1053 return testConfig
1054}
1055
Colin Cross303e21f2018-08-07 16:49:25 -07001056func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001057 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001058}
1059
1060func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1061 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001062 if a.appTestProperties.Instrumentation_for != nil {
1063 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1064 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1065 // use instrumentationForTag instead of libTag.
1066 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1067 }
Colin Crossae5caf52018-05-22 11:11:52 -07001068}
1069
Colin Cross1b16b0e2019-02-12 14:41:32 -08001070// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1071// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001072func AndroidTestFactory() android.Module {
1073 module := &AndroidTest{}
1074
Sasha Smundak2057f822019-04-16 17:16:58 -07001075 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001076
1077 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001078 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001079 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001080 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001081 module.Module.dexpreopter.isTest = true
Colin Crossae5caf52018-05-22 11:11:52 -07001082
1083 module.AddProperties(
1084 &module.Module.properties,
1085 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001086 &module.Module.dexpreoptProperties,
Colin Crossae5caf52018-05-22 11:11:52 -07001087 &module.Module.protoProperties,
1088 &module.aaptProperties,
1089 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001090 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001091 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001092 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001093 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001094
Colin Crossa4f08812018-10-02 22:03:40 -07001095 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1096 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001097 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001098 return module
1099}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001100
Colin Cross252fc6f2018-10-04 15:22:03 -07001101type appTestHelperAppProperties struct {
1102 // list of compatibility suites (for example "cts", "vts") that the module should be
1103 // installed into.
1104 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001105
1106 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1107 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1108 // explicitly.
1109 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001110}
1111
1112type AndroidTestHelperApp struct {
1113 AndroidApp
1114
1115 appTestHelperAppProperties appTestHelperAppProperties
1116}
1117
Jaewoong Jung326a9412019-11-21 10:41:00 -08001118func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1119 return true
1120}
1121
Colin Cross1b16b0e2019-02-12 14:41:32 -08001122// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1123// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1124// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001125func AndroidTestHelperAppFactory() android.Module {
1126 module := &AndroidTestHelperApp{}
1127
Sasha Smundak2057f822019-04-16 17:16:58 -07001128 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001129
1130 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001131 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001132 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001133 module.Module.dexpreopter.isTest = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001134
1135 module.AddProperties(
1136 &module.Module.properties,
1137 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001138 &module.Module.dexpreoptProperties,
Colin Cross252fc6f2018-10-04 15:22:03 -07001139 &module.Module.protoProperties,
1140 &module.aaptProperties,
1141 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001142 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001143 &module.overridableAppProperties,
1144 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001145
1146 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1147 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001148 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001149 return module
1150}
1151
Colin Crossbd01e2a2018-10-04 15:21:03 -07001152type AndroidAppCertificate struct {
1153 android.ModuleBase
1154 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001155 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001156}
1157
1158type AndroidAppCertificateProperties struct {
1159 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1160 Certificate *string
1161}
1162
Colin Cross1b16b0e2019-02-12 14:41:32 -08001163// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1164// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001165func AndroidAppCertificateFactory() android.Module {
1166 module := &AndroidAppCertificate{}
1167 module.AddProperties(&module.properties)
1168 android.InitAndroidModule(module)
1169 return module
1170}
1171
Colin Crossbd01e2a2018-10-04 15:21:03 -07001172func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1173 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001174 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001175 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1176 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001177 }
1178}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001179
1180type OverrideAndroidApp struct {
1181 android.ModuleBase
1182 android.OverrideModuleBase
1183}
1184
1185func (i *OverrideAndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1186 // All the overrides happen in the base module.
1187 // TODO(jungjw): Check the base module type.
1188}
1189
1190// override_android_app is used to create an android_app module based on another android_app by overriding
1191// some of its properties.
1192func OverrideAndroidAppModuleFactory() android.Module {
1193 m := &OverrideAndroidApp{}
1194 m.AddProperties(&overridableAppProperties{})
1195
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001196 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001197 android.InitOverrideModule(m)
1198 return m
1199}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001200
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001201type OverrideAndroidTest struct {
1202 android.ModuleBase
1203 android.OverrideModuleBase
1204}
1205
1206func (i *OverrideAndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1207 // All the overrides happen in the base module.
1208 // TODO(jungjw): Check the base module type.
1209}
1210
1211// override_android_test is used to create an android_app module based on another android_test by overriding
1212// some of its properties.
1213func OverrideAndroidTestModuleFactory() android.Module {
1214 m := &OverrideAndroidTest{}
1215 m.AddProperties(&overridableAppProperties{})
1216 m.AddProperties(&appTestProperties{})
1217
1218 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1219 android.InitOverrideModule(m)
1220 return m
1221}
1222
Roshan Pius4df2bc72020-04-27 09:42:27 -07001223type OverrideRuntimeResourceOverlay struct {
1224 android.ModuleBase
1225 android.OverrideModuleBase
1226}
1227
1228func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1229 // All the overrides happen in the base module.
1230 // TODO(jungjw): Check the base module type.
1231}
1232
1233// override_runtime_resource_overlay is used to create a module based on another
1234// runtime_resource_overlay module by overriding some of its properties.
1235func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1236 m := &OverrideRuntimeResourceOverlay{}
1237 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1238
1239 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1240 android.InitOverrideModule(m)
1241 return m
1242}
1243
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001244type AndroidAppImport struct {
1245 android.ModuleBase
1246 android.DefaultableModuleBase
Jiyong Park592a6a42020-04-21 22:34:28 +09001247 android.ApexModuleBase
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001248 prebuilt android.Prebuilt
1249
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001250 properties AndroidAppImportProperties
1251 dpiVariants interface{}
1252 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001253
1254 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001255 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001256
1257 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001258
1259 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001260
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001261 preprocessed bool
1262
Colin Cross70dda7e2019-10-01 22:05:35 -07001263 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001264}
1265
1266type AndroidAppImportProperties struct {
1267 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001268 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001269
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001270 // The name of a certificate in the default certificate directory or an android_app_certificate
1271 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001272 Certificate *string
1273
1274 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1275 // be set for presigned modules.
1276 Presigned *bool
1277
Liz Kammer24978992020-05-13 15:49:21 -07001278 // Name of the signing certificate lineage file.
1279 Lineage *string
1280
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001281 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1282 // need to either specify a specific certificate or be presigned.
1283 Default_dev_cert *bool
1284
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001285 // Specifies that this app should be installed to the priv-app directory,
1286 // where the system will grant it additional privileges not available to
1287 // normal apps.
1288 Privileged *bool
1289
1290 // Names of modules to be overridden. Listed modules can only be other binaries
1291 // (in Make or Soong).
1292 // This does not completely prevent installation of the overridden binaries, but if both
1293 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1294 // from PRODUCT_PACKAGES.
1295 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001296
1297 // Optional name for the installed app. If unspecified, it is derived from the module name.
1298 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001299}
1300
Martin Stjernholm6d415272020-01-31 17:10:36 +00001301func (a *AndroidAppImport) IsInstallable() bool {
1302 return true
1303}
1304
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001305// Updates properties with variant-specific values.
1306func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001307 config := ctx.Config()
1308
1309 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1310 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1311 // overwrites everything else.
1312 // TODO(jungjw): Can we optimize this by making it priority order?
1313 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001314 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001315 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001316 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001317 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001318 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001319
1320 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1321 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1322 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001323}
1324
Colin Cross1184b642019-12-30 18:43:07 -08001325func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001326 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001327 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1328 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001329 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001330 }
1331
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001332 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1333 if err != nil {
1334 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1335 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1336 } else {
1337 panic(err)
1338 }
1339 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001340}
1341
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001342func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1343 cert := android.SrcIsModule(String(a.properties.Certificate))
1344 if cert != "" {
1345 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1346 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001347
Paul Duffin250e6192019-06-07 10:44:37 +01001348 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001349}
1350
1351func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1352 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001353 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1354 // with them may invalidate pre-existing signature data.
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001355 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001356 ctx.Build(pctx, android.BuildParams{
1357 Rule: android.Cp,
1358 Output: outputPath,
1359 Input: inputPath,
1360 })
1361 return
1362 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001363 rule := android.NewRuleBuilder()
1364 rule.Command().
1365 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001366 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001367 FlagWithInput("-i ", inputPath).
1368 FlagWithOutput("-o ", outputPath).
1369 FlagWithArg("-0 ", "'lib/**/*.so'").
1370 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1371 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1372}
1373
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001374// Returns whether this module should have the dex file stored uncompressed in the APK.
1375func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001376 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001377 return false
1378 }
1379
1380 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001381 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001382 return true
1383 }
1384
1385 return shouldUncompressDex(ctx, &a.dexpreopter)
1386}
1387
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001388func (a *AndroidAppImport) uncompressDex(
1389 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1390 rule := android.NewRuleBuilder()
1391 rule.Command().
1392 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001393 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001394 FlagWithInput("-i ", inputPath).
1395 FlagWithOutput("-o ", outputPath).
1396 FlagWithArg("-0 ", "'classes*.dex'").
1397 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1398 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1399}
1400
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001401func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001402 a.generateAndroidBuildActions(ctx)
1403}
1404
Jooyung Han39ee1192020-03-23 20:21:11 +09001405func (a *AndroidAppImport) InstallApkName() string {
1406 return a.BaseModuleName()
1407}
1408
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001409func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001410 numCertPropsSet := 0
1411 if String(a.properties.Certificate) != "" {
1412 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001413 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001414 if Bool(a.properties.Presigned) {
1415 numCertPropsSet++
1416 }
1417 if Bool(a.properties.Default_dev_cert) {
1418 numCertPropsSet++
1419 }
1420 if numCertPropsSet != 1 {
1421 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001422 }
1423
Colin Crossc2d24052020-05-13 11:05:02 -07001424 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001425
1426 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001427 // TODO: LOCAL_PACKAGE_SPLITS
1428
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001429 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001430
1431 if a.usesLibrary.enforceUsesLibraries() {
1432 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1433 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001434
1435 // TODO: Install or embed JNI libraries
1436
1437 // Uncompress JNI libraries in the apk
1438 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1439 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1440
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001441 var installDir android.InstallPath
1442 if Bool(a.properties.Privileged) {
1443 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001444 } else if ctx.InstallInTestcases() {
1445 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001446 } else {
1447 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1448 }
1449
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001450 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001451 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001452 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001453
1454 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1455 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1456 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1457 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1458
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001459 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001460 if a.dexpreopter.uncompressedDex {
1461 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1462 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1463 dexOutput = dexUncompressed
1464 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001465
Jooyung Han39ee1192020-03-23 20:21:11 +09001466 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1467
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001468 // TODO: Handle EXTERNAL
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001469
1470 // Sign or align the package if package has not been preprocessed
1471 if a.preprocessed {
1472 a.outputFile = srcApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001473 a.certificate = PresignedCertificate
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001474 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001475 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1476 // Which makes processMainCert's behavior for the empty cert string WAI.
1477 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001478 if len(certificates) != 1 {
1479 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1480 }
Colin Cross503c1d02020-01-28 14:00:53 -08001481 a.certificate = certificates[0]
Jooyung Han39ee1192020-03-23 20:21:11 +09001482 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer24978992020-05-13 15:49:21 -07001483 var lineageFile android.Path
1484 if lineage := String(a.properties.Lineage); lineage != "" {
1485 lineageFile = android.PathForModuleSrc(ctx, lineage)
1486 }
1487 SignAppPackage(ctx, signed, dexOutput, certificates, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001488 a.outputFile = signed
1489 } else {
Jooyung Han39ee1192020-03-23 20:21:11 +09001490 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001491 TransformZipAlign(ctx, alignedApk, dexOutput)
1492 a.outputFile = alignedApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001493 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001494 }
1495
1496 // TODO: Optionally compress the output apk.
1497
Jiyong Park592a6a42020-04-21 22:34:28 +09001498 if a.IsForPlatform() {
1499 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
1500 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001501
1502 // TODO: androidmk converter jni libs
1503}
1504
1505func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1506 return &a.prebuilt
1507}
1508
1509func (a *AndroidAppImport) Name() string {
1510 return a.prebuilt.Name(a.ModuleBase.Name())
1511}
1512
Dario Frenicde2a032019-10-27 00:29:22 +01001513func (a *AndroidAppImport) OutputFile() android.Path {
1514 return a.outputFile
1515}
1516
Jiyong Park618922e2020-01-08 13:35:43 +09001517func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1518 return nil
1519}
1520
Colin Cross503c1d02020-01-28 14:00:53 -08001521func (a *AndroidAppImport) Certificate() Certificate {
1522 return a.certificate
1523}
1524
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001525var dpiVariantGroupType reflect.Type
1526var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001527
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001528func initAndroidAppImportVariantGroupTypes() {
1529 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1530
1531 archNames := make([]string, len(android.ArchTypeList()))
1532 for i, archType := range android.ArchTypeList() {
1533 archNames[i] = archType.Name
1534 }
1535 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1536}
1537
1538// Populates all variant struct properties at creation time.
1539func (a *AndroidAppImport) populateAllVariantStructs() {
1540 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1541 a.AddProperties(a.dpiVariants)
1542
1543 a.archVariants = reflect.New(archVariantGroupType).Interface()
1544 a.AddProperties(a.archVariants)
1545}
1546
Jiyong Parkf7487312019-10-17 12:54:30 +09001547func (a *AndroidAppImport) Privileged() bool {
1548 return Bool(a.properties.Privileged)
1549}
1550
Jiyong Park592a6a42020-04-21 22:34:28 +09001551func (a *AndroidAppImport) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
1552 // android_app_import might have extra dependencies via uses_libs property.
1553 // Don't track the dependency as we don't automatically add those libraries
1554 // to the classpath. It should be explicitly added to java_libs property of APEX
1555 return false
1556}
1557
Colin Crossc2d24052020-05-13 11:05:02 -07001558func (a *AndroidAppImport) sdkVersion() sdkSpec {
1559 return sdkSpecFrom("")
1560}
1561
1562func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1563 return sdkSpecFrom("")
1564}
1565
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001566func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1567 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1568
1569 variantFields := make([]reflect.StructField, len(variants))
1570 for i, variant := range variants {
1571 variantFields[i] = reflect.StructField{
1572 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001573 Type: props,
1574 }
1575 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001576
1577 variantGroupStruct := reflect.StructOf(variantFields)
1578 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001579 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001580 Name: variantGroupName,
1581 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001582 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001583 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001584}
1585
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001586// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001587// DPI-specific apk source files can be specified using dpi_variants. Example:
1588//
1589// android_app_import {
1590// name: "example_import",
1591// apk: "prebuilts/example.apk",
1592// dpi_variants: {
1593// mdpi: {
1594// apk: "prebuilts/example_mdpi.apk",
1595// },
1596// xhdpi: {
1597// apk: "prebuilts/example_xhdpi.apk",
1598// },
1599// },
1600// certificate: "PRESIGNED",
1601// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001602func AndroidAppImportFactory() android.Module {
1603 module := &AndroidAppImport{}
1604 module.AddProperties(&module.properties)
1605 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001606 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001607 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001608 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001609 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001610 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001611
Jiyong Park592a6a42020-04-21 22:34:28 +09001612 android.InitApexModule(module)
Jaewoong Jung6abfbf72020-05-26 20:10:08 -07001613 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1614 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001615 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001616
1617 return module
1618}
Colin Cross50ddcc42019-05-16 12:28:22 -07001619
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001620type androidTestImportProperties struct {
1621 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1622 Preprocessed *bool
1623}
1624
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001625type AndroidTestImport struct {
1626 AndroidAppImport
1627
1628 testProperties testProperties
1629
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001630 testImportProperties androidTestImportProperties
1631
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001632 data android.Paths
1633}
1634
1635func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001636 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1637
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001638 a.generateAndroidBuildActions(ctx)
1639
1640 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1641}
1642
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001643func (a *AndroidTestImport) InstallInTestcases() bool {
1644 return true
1645}
1646
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001647// android_test_import imports a prebuilt test apk with additional processing specified in the
1648// module. DPI or arch variant configurations can be made as with android_app_import.
1649func AndroidTestImportFactory() android.Module {
1650 module := &AndroidTestImport{}
1651 module.AddProperties(&module.properties)
1652 module.AddProperties(&module.dexpreoptProperties)
1653 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1654 module.AddProperties(&module.testProperties)
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001655 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001656 module.populateAllVariantStructs()
1657 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1658 module.processVariants(ctx)
1659 })
1660
Colin Crossc80828d2020-05-06 22:29:10 -07001661 module.dexpreopter.isTest = true
1662
Jiyong Park592a6a42020-04-21 22:34:28 +09001663 android.InitApexModule(module)
Jaewoong Jung243688e2020-05-01 15:50:08 -07001664 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1665 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001666 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1667
1668 return module
1669}
1670
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001671type RuntimeResourceOverlay struct {
1672 android.ModuleBase
1673 android.DefaultableModuleBase
Roshan Pius4df2bc72020-04-27 09:42:27 -07001674 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001675 aapt
1676
Roshan Pius4df2bc72020-04-27 09:42:27 -07001677 properties RuntimeResourceOverlayProperties
1678 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001679
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001680 certificate Certificate
1681
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001682 outputFile android.Path
1683 installDir android.InstallPath
1684}
1685
1686type RuntimeResourceOverlayProperties struct {
1687 // the name of a certificate in the default certificate directory or an android_app_certificate
1688 // module name in the form ":module".
1689 Certificate *string
1690
Liz Kammer966b2f02020-05-19 16:15:25 -07001691 // Name of the signing certificate lineage file.
1692 Lineage *string
1693
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001694 // optional theme name. If specified, the overlay package will be applied
1695 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1696 Theme *string
1697
1698 // if not blank, set to the version of the sdk to compile against.
1699 // Defaults to compiling against the current platform.
1700 Sdk_version *string
1701
1702 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1703 // Defaults to sdk_version if not set.
1704 Min_sdk_version *string
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001705
1706 // list of android_library modules whose resources are extracted and linked against statically
1707 Static_libs []string
1708
1709 // list of android_app modules whose resources are extracted and linked against
1710 Resource_libs []string
Jaewoong Jungad0177b2020-04-24 15:22:40 -07001711
1712 // Names of modules to be overridden. Listed modules can only be other overlays
1713 // (in Make or Soong).
1714 // This does not completely prevent installation of the overridden overlays, but if both
1715 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1716 // from PRODUCT_PACKAGES.
1717 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001718}
1719
Jiyong Park69aeba92020-04-24 21:16:36 +09001720// RuntimeResourceOverlayModule interface is used by the apex package to gather information from
1721// a RuntimeResourceOverlay module.
1722type RuntimeResourceOverlayModule interface {
1723 android.Module
1724 OutputFile() android.Path
1725 Certificate() Certificate
1726 Theme() string
1727}
1728
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001729func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1730 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1731 if sdkDep.hasFrameworkLibs() {
1732 r.aapt.deps(ctx, sdkDep)
1733 }
1734
1735 cert := android.SrcIsModule(String(r.properties.Certificate))
1736 if cert != "" {
1737 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1738 }
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001739
1740 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1741 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001742}
1743
1744func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1745 // Compile and link resources
1746 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001747 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Pius4df2bc72020-04-27 09:42:27 -07001748 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1749 // Allow the override of "package name" and "overlay target package name"
1750 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1751 if overridden || r.overridableProperties.Package_name != nil {
1752 // The product override variable has a priority over the package_name property.
1753 if !overridden {
1754 manifestPackageName = *r.overridableProperties.Package_name
1755 }
1756 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
1757 }
1758 if r.overridableProperties.Target_package_name != nil {
1759 aaptLinkFlags = append(aaptLinkFlags,
1760 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1761 }
1762 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001763
1764 // Sign the built package
Colin Crossc2d24052020-05-13 11:05:02 -07001765 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001766 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1767 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer966b2f02020-05-19 16:15:25 -07001768 var lineageFile android.Path
1769 if lineage := String(r.properties.Lineage); lineage != "" {
1770 lineageFile = android.PathForModuleSrc(ctx, lineage)
1771 }
1772 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001773 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001774
1775 r.outputFile = signed
1776 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1777 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1778}
1779
Jiyong Park6a927c42020-01-21 02:03:43 +09001780func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1781 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001782}
1783
1784func (r *RuntimeResourceOverlay) systemModules() string {
1785 return ""
1786}
1787
Jiyong Park6a927c42020-01-21 02:03:43 +09001788func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001789 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001790 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001791 }
1792 return r.sdkVersion()
1793}
1794
Jiyong Park6a927c42020-01-21 02:03:43 +09001795func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001796 return r.sdkVersion()
1797}
1798
Jiyong Park69aeba92020-04-24 21:16:36 +09001799func (r *RuntimeResourceOverlay) Certificate() Certificate {
1800 return r.certificate
1801}
1802
1803func (r *RuntimeResourceOverlay) OutputFile() android.Path {
1804 return r.outputFile
1805}
1806
1807func (r *RuntimeResourceOverlay) Theme() string {
1808 return String(r.properties.Theme)
1809}
1810
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001811// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1812// system resources at run time.
1813func RuntimeResourceOverlayFactory() android.Module {
1814 module := &RuntimeResourceOverlay{}
1815 module.AddProperties(
1816 &module.properties,
Roshan Pius4df2bc72020-04-27 09:42:27 -07001817 &module.aaptProperties,
1818 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001819
Roshan Pius4df2bc72020-04-27 09:42:27 -07001820 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1821 android.InitDefaultableModule(module)
1822 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001823 return module
1824}
1825
Colin Cross50ddcc42019-05-16 12:28:22 -07001826type UsesLibraryProperties struct {
1827 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1828 Uses_libs []string
1829
1830 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1831 // required=false.
1832 Optional_uses_libs []string
1833
1834 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1835 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1836 Enforce_uses_libs *bool
1837}
1838
1839// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1840// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1841// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1842// with knowledge of their shared libraries.
1843type usesLibrary struct {
1844 usesLibraryProperties UsesLibraryProperties
1845}
1846
Paul Duffin250e6192019-06-07 10:44:37 +01001847func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001848 if !ctx.Config().UnbundledBuild() {
1849 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1850 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001851 // Only add these extra dependencies if the module depends on framework libs. This avoids
1852 // creating a cyclic dependency:
1853 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1854 if hasFrameworkLibs {
Colin Cross3245b2c2019-06-07 13:18:09 -07001855 // dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
1856 // to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
1857 // library to dexpreopt.
1858 ctx.AddVariationDependencies(nil, usesLibTag,
1859 "org.apache.http.legacy",
1860 "android.hidl.base-V1.0-java",
1861 "android.hidl.manager-V1.0-java")
Ulya Trafimovichc9af5382020-05-29 15:35:06 +01001862 ctx.AddVariationDependencies(nil, usesLibTag, optionalUsesLibs...)
Colin Cross3245b2c2019-06-07 13:18:09 -07001863 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001864 }
1865}
1866
1867// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1868// build.
1869func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1870 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1871 return optionalUsesLibs
1872}
1873
1874// usesLibraryPaths returns a map of module names of shared library dependencies to the paths to their dex jars.
1875func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) map[string]android.Path {
1876 usesLibPaths := make(map[string]android.Path)
1877
1878 if !ctx.Config().UnbundledBuild() {
1879 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
1880 if lib, ok := m.(Dependency); ok {
Ulyana Trafimovich5539e7b2020-06-04 14:08:17 +00001881 if dexJar := lib.DexJarBuildPath(); dexJar != nil {
Colin Cross50ddcc42019-05-16 12:28:22 -07001882 usesLibPaths[ctx.OtherModuleName(m)] = dexJar
1883 } else {
1884 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must produce a dex jar, does it have installable: true?",
1885 ctx.OtherModuleName(m))
1886 }
1887 } else if ctx.Config().AllowMissingDependencies() {
1888 ctx.AddMissingDependencies([]string{ctx.OtherModuleName(m)})
1889 } else {
1890 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library",
1891 ctx.OtherModuleName(m))
1892 }
1893 })
1894 }
1895
1896 return usesLibPaths
1897}
1898
1899// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1900// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1901// unconditionally in the future.
1902func (u *usesLibrary) enforceUsesLibraries() bool {
1903 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1904 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1905 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1906}
1907
1908// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1909// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1910func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1911 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1912
1913 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001914 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001915 Flag("--enforce-uses-libraries").
1916 Input(manifest).
1917 FlagWithOutput("-o ", outputFile)
1918
1919 for _, lib := range u.usesLibraryProperties.Uses_libs {
1920 cmd.FlagWithArg("--uses-library ", lib)
1921 }
1922
1923 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1924 cmd.FlagWithArg("--optional-uses-library ", lib)
1925 }
1926
1927 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1928
1929 return outputFile
1930}
1931
1932// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1933// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1934func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1935 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1936
1937 rule := android.NewRuleBuilder()
1938 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1939 rule.Command().
1940 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1941 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1942 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1943 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1944 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
1945
1946 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1947
1948 return outputFile
1949}