blob: 611a7d8092d97a7ef84bf18b217e02dfe8d0e69d [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 Smundak4de27a52020-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 Piusb8307962020-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 Smundak4de27a52020-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
Jaewoong Jung8cf307e2020-05-14 14:15:24 -070099var TargetCpuAbi = map[string]string{
Sasha Smundak4de27a52020-04-23 09:49:59 -0700100 "arm": "ARMEABI_V7A",
101 "arm64": "ARM64_V8A",
102 "x86": "X86",
103 "x86_64": "X86_64",
104}
105
Jaewoong Jung8cf307e2020-05-14 14:15:24 -0700106func SupportedAbis(ctx android.ModuleContext) []string {
Sasha Smundak4de27a52020-04-23 09:49:59 -0700107 abiName := func(archVar string, deviceArch string) string {
Jaewoong Jung8cf307e2020-05-14 14:15:24 -0700108 if abi, found := TargetCpuAbi[deviceArch]; found {
Sasha Smundak4de27a52020-04-23 09:49:59 -0700109 return abi
110 }
111 ctx.ModuleErrorf("Invalid %s: %s", archVar, deviceArch)
112 return "BAD_ABI"
113 }
114
115 result := []string{abiName("TARGET_ARCH", ctx.DeviceConfig().DeviceArch())}
116 if s := ctx.DeviceConfig().DeviceSecondaryArch(); s != "" {
117 result = append(result, abiName("TARGET_2ND_ARCH", s))
118 }
119 return result
120}
121
122func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
123 as.packedOutput = android.PathForModuleOut(ctx, "extracted.zip")
124 // We are assuming here that the master file in the APK
125 // set has `.apk` suffix. If it doesn't the build will fail.
126 // APK sets containing APEX files are handled elsewhere.
127 as.masterFile = ctx.ModuleName() + ".apk"
128 screenDensities := "all"
129 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
130 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
131 }
132 // TODO(asmundak): handle locales.
133 // TODO(asmundak): do we support device features
134 ctx.Build(pctx,
135 android.BuildParams{
136 Rule: extractMatchingApks,
137 Description: "Extract APKs from APK set",
138 Output: as.packedOutput,
139 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
140 Args: map[string]string{
Jaewoong Jung8cf307e2020-05-14 14:15:24 -0700141 "abis": strings.Join(SupportedAbis(ctx), ","),
Sasha Smundak4de27a52020-04-23 09:49:59 -0700142 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
143 "screen-densities": screenDensities,
144 "sdk-version": ctx.Config().PlatformSdkVersion(),
145 "stem": ctx.ModuleName(),
146 },
147 })
148 // TODO(asmundak): add this (it's wrong now, will cause copying extracted.zip)
149 /*
150 var installDir android.InstallPath
151 if Bool(as.properties.Privileged) {
152 installDir = android.PathForModuleInstall(ctx, "priv-app", as.BaseModuleName())
153 } else if ctx.InstallInTestcases() {
154 installDir = android.PathForModuleInstall(ctx, as.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
155 } else {
156 installDir = android.PathForModuleInstall(ctx, "app", as.BaseModuleName())
157 }
158 ctx.InstallFile(installDir, as.masterFile", as.packedOutput)
159 */
160}
161
162// android_app_set extracts a set of APKs based on the target device
163// configuration and installs this set as "split APKs".
164// The set will always contain `base-master.apk` and every APK built
165// to the target device. All density-specific APK will be included, too,
166// unless PRODUCT_APPT_PREBUILT_DPI is defined (should contain comma-sepearated
167// list of density names (LDPI, MDPI, HDPI, etc.)
168func AndroidApkSetFactory() android.Module {
169 module := &AndroidAppSet{}
170 module.AddProperties(&module.properties)
171 InitJavaModule(module, android.DeviceSupported)
172 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
173 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000174}
175
Colin Cross30e076a2015-04-13 13:58:27 -0700176// AndroidManifest.xml merging
177// package splits
178
Colin Crossfabb6082018-02-20 17:22:23 -0800179type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700180 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700181 Additional_certificates []string
182
183 // If set, create package-export.apk, which other packages can
184 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800185 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700186
Colin Cross16056062017-12-13 22:46:28 -0800187 // Specifies that this app should be installed to the priv-app directory,
188 // where the system will grant it additional privileges not available to
189 // normal apps.
190 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700191
192 // list of resource labels to generate individual resource packages
193 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400194
195 // Names of modules to be overridden. Listed modules can only be other binaries
196 // (in Make or Soong).
197 // This does not completely prevent installation of the overridden binaries, but if both
198 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
199 // from PRODUCT_PACKAGES.
200 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700201
202 // list of native libraries that will be provided in or alongside the resulting jar
203 Jni_libs []string `android:"arch_variant"`
204
Colin Cross76583a42020-05-06 17:51:39 -0700205 // if true, use JNI libraries that link against platform APIs even if this module sets
Colin Crossee87c602020-02-19 16:57:15 -0800206 // sdk_version.
207 Jni_uses_platform_apis *bool
208
Colin Cross76583a42020-05-06 17:51:39 -0700209 // if true, use JNI libraries that link against SDK APIs even if this module does not set
210 // sdk_version.
211 Jni_uses_sdk_apis *bool
212
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700213 // STL library to use for JNI libraries.
214 Stl *string `android:"arch_variant"`
215
Colin Crosse4246ab2019-02-05 21:55:21 -0800216 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
217 // 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 +0900218 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
219 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
220 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -0800221 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -0800222
223 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
224 // they are used from inside the APK at runtime.
225 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -0700226
227 // Forces native libraries to always be packaged into the APK,
228 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
229 // True for android_test* modules.
230 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700231
232 // If set, find and merge all NOTICE files that this module and its dependencies have and store
233 // it in the APK as an asset.
234 Embed_notices *bool
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700235
236 // cc.Coverage related properties
237 PreventInstall bool `blueprint:"mutated"`
238 HideFromMake bool `blueprint:"mutated"`
239 IsCoverageVariant bool `blueprint:"mutated"`
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100240
241 // Whether this app is considered mainline updatable or not. When set to true, this will enforce
Artur Satayev11962102020-04-16 13:43:02 +0100242 // additional rules to make sure an app can safely be updated. Default is false.
243 // Prefer using other specific properties if build behaviour must be changed; avoid using this
244 // flag for anything but neverallow rules (unless the behaviour change is invisible to owners).
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100245 Updatable *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700246}
247
Jaewoong Jung525443a2019-02-28 15:35:54 -0800248// android_app properties that can be overridden by override_android_app
249type overridableAppProperties struct {
250 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
251 // or an android_app_certificate module name in the form ":module".
252 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700253
Liz Kammer70dd74d2020-05-07 13:24:05 -0700254 // Name of the signing certificate lineage file.
255 Lineage *string
256
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700257 // the package name of this app. The package name in the manifest file is used if one was not given.
258 Package_name *string
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800259
260 // the logging parent of this app.
261 Logging_parent *string
Jaewoong Jung525443a2019-02-28 15:35:54 -0800262}
263
Roshan Piusb8307962020-04-27 09:42:27 -0700264// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
265type OverridableRuntimeResourceOverlayProperties struct {
266 // the package name of this app. The package name in the manifest file is used if one was not given.
267 Package_name *string
268
269 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
270 Target_package_name *string
271}
272
Colin Cross30e076a2015-04-13 13:58:27 -0700273type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700274 Library
275 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800276 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700277
Colin Cross50ddcc42019-05-16 12:28:22 -0700278 usesLibrary usesLibrary
279
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900280 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700281
Colin Crossfabb6082018-02-20 17:22:23 -0800282 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700283
Jaewoong Jung525443a2019-02-28 15:35:54 -0800284 overridableAppProperties overridableAppProperties
285
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700286 installJniLibs []jniLib
287 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700288
289 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800290
291 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
292 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800293
Colin Cross70dda7e2019-10-01 22:05:35 -0700294 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700295
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700296 onDeviceDir string
297
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800298 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700299
300 noticeOutputs android.NoticeOutputs
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900301
302 overriddenManifestPackageName string
Artur Satayevd9b503a2020-04-27 19:05:28 +0100303
304 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800305}
306
Martin Stjernholm6d415272020-01-31 17:10:36 +0000307func (a *AndroidApp) IsInstallable() bool {
308 return Bool(a.properties.Installable)
309}
310
Colin Cross89c31582018-04-30 15:55:11 -0700311func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
312 return nil
313}
314
Colin Cross66f78822018-05-02 12:58:28 -0700315func (a *AndroidApp) ExportedStaticPackages() android.Paths {
316 return nil
317}
318
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900319func (a *AndroidApp) OutputFile() android.Path {
320 return a.outputFile
321}
322
Colin Cross503c1d02020-01-28 14:00:53 -0800323func (a *AndroidApp) Certificate() Certificate {
324 return a.certificate
325}
326
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700327func (a *AndroidApp) JniCoverageOutputs() android.Paths {
328 return a.jniCoverageOutputs
329}
330
Colin Crossa97c5d32018-03-28 14:58:31 -0700331var _ AndroidLibraryDependency = (*AndroidApp)(nil)
332
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900333type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800334 Pem, Key android.Path
335 presigned bool
336}
337
338var presignedCertificate = Certificate{presigned: true}
339
340func (c Certificate) AndroidMkString() string {
341 if c.presigned {
342 return "PRESIGNED"
343 } else {
344 return c.Pem.String()
345 }
Colin Cross30e076a2015-04-13 13:58:27 -0700346}
347
Colin Cross46c9b8b2017-06-22 16:51:17 -0700348func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
349 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700350
Jiyong Park6a927c42020-01-21 02:03:43 +0900351 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700352 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
353 }
354
Paul Duffin250e6192019-06-07 10:44:37 +0100355 sdkDep := decodeSdkDep(ctx, sdkContext(a))
356 if sdkDep.hasFrameworkLibs() {
357 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700358 }
Colin Crossa4f08812018-10-02 22:03:40 -0700359
Colin Cross1dd9c442020-05-08 11:20:24 -0700360 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
361
362 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
363 ctx.PropertyErrorf("jni_uses_sdk_apis",
364 "can only be set for modules that do not set sdk_version")
365 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
366 ctx.PropertyErrorf("jni_uses_platform_apis",
367 "can only be set for modules that set sdk_version")
368 }
369
Peter Collingbournead84f972019-12-17 16:46:18 -0800370 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700371 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700372 variation := append(jniTarget.Variations(),
373 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Cross01fd7cc2020-02-19 16:54:04 -0800374
375 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
376 // unless jni_uses_platform_apis is set.
Colin Crosseb032962020-05-13 11:05:02 -0700377 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
378 // have stable APIs through the VNDK.
379 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
380 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross76583a42020-05-06 17:51:39 -0700381 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Cross01fd7cc2020-02-19 16:54:04 -0800382 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
383 }
Colin Crossa4f08812018-10-02 22:03:40 -0700384 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
385 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700386
Paul Duffin250e6192019-06-07 10:44:37 +0100387 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700388}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700389
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700390func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800391 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700392 if cert != "" {
393 ctx.AddDependency(ctx.Module(), certificateTag, cert)
394 }
395
396 for _, cert := range a.appProperties.Additional_certificates {
397 cert = android.SrcIsModule(cert)
398 if cert != "" {
399 ctx.AddDependency(ctx.Module(), certificateTag, cert)
400 } else {
401 ctx.PropertyErrorf("additional_certificates",
402 `must be names of android_app_certificate modules in the form ":module"`)
403 }
404 }
Colin Cross30e076a2015-04-13 13:58:27 -0700405}
406
Jeongik Cha538c0d02019-07-11 15:54:27 +0900407func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
408 a.generateAndroidBuildActions(ctx)
409}
410
Colin Cross46c9b8b2017-06-22 16:51:17 -0700411func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100412 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700413 a.generateAndroidBuildActions(ctx)
414}
415
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100416func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
417 if Bool(a.appProperties.Updatable) {
418 if !a.sdkVersion().stable() {
419 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
420 }
Artur Satayev11962102020-04-16 13:43:02 +0100421 if String(a.deviceProperties.Min_sdk_version) == "" {
422 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
423 }
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100424 }
425
426 a.checkPlatformAPI(ctx)
427 a.checkSdkVersions(ctx)
428}
429
Sasha Smundak6ad77252019-05-01 13:16:22 -0700430// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800431// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700432func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900433 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800434 if err != nil {
435 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
436 }
437
Jiyong Park52cd06f2019-11-11 10:14:32 +0900438 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
439 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800440}
441
Colin Cross43f08db2018-11-12 10:13:39 -0800442// Returns whether this module should have the dex file stored uncompressed in the APK.
443func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800444 if Bool(a.appProperties.Use_embedded_dex) {
445 return true
446 }
447
Colin Cross53a87f52019-06-25 13:35:30 -0700448 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
449 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900450 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000451 return true
452 }
453
Colin Cross53a87f52019-06-25 13:35:30 -0700454 if ctx.Config().UnbundledBuild() {
455 return false
456 }
457
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700458 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700459}
460
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700461func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
462 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900463 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700464}
465
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900466func (a *AndroidApp) OverriddenManifestPackageName() string {
467 return a.overriddenManifestPackageName
468}
469
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800470func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000471 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
472
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700473 // Ask manifest_fixer to add or update the application element indicating this app has no code.
474 a.aapt.hasNoCode = !a.hasCode(ctx)
475
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800476 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800477
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800478 // 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 -0800479 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700480 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800481 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700482 }
483
Dan Willemsen72be5902018-10-24 20:24:57 -0700484 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
485 // Product AAPT config
486 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800487 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700488 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700489
Dan Willemsen72be5902018-10-24 20:24:57 -0700490 // Product AAPT preferred config
491 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800492 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700493 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700494 }
495
Jiyong Park7f67f482019-01-05 12:57:48 +0900496 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700497 if overridden || a.overridableAppProperties.Package_name != nil {
498 // The product override variable has a priority over the package_name property.
499 if !overridden {
500 manifestPackageName = *a.overridableAppProperties.Package_name
501 }
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800502 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900503 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900504 }
505
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800506 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
507
Colin Crosse560c4a2019-03-19 16:03:11 -0700508 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700509 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800510 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800511 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700512
Colin Cross46c9b8b2017-06-22 16:51:17 -0700513 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700514 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800515}
Colin Cross30e076a2015-04-13 13:58:27 -0700516
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800517func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700518 var staticLibProguardFlagFiles android.Paths
519 ctx.VisitDirectDeps(func(m android.Module) {
520 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
521 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
522 }
523 })
524
525 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
526
527 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
528 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800529}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800530
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800531func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
Colin Cross43f08db2018-11-12 10:13:39 -0800532
533 var installDir string
534 if ctx.ModuleName() == "framework-res" {
535 // framework-res.apk is installed as system/framework/framework-res.apk
536 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900537 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800538 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800539 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800540 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800541 }
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800542 a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000543 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -0700544
545 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
546 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
547 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
548 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
549 a.dexpreopter.manifestFile = a.mergedManifestFile
550
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000551 a.deviceProperties.UncompressDex = a.dexpreopter.uncompressedDex
Colin Cross5a0dcd52018-10-05 14:20:06 -0700552
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800553 if ctx.ModuleName() != "framework-res" {
554 a.Module.compile(ctx, a.aaptSrcJar)
555 }
Colin Cross30e076a2015-04-13 13:58:27 -0700556
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800557 return a.maybeStrippedDexJarFile
558}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800559
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800560func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700561 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700562 if len(jniLibs) > 0 {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700563 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700564 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Sasha Smundak6ad77252019-05-01 13:16:22 -0700565 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700566 for _, jni := range jniLibs {
567 if jni.coverageFile.Valid() {
Jaewoong Junge62e5942020-04-07 13:07:55 -0700568 // Only collect coverage for the first target arch if this is a multilib target.
569 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
570 // data file path collisions since the current coverage file path format doesn't contain
571 // arch-related strings. This is fine for now though; the code coverage team doesn't use
572 // multi-arch targets such as test_suite_* for coverage collections yet.
573 //
574 // Work with the team to come up with a new format that handles multilib modules properly
575 // and change this.
576 if len(ctx.Config().Targets[android.Android]) == 1 ||
577 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
578 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
579 }
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700580 }
581 }
Colin Crossa4f08812018-10-02 22:03:40 -0700582 } else {
583 a.installJniLibs = jniLibs
584 }
585 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800586 return jniJarFile
587}
Colin Crossa4f08812018-10-02 22:03:40 -0700588
Jaewoong Jung0949f312019-09-11 10:25:18 -0700589func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700590 // Collect NOTICE files from all dependencies.
591 seenModules := make(map[android.Module]bool)
592 noticePathSet := make(map[android.Path]bool)
593
594 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
595 // Have we already seen this?
596 if _, ok := seenModules[child]; ok {
597 return false
598 }
599 seenModules[child] = true
600
601 // Skip host modules.
602 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
603 return false
604 }
605
606 path := child.(android.Module).NoticeFile()
607 if path.Valid() {
608 noticePathSet[path.Path()] = true
609 }
610 return true
611 })
612
613 // If the app has one, add it too.
614 if a.NoticeFile().Valid() {
615 noticePathSet[a.NoticeFile().Path()] = true
616 }
617
618 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700619 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700620 }
621 var noticePaths []android.Path
622 for path := range noticePathSet {
623 noticePaths = append(noticePaths, path)
624 }
625 sort.Slice(noticePaths, func(i, j int) bool {
626 return noticePaths[i].String() < noticePaths[j].String()
627 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700628
Jaewoong Jung0949f312019-09-11 10:25:18 -0700629 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700630}
631
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700632// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
633// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
634func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
635 if android.SrcIsModule(certPropValue) == "" {
636 var mainCert Certificate
637 if certPropValue != "" {
638 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
639 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800640 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
641 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700642 }
643 } else {
644 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800645 mainCert = Certificate{
646 Pem: pem,
647 Key: key,
648 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700649 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700650 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700651 }
652
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700653 if !m.Platform() {
654 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900655 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
656 if strings.HasPrefix(certPath, systemCertPath) {
657 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
658 whitelist := ctx.Config().EnforceSystemCertificateWhitelist()
659
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700660 if enforceSystemCert && !inList(m.Name(), whitelist) {
Jeongik Chac9464142019-01-07 12:07:27 +0900661 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
662 }
663 }
664 }
665
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700666 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800667}
668
Jooyung Han65cd0f02020-03-23 20:21:11 +0900669func (a *AndroidApp) InstallApkName() string {
670 return a.installApkName
671}
672
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800673func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700674 var apkDeps android.Paths
675
Jeongik Cha538c0d02019-07-11 15:54:27 +0900676 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
677 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
678
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800679 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800680 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800681
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700682 if ctx.ModuleName() == "framework-res" {
683 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700684 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900685 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700686 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
687 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800688 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700689 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700690 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700691 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700692 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700693
Jaewoong Jung0949f312019-09-11 10:25:18 -0700694 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700695 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
696 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
697 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700698
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800699 // Process all building blocks, from AAPT to certificates.
700 a.aaptBuildActions(ctx)
701
Colin Cross50ddcc42019-05-16 12:28:22 -0700702 if a.usesLibrary.enforceUsesLibraries() {
703 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
704 apkDeps = append(apkDeps, manifestCheckFile)
705 }
706
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800707 a.proguardBuildActions(ctx)
708
709 dexJarFile := a.dexBuildActions(ctx)
710
Colin Crosseb032962020-05-13 11:05:02 -0700711 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800712 jniJarFile := a.jniBuildActions(jniLibs, ctx)
713
714 if ctx.Failed() {
715 return
716 }
717
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700718 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
719 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800720
721 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800722 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Songchun Fan688de9a2020-03-24 20:32:24 -0700723 v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature)
724 var v4SignatureFile android.WritablePath = nil
725 if v4SigningRequested {
726 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig")
727 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700728 var lineageFile android.Path
729 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
730 lineageFile = android.PathForModuleSrc(ctx, lineage)
731 }
732 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800733 a.outputFile = packageFile
Songchun Fan688de9a2020-03-24 20:32:24 -0700734 if v4SigningRequested {
735 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
736 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800737
Colin Crosse560c4a2019-03-19 16:03:11 -0700738 for _, split := range a.aapt.splits {
739 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800740 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Songchun Fan688de9a2020-03-24 20:32:24 -0700741 if v4SigningRequested {
742 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig")
743 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700744 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700745 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
Songchun Fan688de9a2020-03-24 20:32:24 -0700746 if v4SigningRequested {
747 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
748 }
Colin Crosse560c4a2019-03-19 16:03:11 -0700749 }
750
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800751 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700752 bundleFile := android.PathForModuleOut(ctx, "base.zip")
753 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
754 a.bundleFile = bundleFile
755
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800756 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900757 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
758 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
759 for _, extra := range a.extraOutputFiles {
760 ctx.InstallFile(a.installDir, extra.Base(), extra)
761 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800762 }
Artur Satayevd9b503a2020-04-27 19:05:28 +0100763
764 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700765}
766
Colin Crosseb032962020-05-13 11:05:02 -0700767type appDepsInterface interface {
768 sdkVersion() sdkSpec
769 minSdkVersion() sdkSpec
770 RequiresStableAPIs(ctx android.BaseModuleContext) bool
771}
772
773func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
774 shouldCollectRecursiveNativeDeps bool,
Colin Cross1c93c292020-02-15 10:38:00 -0800775 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crosseb032962020-05-13 11:05:02 -0700776
Colin Crossa4f08812018-10-02 22:03:40 -0700777 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900778 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800779 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700780
Colin Crosseb032962020-05-13 11:05:02 -0700781 if checkNativeSdkVersion {
782 checkNativeSdkVersion = app.sdkVersion().specified() &&
783 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
784 }
785
Peter Collingbournead84f972019-12-17 16:46:18 -0800786 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700787 otherName := ctx.OtherModuleName(module)
788 tag := ctx.OtherModuleDependencyTag(module)
789
Peter Collingbournead84f972019-12-17 16:46:18 -0800790 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700791 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800792 if dep.IsNdk() || dep.IsStubs() {
793 return false
794 }
795
Colin Crossa4f08812018-10-02 22:03:40 -0700796 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800797 path := lib.Path()
798 if seenModulePaths[path.String()] {
799 return false
800 }
801 seenModulePaths[path.String()] = true
802
Colin Crosseb032962020-05-13 11:05:02 -0700803 if checkNativeSdkVersion && dep.SdkVersion() == "" {
804 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
805 otherName)
Colin Cross1c93c292020-02-15 10:38:00 -0800806 }
807
Colin Crossa4f08812018-10-02 22:03:40 -0700808 if lib.Valid() {
809 jniLibs = append(jniLibs, jniLib{
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700810 name: ctx.OtherModuleName(module),
811 path: path,
812 target: module.Target(),
813 coverageFile: dep.CoverageOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700814 })
815 } else {
816 ctx.ModuleErrorf("dependency %q missing output file", otherName)
817 }
818 } else {
819 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700820 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800821
822 return shouldCollectRecursiveNativeDeps
823 }
824
825 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700826 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900827 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700828 } else {
829 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
830 }
Colin Crossa4f08812018-10-02 22:03:40 -0700831 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800832
833 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700834 })
835
Colin Crossbd01e2a2018-10-04 15:21:03 -0700836 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700837}
838
Artur Satayevd9b503a2020-04-27 19:05:28 +0100839func (a *AndroidApp) walkPayloadDeps(ctx android.ModuleContext,
840 do func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool)) {
841
842 ctx.WalkDeps(func(child, parent android.Module) bool {
843 isExternal := !a.DepIsInSameApex(ctx, child)
844 if am, ok := child.(android.ApexModule); ok {
845 do(ctx, parent, am, isExternal)
846 }
847 return !isExternal
848 })
849}
850
851func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
852 if ctx.Host() {
853 return
854 }
855
856 depsInfo := android.DepNameToDepInfoMap{}
857 a.walkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) {
858 depName := to.Name()
859 if info, exist := depsInfo[depName]; exist {
860 info.From = append(info.From, from.Name())
861 info.IsExternal = info.IsExternal && externalDep
862 depsInfo[depName] = info
863 } else {
864 toMinSdkVersion := "(no version)"
865 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
866 if v := m.MinSdkVersion(); v != "" {
867 toMinSdkVersion = v
868 }
869 }
870 depsInfo[depName] = android.ApexModuleDepInfo{
871 To: depName,
872 From: []string{from.Name()},
873 IsExternal: externalDep,
874 MinSdkVersion: toMinSdkVersion,
875 }
876 }
877 })
878
879 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
880}
881
Colin Cross0ea8ba82019-06-06 14:33:29 -0700882func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800883 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
884 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000885 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800886 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800887 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800888}
889
Jiyong Park0f80c182020-01-31 02:49:53 +0900890func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
891 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
892 return true
893 }
894 return a.Library.DepIsInSameApex(ctx, dep)
895}
896
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900897// For OutputFileProducer interface
898func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
899 switch tag {
900 case ".aapt.srcjar":
901 return []android.Path{a.aaptSrcJar}, nil
902 }
903 return a.Library.OutputFiles(tag)
904}
905
Jiyong Parkf7487312019-10-17 12:54:30 +0900906func (a *AndroidApp) Privileged() bool {
907 return Bool(a.appProperties.Privileged)
908}
909
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700910func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
911 return ctx.Device() && (ctx.DeviceConfig().NativeCoverageEnabled() || ctx.DeviceConfig().ClangCoverageEnabled())
912}
913
914func (a *AndroidApp) PreventInstall() {
915 a.appProperties.PreventInstall = true
916}
917
918func (a *AndroidApp) HideFromMake() {
919 a.appProperties.HideFromMake = true
920}
921
922func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
923 a.appProperties.IsCoverageVariant = coverage
924}
925
926var _ cc.Coverage = (*AndroidApp)(nil)
927
Colin Cross1b16b0e2019-02-12 14:41:32 -0800928// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -0700929func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -0700930 module := &AndroidApp{}
931
Sasha Smundak2057f822019-04-16 17:16:58 -0700932 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross66dbc0b2017-12-28 12:23:20 -0800933 module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
934
Colin Crossae5caf52018-05-22 11:11:52 -0700935 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -0700936 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -0700937
Colin Cross36242852017-06-23 15:06:31 -0700938 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -0700939 &module.Module.properties,
940 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -0800941 &module.Module.dexpreoptProperties,
Colin Crossa97c5d32018-03-28 14:58:31 -0700942 &module.Module.protoProperties,
943 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -0800944 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -0700945 &module.overridableAppProperties,
946 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -0700947
Colin Crossa9d8bee2018-10-02 13:59:46 -0700948 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
949 return class == android.Device && ctx.Config().DevicePrefer32BitApps()
950 })
951
Colin Crossa4f08812018-10-02 22:03:40 -0700952 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
953 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800954 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +0900955 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -0700956
Colin Cross36242852017-06-23 15:06:31 -0700957 return module
Colin Cross30e076a2015-04-13 13:58:27 -0700958}
Colin Crossae5caf52018-05-22 11:11:52 -0700959
960type appTestProperties struct {
961 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700962
963 // if specified, the instrumentation target package name in the manifest is overwritten by it.
964 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -0700965}
966
967type AndroidTest struct {
968 AndroidApp
969
970 appTestProperties appTestProperties
971
972 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -0700973
974 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -0700975 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -0700976}
977
Jaewoong Jung0949f312019-09-11 10:25:18 -0700978func (a *AndroidTest) InstallInTestcases() bool {
979 return true
980}
981
Colin Crossae5caf52018-05-22 11:11:52 -0700982func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncyleeba606252020-04-30 14:57:06 +0800983 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700984 if a.appTestProperties.Instrumentation_target_package != nil {
985 a.additionalAaptFlags = append(a.additionalAaptFlags,
986 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
987 } else if a.appTestProperties.Instrumentation_for != nil {
988 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800989 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
990 if overridden {
991 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
992 }
993 }
Colin Crossae5caf52018-05-22 11:11:52 -0700994 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -0700995
easoncyleeba606252020-04-30 14:57:06 +0800996 for _, module := range a.testProperties.Test_mainline_modules {
997 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
998 }
999
Jaewoong Jung39982342020-01-14 10:27:18 -08001000 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncyleeba606252020-04-30 14:57:06 +08001001 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001002 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001003 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001004}
1005
Jaewoong Jung39982342020-01-14 10:27:18 -08001006func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1007 if testConfig == nil {
1008 return nil
1009 }
1010
1011 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1012 rule := android.NewRuleBuilder()
1013 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1014 fixNeeded := false
1015
1016 if ctx.ModuleName() != a.installApkName {
1017 fixNeeded = true
1018 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1019 }
1020
1021 if a.overridableAppProperties.Package_name != nil {
1022 fixNeeded = true
1023 command.FlagWithInput("--manifest ", a.manifestPath).
1024 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1025 }
1026
1027 if fixNeeded {
1028 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1029 return fixedConfig
1030 }
1031 return testConfig
1032}
1033
Colin Cross303e21f2018-08-07 16:49:25 -07001034func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001035 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001036}
1037
1038func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1039 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001040 if a.appTestProperties.Instrumentation_for != nil {
1041 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1042 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1043 // use instrumentationForTag instead of libTag.
1044 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1045 }
Colin Crossae5caf52018-05-22 11:11:52 -07001046}
1047
Colin Cross1b16b0e2019-02-12 14:41:32 -08001048// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1049// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001050func AndroidTestFactory() android.Module {
1051 module := &AndroidTest{}
1052
Sasha Smundak2057f822019-04-16 17:16:58 -07001053 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001054
1055 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001056 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001057 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001058 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001059 module.Module.dexpreopter.isTest = true
Colin Crossae5caf52018-05-22 11:11:52 -07001060
1061 module.AddProperties(
1062 &module.Module.properties,
1063 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001064 &module.Module.dexpreoptProperties,
Colin Crossae5caf52018-05-22 11:11:52 -07001065 &module.Module.protoProperties,
1066 &module.aaptProperties,
1067 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001068 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001069 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001070 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001071 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001072
Colin Crossa4f08812018-10-02 22:03:40 -07001073 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1074 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001075 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001076 return module
1077}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001078
Colin Cross252fc6f2018-10-04 15:22:03 -07001079type appTestHelperAppProperties struct {
1080 // list of compatibility suites (for example "cts", "vts") that the module should be
1081 // installed into.
1082 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001083
1084 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1085 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1086 // explicitly.
1087 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001088}
1089
1090type AndroidTestHelperApp struct {
1091 AndroidApp
1092
1093 appTestHelperAppProperties appTestHelperAppProperties
1094}
1095
Jaewoong Jung326a9412019-11-21 10:41:00 -08001096func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1097 return true
1098}
1099
Colin Cross1b16b0e2019-02-12 14:41:32 -08001100// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1101// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1102// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001103func AndroidTestHelperAppFactory() android.Module {
1104 module := &AndroidTestHelperApp{}
1105
Sasha Smundak2057f822019-04-16 17:16:58 -07001106 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001107
1108 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001109 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001110 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001111 module.Module.dexpreopter.isTest = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001112
1113 module.AddProperties(
1114 &module.Module.properties,
1115 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001116 &module.Module.dexpreoptProperties,
Colin Cross252fc6f2018-10-04 15:22:03 -07001117 &module.Module.protoProperties,
1118 &module.aaptProperties,
1119 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001120 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001121 &module.overridableAppProperties,
1122 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001123
1124 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1125 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001126 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001127 return module
1128}
1129
Colin Crossbd01e2a2018-10-04 15:21:03 -07001130type AndroidAppCertificate struct {
1131 android.ModuleBase
1132 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001133 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001134}
1135
1136type AndroidAppCertificateProperties struct {
1137 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1138 Certificate *string
1139}
1140
Colin Cross1b16b0e2019-02-12 14:41:32 -08001141// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1142// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001143func AndroidAppCertificateFactory() android.Module {
1144 module := &AndroidAppCertificate{}
1145 module.AddProperties(&module.properties)
1146 android.InitAndroidModule(module)
1147 return module
1148}
1149
Colin Crossbd01e2a2018-10-04 15:21:03 -07001150func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1151 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001152 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001153 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1154 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001155 }
1156}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001157
1158type OverrideAndroidApp struct {
1159 android.ModuleBase
1160 android.OverrideModuleBase
1161}
1162
1163func (i *OverrideAndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1164 // All the overrides happen in the base module.
1165 // TODO(jungjw): Check the base module type.
1166}
1167
1168// override_android_app is used to create an android_app module based on another android_app by overriding
1169// some of its properties.
1170func OverrideAndroidAppModuleFactory() android.Module {
1171 m := &OverrideAndroidApp{}
1172 m.AddProperties(&overridableAppProperties{})
1173
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001174 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001175 android.InitOverrideModule(m)
1176 return m
1177}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001178
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001179type OverrideAndroidTest struct {
1180 android.ModuleBase
1181 android.OverrideModuleBase
1182}
1183
1184func (i *OverrideAndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1185 // All the overrides happen in the base module.
1186 // TODO(jungjw): Check the base module type.
1187}
1188
1189// override_android_test is used to create an android_app module based on another android_test by overriding
1190// some of its properties.
1191func OverrideAndroidTestModuleFactory() android.Module {
1192 m := &OverrideAndroidTest{}
1193 m.AddProperties(&overridableAppProperties{})
1194 m.AddProperties(&appTestProperties{})
1195
1196 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1197 android.InitOverrideModule(m)
1198 return m
1199}
1200
Roshan Piusb8307962020-04-27 09:42:27 -07001201type OverrideRuntimeResourceOverlay struct {
1202 android.ModuleBase
1203 android.OverrideModuleBase
1204}
1205
1206func (i *OverrideRuntimeResourceOverlay) 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_runtime_resource_overlay is used to create a module based on another
1212// runtime_resource_overlay module by overriding some of its properties.
1213func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1214 m := &OverrideRuntimeResourceOverlay{}
1215 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1216
1217 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1218 android.InitOverrideModule(m)
1219 return m
1220}
1221
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001222type AndroidAppImport struct {
1223 android.ModuleBase
1224 android.DefaultableModuleBase
1225 prebuilt android.Prebuilt
1226
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001227 properties AndroidAppImportProperties
1228 dpiVariants interface{}
1229 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001230
1231 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001232 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001233
1234 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001235
1236 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001237
Colin Cross70dda7e2019-10-01 22:05:35 -07001238 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001239}
1240
1241type AndroidAppImportProperties struct {
1242 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001243 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001244
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001245 // The name of a certificate in the default certificate directory or an android_app_certificate
1246 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001247 Certificate *string
1248
1249 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1250 // be set for presigned modules.
1251 Presigned *bool
1252
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001253 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1254 // need to either specify a specific certificate or be presigned.
1255 Default_dev_cert *bool
1256
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001257 // Specifies that this app should be installed to the priv-app directory,
1258 // where the system will grant it additional privileges not available to
1259 // normal apps.
1260 Privileged *bool
1261
1262 // Names of modules to be overridden. Listed modules can only be other binaries
1263 // (in Make or Soong).
1264 // This does not completely prevent installation of the overridden binaries, but if both
1265 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1266 // from PRODUCT_PACKAGES.
1267 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001268
1269 // Optional name for the installed app. If unspecified, it is derived from the module name.
1270 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001271}
1272
Martin Stjernholm6d415272020-01-31 17:10:36 +00001273func (a *AndroidAppImport) IsInstallable() bool {
1274 return true
1275}
1276
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001277// Updates properties with variant-specific values.
1278func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001279 config := ctx.Config()
1280
1281 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1282 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1283 // overwrites everything else.
1284 // TODO(jungjw): Can we optimize this by making it priority order?
1285 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001286 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001287 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001288 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001289 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001290 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001291
1292 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1293 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1294 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001295}
1296
Colin Cross1184b642019-12-30 18:43:07 -08001297func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001298 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001299 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1300 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001301 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001302 }
1303
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001304 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1305 if err != nil {
1306 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1307 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1308 } else {
1309 panic(err)
1310 }
1311 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001312}
1313
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001314func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1315 cert := android.SrcIsModule(String(a.properties.Certificate))
1316 if cert != "" {
1317 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1318 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001319
Paul Duffin250e6192019-06-07 10:44:37 +01001320 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001321}
1322
1323func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1324 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001325 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1326 // with them may invalidate pre-existing signature data.
1327 if ctx.InstallInTestcases() && Bool(a.properties.Presigned) {
1328 ctx.Build(pctx, android.BuildParams{
1329 Rule: android.Cp,
1330 Output: outputPath,
1331 Input: inputPath,
1332 })
1333 return
1334 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001335 rule := android.NewRuleBuilder()
1336 rule.Command().
1337 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001338 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001339 FlagWithInput("-i ", inputPath).
1340 FlagWithOutput("-o ", outputPath).
1341 FlagWithArg("-0 ", "'lib/**/*.so'").
1342 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1343 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1344}
1345
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001346// Returns whether this module should have the dex file stored uncompressed in the APK.
1347func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
1348 if ctx.Config().UnbundledBuild() {
1349 return false
1350 }
1351
1352 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001353 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001354 return true
1355 }
1356
1357 return shouldUncompressDex(ctx, &a.dexpreopter)
1358}
1359
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001360func (a *AndroidAppImport) uncompressDex(
1361 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1362 rule := android.NewRuleBuilder()
1363 rule.Command().
1364 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001365 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001366 FlagWithInput("-i ", inputPath).
1367 FlagWithOutput("-o ", outputPath).
1368 FlagWithArg("-0 ", "'classes*.dex'").
1369 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1370 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1371}
1372
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001373func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001374 a.generateAndroidBuildActions(ctx)
1375}
1376
Jooyung Han65cd0f02020-03-23 20:21:11 +09001377func (a *AndroidAppImport) InstallApkName() string {
1378 return a.BaseModuleName()
1379}
1380
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001381func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001382 numCertPropsSet := 0
1383 if String(a.properties.Certificate) != "" {
1384 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001385 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001386 if Bool(a.properties.Presigned) {
1387 numCertPropsSet++
1388 }
1389 if Bool(a.properties.Default_dev_cert) {
1390 numCertPropsSet++
1391 }
1392 if numCertPropsSet != 1 {
1393 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001394 }
1395
Colin Crosseb032962020-05-13 11:05:02 -07001396 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001397
1398 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001399 // TODO: LOCAL_PACKAGE_SPLITS
1400
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001401 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001402
1403 if a.usesLibrary.enforceUsesLibraries() {
1404 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1405 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001406
1407 // TODO: Install or embed JNI libraries
1408
1409 // Uncompress JNI libraries in the apk
1410 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1411 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1412
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001413 var installDir android.InstallPath
1414 if Bool(a.properties.Privileged) {
1415 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001416 } else if ctx.InstallInTestcases() {
1417 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001418 } else {
1419 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1420 }
1421
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001422 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001423 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001424 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001425
1426 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1427 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1428 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1429 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1430
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001431 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001432 if a.dexpreopter.uncompressedDex {
1433 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1434 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1435 dexOutput = dexUncompressed
1436 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001437
Jooyung Han65cd0f02020-03-23 20:21:11 +09001438 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1439
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001440 // Sign or align the package
1441 // TODO: Handle EXTERNAL
1442 if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001443 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1444 // Which makes processMainCert's behavior for the empty cert string WAI.
1445 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001446 if len(certificates) != 1 {
1447 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1448 }
Colin Cross503c1d02020-01-28 14:00:53 -08001449 a.certificate = certificates[0]
Jooyung Han65cd0f02020-03-23 20:21:11 +09001450 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer70dd74d2020-05-07 13:24:05 -07001451 SignAppPackage(ctx, signed, dexOutput, certificates, nil, nil)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001452 a.outputFile = signed
1453 } else {
Jooyung Han65cd0f02020-03-23 20:21:11 +09001454 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001455 TransformZipAlign(ctx, alignedApk, dexOutput)
1456 a.outputFile = alignedApk
Colin Cross503c1d02020-01-28 14:00:53 -08001457 a.certificate = presignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001458 }
1459
1460 // TODO: Optionally compress the output apk.
1461
Jooyung Han65cd0f02020-03-23 20:21:11 +09001462 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001463
1464 // TODO: androidmk converter jni libs
1465}
1466
1467func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1468 return &a.prebuilt
1469}
1470
1471func (a *AndroidAppImport) Name() string {
1472 return a.prebuilt.Name(a.ModuleBase.Name())
1473}
1474
Dario Frenicde2a032019-10-27 00:29:22 +01001475func (a *AndroidAppImport) OutputFile() android.Path {
1476 return a.outputFile
1477}
1478
Jiyong Park618922e2020-01-08 13:35:43 +09001479func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1480 return nil
1481}
1482
Colin Cross503c1d02020-01-28 14:00:53 -08001483func (a *AndroidAppImport) Certificate() Certificate {
1484 return a.certificate
1485}
1486
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001487var dpiVariantGroupType reflect.Type
1488var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001489
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001490func initAndroidAppImportVariantGroupTypes() {
1491 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1492
1493 archNames := make([]string, len(android.ArchTypeList()))
1494 for i, archType := range android.ArchTypeList() {
1495 archNames[i] = archType.Name
1496 }
1497 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1498}
1499
1500// Populates all variant struct properties at creation time.
1501func (a *AndroidAppImport) populateAllVariantStructs() {
1502 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1503 a.AddProperties(a.dpiVariants)
1504
1505 a.archVariants = reflect.New(archVariantGroupType).Interface()
1506 a.AddProperties(a.archVariants)
1507}
1508
Jiyong Parkf7487312019-10-17 12:54:30 +09001509func (a *AndroidAppImport) Privileged() bool {
1510 return Bool(a.properties.Privileged)
1511}
1512
Colin Crosseb032962020-05-13 11:05:02 -07001513func (a *AndroidAppImport) sdkVersion() sdkSpec {
1514 return sdkSpecFrom("")
1515}
1516
1517func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1518 return sdkSpecFrom("")
1519}
1520
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001521func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1522 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1523
1524 variantFields := make([]reflect.StructField, len(variants))
1525 for i, variant := range variants {
1526 variantFields[i] = reflect.StructField{
1527 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001528 Type: props,
1529 }
1530 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001531
1532 variantGroupStruct := reflect.StructOf(variantFields)
1533 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001534 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001535 Name: variantGroupName,
1536 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001537 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001538 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001539}
1540
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001541// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001542// DPI-specific apk source files can be specified using dpi_variants. Example:
1543//
1544// android_app_import {
1545// name: "example_import",
1546// apk: "prebuilts/example.apk",
1547// dpi_variants: {
1548// mdpi: {
1549// apk: "prebuilts/example_mdpi.apk",
1550// },
1551// xhdpi: {
1552// apk: "prebuilts/example_xhdpi.apk",
1553// },
1554// },
1555// certificate: "PRESIGNED",
1556// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001557func AndroidAppImportFactory() android.Module {
1558 module := &AndroidAppImport{}
1559 module.AddProperties(&module.properties)
1560 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001561 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001562 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001563 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001564 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001565 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001566
1567 InitJavaModule(module, android.DeviceSupported)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001568 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001569
1570 return module
1571}
Colin Cross50ddcc42019-05-16 12:28:22 -07001572
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001573type AndroidTestImport struct {
1574 AndroidAppImport
1575
1576 testProperties testProperties
1577
1578 data android.Paths
1579}
1580
1581func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1582 a.generateAndroidBuildActions(ctx)
1583
1584 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1585}
1586
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001587func (a *AndroidTestImport) InstallInTestcases() bool {
1588 return true
1589}
1590
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001591// android_test_import imports a prebuilt test apk with additional processing specified in the
1592// module. DPI or arch variant configurations can be made as with android_app_import.
1593func AndroidTestImportFactory() android.Module {
1594 module := &AndroidTestImport{}
1595 module.AddProperties(&module.properties)
1596 module.AddProperties(&module.dexpreoptProperties)
1597 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1598 module.AddProperties(&module.testProperties)
1599 module.populateAllVariantStructs()
1600 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1601 module.processVariants(ctx)
1602 })
1603
Colin Crossf30c4532020-05-06 22:29:10 -07001604 module.dexpreopter.isTest = true
1605
Jaewoong Junga689ffe2020-05-01 15:50:08 -07001606 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1607 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001608 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1609
1610 return module
1611}
1612
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001613type RuntimeResourceOverlay struct {
1614 android.ModuleBase
1615 android.DefaultableModuleBase
Roshan Piusb8307962020-04-27 09:42:27 -07001616 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001617 aapt
1618
Roshan Piusb8307962020-04-27 09:42:27 -07001619 properties RuntimeResourceOverlayProperties
1620 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001621
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001622 certificate Certificate
1623
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001624 outputFile android.Path
1625 installDir android.InstallPath
1626}
1627
1628type RuntimeResourceOverlayProperties struct {
1629 // the name of a certificate in the default certificate directory or an android_app_certificate
1630 // module name in the form ":module".
1631 Certificate *string
1632
1633 // optional theme name. If specified, the overlay package will be applied
1634 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1635 Theme *string
1636
1637 // if not blank, set to the version of the sdk to compile against.
1638 // Defaults to compiling against the current platform.
1639 Sdk_version *string
1640
1641 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1642 // Defaults to sdk_version if not set.
1643 Min_sdk_version *string
Jaewoong Jungca095d72020-04-09 16:15:30 -07001644
1645 // list of android_library modules whose resources are extracted and linked against statically
1646 Static_libs []string
1647
1648 // list of android_app modules whose resources are extracted and linked against
1649 Resource_libs []string
Jaewoong Jungbfc6ac02020-04-24 15:22:40 -07001650
1651 // Names of modules to be overridden. Listed modules can only be other overlays
1652 // (in Make or Soong).
1653 // This does not completely prevent installation of the overridden overlays, but if both
1654 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1655 // from PRODUCT_PACKAGES.
1656 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001657}
1658
1659func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1660 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1661 if sdkDep.hasFrameworkLibs() {
1662 r.aapt.deps(ctx, sdkDep)
1663 }
1664
1665 cert := android.SrcIsModule(String(r.properties.Certificate))
1666 if cert != "" {
1667 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1668 }
Jaewoong Jungca095d72020-04-09 16:15:30 -07001669
1670 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1671 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001672}
1673
1674func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1675 // Compile and link resources
1676 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001677 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Piusb8307962020-04-27 09:42:27 -07001678 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1679 // Allow the override of "package name" and "overlay target package name"
1680 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1681 if overridden || r.overridableProperties.Package_name != nil {
1682 // The product override variable has a priority over the package_name property.
1683 if !overridden {
1684 manifestPackageName = *r.overridableProperties.Package_name
1685 }
1686 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
1687 }
1688 if r.overridableProperties.Target_package_name != nil {
1689 aaptLinkFlags = append(aaptLinkFlags,
1690 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1691 }
1692 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001693
1694 // Sign the built package
Colin Crosseb032962020-05-13 11:05:02 -07001695 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001696 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1697 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer70dd74d2020-05-07 13:24:05 -07001698 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, nil)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001699 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001700
1701 r.outputFile = signed
1702 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1703 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1704}
1705
Jiyong Park6a927c42020-01-21 02:03:43 +09001706func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1707 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001708}
1709
1710func (r *RuntimeResourceOverlay) systemModules() string {
1711 return ""
1712}
1713
Jiyong Park6a927c42020-01-21 02:03:43 +09001714func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001715 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001716 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001717 }
1718 return r.sdkVersion()
1719}
1720
Jiyong Park6a927c42020-01-21 02:03:43 +09001721func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001722 return r.sdkVersion()
1723}
1724
1725// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1726// system resources at run time.
1727func RuntimeResourceOverlayFactory() android.Module {
1728 module := &RuntimeResourceOverlay{}
1729 module.AddProperties(
1730 &module.properties,
Roshan Piusb8307962020-04-27 09:42:27 -07001731 &module.aaptProperties,
1732 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001733
Roshan Piusb8307962020-04-27 09:42:27 -07001734 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1735 android.InitDefaultableModule(module)
1736 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001737 return module
1738}
1739
Colin Cross50ddcc42019-05-16 12:28:22 -07001740type UsesLibraryProperties struct {
1741 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1742 Uses_libs []string
1743
1744 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1745 // required=false.
1746 Optional_uses_libs []string
1747
1748 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1749 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1750 Enforce_uses_libs *bool
1751}
1752
1753// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1754// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1755// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1756// with knowledge of their shared libraries.
1757type usesLibrary struct {
1758 usesLibraryProperties UsesLibraryProperties
1759}
1760
Paul Duffin250e6192019-06-07 10:44:37 +01001761func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001762 if !ctx.Config().UnbundledBuild() {
1763 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1764 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001765 // Only add these extra dependencies if the module depends on framework libs. This avoids
1766 // creating a cyclic dependency:
1767 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1768 if hasFrameworkLibs {
Colin Cross3245b2c2019-06-07 13:18:09 -07001769 // dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
1770 // to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
1771 // library to dexpreopt.
1772 ctx.AddVariationDependencies(nil, usesLibTag,
1773 "org.apache.http.legacy",
1774 "android.hidl.base-V1.0-java",
1775 "android.hidl.manager-V1.0-java")
1776 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001777 }
1778}
1779
1780// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1781// build.
1782func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1783 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1784 return optionalUsesLibs
1785}
1786
1787// usesLibraryPaths returns a map of module names of shared library dependencies to the paths to their dex jars.
1788func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) map[string]android.Path {
1789 usesLibPaths := make(map[string]android.Path)
1790
1791 if !ctx.Config().UnbundledBuild() {
1792 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
1793 if lib, ok := m.(Dependency); ok {
1794 if dexJar := lib.DexJar(); dexJar != nil {
1795 usesLibPaths[ctx.OtherModuleName(m)] = dexJar
1796 } else {
1797 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must produce a dex jar, does it have installable: true?",
1798 ctx.OtherModuleName(m))
1799 }
1800 } else if ctx.Config().AllowMissingDependencies() {
1801 ctx.AddMissingDependencies([]string{ctx.OtherModuleName(m)})
1802 } else {
1803 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library",
1804 ctx.OtherModuleName(m))
1805 }
1806 })
1807 }
1808
1809 return usesLibPaths
1810}
1811
1812// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1813// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1814// unconditionally in the future.
1815func (u *usesLibrary) enforceUsesLibraries() bool {
1816 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1817 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1818 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1819}
1820
1821// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1822// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1823func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1824 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1825
1826 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001827 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001828 Flag("--enforce-uses-libraries").
1829 Input(manifest).
1830 FlagWithOutput("-o ", outputFile)
1831
1832 for _, lib := range u.usesLibraryProperties.Uses_libs {
1833 cmd.FlagWithArg("--uses-library ", lib)
1834 }
1835
1836 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1837 cmd.FlagWithArg("--optional-uses-library ", lib)
1838 }
1839
1840 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1841
1842 return outputFile
1843}
1844
1845// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1846// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1847func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1848 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1849
1850 rule := android.NewRuleBuilder()
1851 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1852 rule.Command().
1853 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1854 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1855 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1856 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1857 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
1858
1859 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1860
1861 return outputFile
1862}