blob: 0bc89d4561f48e12c9730df4966086f3dad5fe60 [file] [log] [blame]
Colin Cross30e076a2015-04-13 13:58:27 -07001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package java
16
17// This file contains the module types for compiling Android apps.
18
19import (
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070020 "path/filepath"
21 "reflect"
Jaewoong Jung5b425e22019-06-17 17:40:56 -070022 "sort"
Sasha Smundaka7856c02020-04-23 09:49:59 -070023 "strconv"
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070024 "strings"
Colin Cross30e076a2015-04-13 13:58:27 -070025
Colin Cross50ddcc42019-05-16 12:28:22 -070026 "github.com/google/blueprint"
27 "github.com/google/blueprint/proptools"
28
Colin Cross635c3b02016-05-18 15:37:25 -070029 "android/soong/android"
Colin Crossa4f08812018-10-02 22:03:40 -070030 "android/soong/cc"
Colin Cross303e21f2018-08-07 16:49:25 -070031 "android/soong/tradefed"
Colin Cross30e076a2015-04-13 13:58:27 -070032)
33
Jaewoong Jung3e18b192019-06-11 12:25:34 -070034var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"}
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070035
Colin Cross3bc7ffa2017-11-22 16:19:37 -080036func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000037 RegisterAppBuildComponents(android.InitRegistrationContext)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -070038
39 initAndroidAppImportVariantGroupTypes()
Colin Cross3bc7ffa2017-11-22 16:19:37 -080040}
41
Paul Duffinf9b1da02019-12-18 19:51:55 +000042func RegisterAppBuildComponents(ctx android.RegistrationContext) {
43 ctx.RegisterModuleType("android_app", AndroidAppFactory)
44 ctx.RegisterModuleType("android_test", AndroidTestFactory)
45 ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
46 ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
47 ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
48 ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory)
Roshan Pius4df2bc72020-04-27 09:42:27 -070049 ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000050 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
51 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080052 ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory)
Sasha Smundaka7856c02020-04-23 09:49:59 -070053 ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory)
54}
55
56type AndroidAppSetProperties struct {
57 // APK Set path
58 Set *string
59
60 // Specifies that this app should be installed to the priv-app directory,
61 // where the system will grant it additional privileges not available to
62 // normal apps.
63 Privileged *bool
64
65 // APKs in this set use prerelease SDK version
66 Prerelease *bool
67
68 // Names of modules to be overridden. Listed modules can only be other apps
69 // (in Make or Soong).
70 Overrides []string
71}
72
73type AndroidAppSet struct {
74 android.ModuleBase
75 android.DefaultableModuleBase
76 prebuilt android.Prebuilt
77
78 properties AndroidAppSetProperties
79 packedOutput android.WritablePath
80 masterFile string
81}
82
83func (as *AndroidAppSet) Name() string {
84 return as.prebuilt.Name(as.ModuleBase.Name())
85}
86
87func (as *AndroidAppSet) IsInstallable() bool {
88 return true
89}
90
91func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
92 return &as.prebuilt
93}
94
95func (as *AndroidAppSet) Privileged() bool {
96 return Bool(as.properties.Privileged)
97}
98
Sasha Smundak18d98bc2020-05-27 16:36:07 -070099func (as *AndroidAppSet) OutputFile() android.Path {
100 return as.packedOutput
101}
102
103func (as *AndroidAppSet) MasterFile() string {
104 return as.masterFile
105}
106
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700107var TargetCpuAbi = map[string]string{
Sasha Smundaka7856c02020-04-23 09:49:59 -0700108 "arm": "ARMEABI_V7A",
109 "arm64": "ARM64_V8A",
110 "x86": "X86",
111 "x86_64": "X86_64",
112}
113
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700114func SupportedAbis(ctx android.ModuleContext) []string {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700115 abiName := func(archVar string, deviceArch string) string {
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700116 if abi, found := TargetCpuAbi[deviceArch]; found {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700117 return abi
118 }
119 ctx.ModuleErrorf("Invalid %s: %s", archVar, deviceArch)
120 return "BAD_ABI"
121 }
122
123 result := []string{abiName("TARGET_ARCH", ctx.DeviceConfig().DeviceArch())}
124 if s := ctx.DeviceConfig().DeviceSecondaryArch(); s != "" {
125 result = append(result, abiName("TARGET_2ND_ARCH", s))
126 }
127 return result
128}
129
130func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700131 as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip")
Sasha Smundaka7856c02020-04-23 09:49:59 -0700132 // We are assuming here that the master file in the APK
133 // set has `.apk` suffix. If it doesn't the build will fail.
134 // APK sets containing APEX files are handled elsewhere.
135 as.masterFile = ctx.ModuleName() + ".apk"
136 screenDensities := "all"
137 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
138 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
139 }
140 // TODO(asmundak): handle locales.
141 // TODO(asmundak): do we support device features
142 ctx.Build(pctx,
143 android.BuildParams{
144 Rule: extractMatchingApks,
145 Description: "Extract APKs from APK set",
146 Output: as.packedOutput,
147 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
148 Args: map[string]string{
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700149 "abis": strings.Join(SupportedAbis(ctx), ","),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700150 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
151 "screen-densities": screenDensities,
152 "sdk-version": ctx.Config().PlatformSdkVersion(),
153 "stem": ctx.ModuleName(),
154 },
155 })
Sasha Smundaka7856c02020-04-23 09:49:59 -0700156}
157
158// android_app_set extracts a set of APKs based on the target device
159// configuration and installs this set as "split APKs".
160// The set will always contain `base-master.apk` and every APK built
161// to the target device. All density-specific APK will be included, too,
162// unless PRODUCT_APPT_PREBUILT_DPI is defined (should contain comma-sepearated
163// list of density names (LDPI, MDPI, HDPI, etc.)
164func AndroidApkSetFactory() android.Module {
165 module := &AndroidAppSet{}
166 module.AddProperties(&module.properties)
167 InitJavaModule(module, android.DeviceSupported)
168 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
169 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000170}
171
Colin Cross30e076a2015-04-13 13:58:27 -0700172// AndroidManifest.xml merging
173// package splits
174
Colin Crossfabb6082018-02-20 17:22:23 -0800175type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700176 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700177 Additional_certificates []string
178
179 // If set, create package-export.apk, which other packages can
180 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800181 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700182
Colin Cross16056062017-12-13 22:46:28 -0800183 // Specifies that this app should be installed to the priv-app directory,
184 // where the system will grant it additional privileges not available to
185 // normal apps.
186 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700187
188 // list of resource labels to generate individual resource packages
189 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400190
191 // Names of modules to be overridden. Listed modules can only be other binaries
192 // (in Make or Soong).
193 // This does not completely prevent installation of the overridden binaries, but if both
194 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
195 // from PRODUCT_PACKAGES.
196 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700197
198 // list of native libraries that will be provided in or alongside the resulting jar
199 Jni_libs []string `android:"arch_variant"`
200
Colin Cross7204cf02020-05-06 17:51:39 -0700201 // if true, use JNI libraries that link against platform APIs even if this module sets
Colin Crossee87c602020-02-19 16:57:15 -0800202 // sdk_version.
203 Jni_uses_platform_apis *bool
204
Colin Cross7204cf02020-05-06 17:51:39 -0700205 // if true, use JNI libraries that link against SDK APIs even if this module does not set
206 // sdk_version.
207 Jni_uses_sdk_apis *bool
208
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700209 // STL library to use for JNI libraries.
210 Stl *string `android:"arch_variant"`
211
Colin Crosse4246ab2019-02-05 21:55:21 -0800212 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
213 // flag so that they are used from inside the APK at runtime. Defaults to true for android_test modules unless
Jiyong Park52cd06f2019-11-11 10:14:32 +0900214 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
215 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
216 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -0800217 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -0800218
219 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
220 // they are used from inside the APK at runtime.
221 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -0700222
223 // Forces native libraries to always be packaged into the APK,
224 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
225 // True for android_test* modules.
226 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700227
228 // If set, find and merge all NOTICE files that this module and its dependencies have and store
229 // it in the APK as an asset.
230 Embed_notices *bool
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700231
232 // cc.Coverage related properties
233 PreventInstall bool `blueprint:"mutated"`
234 HideFromMake bool `blueprint:"mutated"`
235 IsCoverageVariant bool `blueprint:"mutated"`
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100236
237 // Whether this app is considered mainline updatable or not. When set to true, this will enforce
Artur Satayevf40fc852020-04-16 13:43:02 +0100238 // additional rules to make sure an app can safely be updated. Default is false.
239 // Prefer using other specific properties if build behaviour must be changed; avoid using this
240 // flag for anything but neverallow rules (unless the behaviour change is invisible to owners).
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100241 Updatable *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700242}
243
Jaewoong Jung525443a2019-02-28 15:35:54 -0800244// android_app properties that can be overridden by override_android_app
245type overridableAppProperties struct {
246 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
247 // or an android_app_certificate module name in the form ":module".
248 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700249
Liz Kammere2b27f42020-05-07 13:24:05 -0700250 // Name of the signing certificate lineage file.
251 Lineage *string
252
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700253 // the package name of this app. The package name in the manifest file is used if one was not given.
254 Package_name *string
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800255
256 // the logging parent of this app.
257 Logging_parent *string
Jaewoong Jung525443a2019-02-28 15:35:54 -0800258}
259
Roshan Pius4df2bc72020-04-27 09:42:27 -0700260// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
261type OverridableRuntimeResourceOverlayProperties struct {
262 // the package name of this app. The package name in the manifest file is used if one was not given.
263 Package_name *string
264
265 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
266 Target_package_name *string
267}
268
Colin Cross30e076a2015-04-13 13:58:27 -0700269type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700270 Library
271 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800272 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700273
Colin Cross50ddcc42019-05-16 12:28:22 -0700274 usesLibrary usesLibrary
275
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900276 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700277
Colin Crossfabb6082018-02-20 17:22:23 -0800278 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700279
Jaewoong Jung525443a2019-02-28 15:35:54 -0800280 overridableAppProperties overridableAppProperties
281
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700282 installJniLibs []jniLib
283 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700284
285 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800286
287 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
288 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800289
Colin Cross70dda7e2019-10-01 22:05:35 -0700290 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700291
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700292 onDeviceDir string
293
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800294 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700295
296 noticeOutputs android.NoticeOutputs
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900297
298 overriddenManifestPackageName string
Artur Satayev1111b842020-04-27 19:05:28 +0100299
300 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800301}
302
Martin Stjernholm6d415272020-01-31 17:10:36 +0000303func (a *AndroidApp) IsInstallable() bool {
304 return Bool(a.properties.Installable)
305}
306
Colin Cross89c31582018-04-30 15:55:11 -0700307func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
308 return nil
309}
310
Colin Cross66f78822018-05-02 12:58:28 -0700311func (a *AndroidApp) ExportedStaticPackages() android.Paths {
312 return nil
313}
314
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900315func (a *AndroidApp) OutputFile() android.Path {
316 return a.outputFile
317}
318
Colin Cross503c1d02020-01-28 14:00:53 -0800319func (a *AndroidApp) Certificate() Certificate {
320 return a.certificate
321}
322
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700323func (a *AndroidApp) JniCoverageOutputs() android.Paths {
324 return a.jniCoverageOutputs
325}
326
Colin Crossa97c5d32018-03-28 14:58:31 -0700327var _ AndroidLibraryDependency = (*AndroidApp)(nil)
328
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900329type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800330 Pem, Key android.Path
331 presigned bool
332}
333
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700334var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800335
336func (c Certificate) AndroidMkString() string {
337 if c.presigned {
338 return "PRESIGNED"
339 } else {
340 return c.Pem.String()
341 }
Colin Cross30e076a2015-04-13 13:58:27 -0700342}
343
Colin Cross46c9b8b2017-06-22 16:51:17 -0700344func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
345 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700346
Jiyong Park6a927c42020-01-21 02:03:43 +0900347 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700348 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
349 }
350
Paul Duffin250e6192019-06-07 10:44:37 +0100351 sdkDep := decodeSdkDep(ctx, sdkContext(a))
352 if sdkDep.hasFrameworkLibs() {
353 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700354 }
Colin Crossa4f08812018-10-02 22:03:40 -0700355
Colin Cross3c007702020-05-08 11:20:24 -0700356 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
357
358 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
359 ctx.PropertyErrorf("jni_uses_sdk_apis",
360 "can only be set for modules that do not set sdk_version")
361 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
362 ctx.PropertyErrorf("jni_uses_platform_apis",
363 "can only be set for modules that set sdk_version")
364 }
365
Peter Collingbournead84f972019-12-17 16:46:18 -0800366 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700367 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700368 variation := append(jniTarget.Variations(),
369 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossc511bc52020-04-07 16:50:32 +0000370
371 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
372 // unless jni_uses_platform_apis is set.
Colin Crossc2d24052020-05-13 11:05:02 -0700373 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
374 // have stable APIs through the VNDK.
375 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
376 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross7204cf02020-05-06 17:51:39 -0700377 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Crossc511bc52020-04-07 16:50:32 +0000378 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
379 }
Colin Crossa4f08812018-10-02 22:03:40 -0700380 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
381 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700382
Paul Duffin250e6192019-06-07 10:44:37 +0100383 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700384}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700385
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700386func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800387 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700388 if cert != "" {
389 ctx.AddDependency(ctx.Module(), certificateTag, cert)
390 }
391
392 for _, cert := range a.appProperties.Additional_certificates {
393 cert = android.SrcIsModule(cert)
394 if cert != "" {
395 ctx.AddDependency(ctx.Module(), certificateTag, cert)
396 } else {
397 ctx.PropertyErrorf("additional_certificates",
398 `must be names of android_app_certificate modules in the form ":module"`)
399 }
400 }
Colin Cross30e076a2015-04-13 13:58:27 -0700401}
402
Jeongik Cha538c0d02019-07-11 15:54:27 +0900403func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
404 a.generateAndroidBuildActions(ctx)
405}
406
Colin Cross46c9b8b2017-06-22 16:51:17 -0700407func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100408 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700409 a.generateAndroidBuildActions(ctx)
410}
411
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100412func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev849f8442020-04-28 14:57:42 +0100413 if a.Updatable() {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100414 if !a.sdkVersion().stable() {
415 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
416 }
Artur Satayevf40fc852020-04-16 13:43:02 +0100417 if String(a.deviceProperties.Min_sdk_version) == "" {
418 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
419 }
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900420 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
421 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
422 } else {
423 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
424 }
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100425 }
426
427 a.checkPlatformAPI(ctx)
428 a.checkSdkVersions(ctx)
429}
430
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900431// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
432// This check is enforced for "updatable" APKs (including APK-in-APEX).
433// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
434// because, sdk_version is overridden by min_sdk_version (if set as smaller)
435// and linkType is checked with dependencies so we can be sure that the whole dependency tree
436// will meet the requirements.
437func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
438 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
439 ctx.VisitDirectDeps(func(m android.Module) {
440 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
441 return
442 }
443 dep, _ := m.(*cc.Module)
Jooyung Han652d5b32020-05-20 17:12:13 +0900444 // The domain of cc.sdk_version is "current" and <number>
445 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
446 // properly regardless of sdk finalization.
447 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
448 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900449 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
450 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
451 return
452 }
453
454 })
455}
456
Sasha Smundak6ad77252019-05-01 13:16:22 -0700457// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800458// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700459func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900460 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800461 if err != nil {
462 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
463 }
464
Jiyong Park52cd06f2019-11-11 10:14:32 +0900465 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
466 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800467}
468
Colin Cross43f08db2018-11-12 10:13:39 -0800469// Returns whether this module should have the dex file stored uncompressed in the APK.
470func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800471 if Bool(a.appProperties.Use_embedded_dex) {
472 return true
473 }
474
Colin Cross53a87f52019-06-25 13:35:30 -0700475 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
476 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900477 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000478 return true
479 }
480
Colin Cross53a87f52019-06-25 13:35:30 -0700481 if ctx.Config().UnbundledBuild() {
482 return false
483 }
484
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700485 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700486}
487
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700488func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
489 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900490 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700491}
492
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900493func (a *AndroidApp) OverriddenManifestPackageName() string {
494 return a.overriddenManifestPackageName
495}
496
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800497func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000498 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
499
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700500 // Ask manifest_fixer to add or update the application element indicating this app has no code.
501 a.aapt.hasNoCode = !a.hasCode(ctx)
502
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800503 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800504
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800505 // 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 -0800506 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700507 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800508 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700509 }
510
Dan Willemsen72be5902018-10-24 20:24:57 -0700511 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
512 // Product AAPT config
513 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800514 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700515 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700516
Dan Willemsen72be5902018-10-24 20:24:57 -0700517 // Product AAPT preferred config
518 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800519 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700520 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700521 }
522
Jiyong Park7f67f482019-01-05 12:57:48 +0900523 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700524 if overridden || a.overridableAppProperties.Package_name != nil {
525 // The product override variable has a priority over the package_name property.
526 if !overridden {
527 manifestPackageName = *a.overridableAppProperties.Package_name
528 }
Liz Kammer1d5983b2020-05-19 19:15:37 +0000529 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900530 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900531 }
532
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800533 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
534
Colin Crosse560c4a2019-03-19 16:03:11 -0700535 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700536 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800537 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800538 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700539
Colin Cross46c9b8b2017-06-22 16:51:17 -0700540 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700541 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800542}
Colin Cross30e076a2015-04-13 13:58:27 -0700543
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800544func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700545 var staticLibProguardFlagFiles android.Paths
546 ctx.VisitDirectDeps(func(m android.Module) {
547 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
548 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
549 }
550 })
551
552 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
553
554 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
555 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800556}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800557
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800558func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
Colin Cross43f08db2018-11-12 10:13:39 -0800559
560 var installDir string
561 if ctx.ModuleName() == "framework-res" {
562 // framework-res.apk is installed as system/framework/framework-res.apk
563 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900564 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800565 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800566 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800567 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800568 }
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800569 a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
David Srbeckye033cba2020-05-20 22:20:28 +0100570 if a.deviceProperties.Uncompress_dex == nil {
571 // If the value was not force-set by the user, use reasonable default based on the module.
572 a.deviceProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
573 }
574 a.dexpreopter.uncompressedDex = *a.deviceProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700575 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
576 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
577 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
578 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
579 a.dexpreopter.manifestFile = a.mergedManifestFile
580
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800581 if ctx.ModuleName() != "framework-res" {
582 a.Module.compile(ctx, a.aaptSrcJar)
583 }
Colin Cross30e076a2015-04-13 13:58:27 -0700584
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800585 return a.maybeStrippedDexJarFile
586}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800587
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800588func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700589 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700590 if len(jniLibs) > 0 {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700591 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700592 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Sasha Smundak6ad77252019-05-01 13:16:22 -0700593 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700594 for _, jni := range jniLibs {
595 if jni.coverageFile.Valid() {
Jaewoong Jung46984ee2020-04-07 13:07:55 -0700596 // Only collect coverage for the first target arch if this is a multilib target.
597 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
598 // data file path collisions since the current coverage file path format doesn't contain
599 // arch-related strings. This is fine for now though; the code coverage team doesn't use
600 // multi-arch targets such as test_suite_* for coverage collections yet.
601 //
602 // Work with the team to come up with a new format that handles multilib modules properly
603 // and change this.
604 if len(ctx.Config().Targets[android.Android]) == 1 ||
605 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
606 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
607 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700608 }
609 }
Colin Crossa4f08812018-10-02 22:03:40 -0700610 } else {
611 a.installJniLibs = jniLibs
612 }
613 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800614 return jniJarFile
615}
Colin Crossa4f08812018-10-02 22:03:40 -0700616
Jaewoong Jung0949f312019-09-11 10:25:18 -0700617func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700618 // Collect NOTICE files from all dependencies.
619 seenModules := make(map[android.Module]bool)
620 noticePathSet := make(map[android.Path]bool)
621
622 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
623 // Have we already seen this?
624 if _, ok := seenModules[child]; ok {
625 return false
626 }
627 seenModules[child] = true
628
629 // Skip host modules.
630 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
631 return false
632 }
633
Bob Badoura75b0572020-02-18 20:21:55 -0800634 paths := child.(android.Module).NoticeFiles()
635 if len(paths) > 0 {
636 for _, path := range paths {
637 noticePathSet[path] = true
638 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700639 }
640 return true
641 })
642
643 // If the app has one, add it too.
Bob Badoura75b0572020-02-18 20:21:55 -0800644 if len(a.NoticeFiles()) > 0 {
645 for _, path := range a.NoticeFiles() {
646 noticePathSet[path] = true
647 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700648 }
649
650 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700651 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700652 }
653 var noticePaths []android.Path
654 for path := range noticePathSet {
655 noticePaths = append(noticePaths, path)
656 }
657 sort.Slice(noticePaths, func(i, j int) bool {
658 return noticePaths[i].String() < noticePaths[j].String()
659 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700660
Jaewoong Jung0949f312019-09-11 10:25:18 -0700661 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700662}
663
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700664// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
665// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
666func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
667 if android.SrcIsModule(certPropValue) == "" {
668 var mainCert Certificate
669 if certPropValue != "" {
670 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
671 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800672 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
673 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700674 }
675 } else {
676 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800677 mainCert = Certificate{
678 Pem: pem,
679 Key: key,
680 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700681 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700682 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700683 }
684
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700685 if !m.Platform() {
686 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900687 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
688 if strings.HasPrefix(certPath, systemCertPath) {
689 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
690 whitelist := ctx.Config().EnforceSystemCertificateWhitelist()
691
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700692 if enforceSystemCert && !inList(m.Name(), whitelist) {
Jeongik Chac9464142019-01-07 12:07:27 +0900693 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
694 }
695 }
696 }
697
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700698 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800699}
700
Jooyung Han39ee1192020-03-23 20:21:11 +0900701func (a *AndroidApp) InstallApkName() string {
702 return a.installApkName
703}
704
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800705func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700706 var apkDeps android.Paths
707
Jeongik Cha538c0d02019-07-11 15:54:27 +0900708 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
709 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
710
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800711 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800712 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800713
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700714 if ctx.ModuleName() == "framework-res" {
715 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700716 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900717 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700718 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
719 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800720 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700721 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700722 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700723 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700724 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700725
Jaewoong Jung0949f312019-09-11 10:25:18 -0700726 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700727 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
728 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
729 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700730
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800731 // Process all building blocks, from AAPT to certificates.
732 a.aaptBuildActions(ctx)
733
Colin Cross50ddcc42019-05-16 12:28:22 -0700734 if a.usesLibrary.enforceUsesLibraries() {
735 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
736 apkDeps = append(apkDeps, manifestCheckFile)
737 }
738
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800739 a.proguardBuildActions(ctx)
740
741 dexJarFile := a.dexBuildActions(ctx)
742
Colin Crossc2d24052020-05-13 11:05:02 -0700743 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800744 jniJarFile := a.jniBuildActions(jniLibs, ctx)
745
746 if ctx.Failed() {
747 return
748 }
749
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700750 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
751 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800752
753 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800754 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Liz Kammere2b27f42020-05-07 13:24:05 -0700755 var lineageFile android.Path
756 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
757 lineageFile = android.PathForModuleSrc(ctx, lineage)
758 }
759 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800760 a.outputFile = packageFile
761
Colin Crosse560c4a2019-03-19 16:03:11 -0700762 for _, split := range a.aapt.splits {
763 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800764 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Liz Kammere2b27f42020-05-07 13:24:05 -0700765 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700766 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
767 }
768
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800769 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700770 bundleFile := android.PathForModuleOut(ctx, "base.zip")
771 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
772 a.bundleFile = bundleFile
773
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800774 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900775 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
776 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
777 for _, extra := range a.extraOutputFiles {
778 ctx.InstallFile(a.installDir, extra.Base(), extra)
779 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800780 }
Artur Satayev1111b842020-04-27 19:05:28 +0100781
782 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700783}
784
Colin Crossc2d24052020-05-13 11:05:02 -0700785type appDepsInterface interface {
786 sdkVersion() sdkSpec
787 minSdkVersion() sdkSpec
788 RequiresStableAPIs(ctx android.BaseModuleContext) bool
789}
790
791func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
792 shouldCollectRecursiveNativeDeps bool,
Colin Cross094cde42020-02-15 10:38:00 -0800793 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crossc2d24052020-05-13 11:05:02 -0700794
Colin Crossa4f08812018-10-02 22:03:40 -0700795 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900796 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800797 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700798
Colin Crossc2d24052020-05-13 11:05:02 -0700799 if checkNativeSdkVersion {
800 checkNativeSdkVersion = app.sdkVersion().specified() &&
801 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
802 }
803
Peter Collingbournead84f972019-12-17 16:46:18 -0800804 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700805 otherName := ctx.OtherModuleName(module)
806 tag := ctx.OtherModuleDependencyTag(module)
807
Peter Collingbournead84f972019-12-17 16:46:18 -0800808 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700809 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800810 if dep.IsNdk() || dep.IsStubs() {
811 return false
812 }
813
Colin Crossa4f08812018-10-02 22:03:40 -0700814 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800815 path := lib.Path()
816 if seenModulePaths[path.String()] {
817 return false
818 }
819 seenModulePaths[path.String()] = true
820
Colin Crossc2d24052020-05-13 11:05:02 -0700821 if checkNativeSdkVersion && dep.SdkVersion() == "" {
822 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
823 otherName)
Colin Cross094cde42020-02-15 10:38:00 -0800824 }
825
Colin Crossa4f08812018-10-02 22:03:40 -0700826 if lib.Valid() {
827 jniLibs = append(jniLibs, jniLib{
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700828 name: ctx.OtherModuleName(module),
829 path: path,
830 target: module.Target(),
831 coverageFile: dep.CoverageOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700832 })
833 } else {
834 ctx.ModuleErrorf("dependency %q missing output file", otherName)
835 }
836 } else {
837 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700838 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800839
840 return shouldCollectRecursiveNativeDeps
841 }
842
843 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700844 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900845 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700846 } else {
847 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
848 }
Colin Crossa4f08812018-10-02 22:03:40 -0700849 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800850
851 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700852 })
853
Colin Crossbd01e2a2018-10-04 15:21:03 -0700854 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700855}
856
Artur Satayev1111b842020-04-27 19:05:28 +0100857func (a *AndroidApp) walkPayloadDeps(ctx android.ModuleContext,
858 do func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool)) {
859
860 ctx.WalkDeps(func(child, parent android.Module) bool {
861 isExternal := !a.DepIsInSameApex(ctx, child)
862 if am, ok := child.(android.ApexModule); ok {
863 do(ctx, parent, am, isExternal)
864 }
865 return !isExternal
866 })
867}
868
869func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
870 if ctx.Host() {
871 return
872 }
873
874 depsInfo := android.DepNameToDepInfoMap{}
875 a.walkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) {
876 depName := to.Name()
877 if info, exist := depsInfo[depName]; exist {
878 info.From = append(info.From, from.Name())
879 info.IsExternal = info.IsExternal && externalDep
880 depsInfo[depName] = info
881 } else {
882 toMinSdkVersion := "(no version)"
883 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
884 if v := m.MinSdkVersion(); v != "" {
885 toMinSdkVersion = v
886 }
887 }
888 depsInfo[depName] = android.ApexModuleDepInfo{
889 To: depName,
890 From: []string{from.Name()},
891 IsExternal: externalDep,
892 MinSdkVersion: toMinSdkVersion,
893 }
894 }
895 })
896
897 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
898}
899
Artur Satayev849f8442020-04-28 14:57:42 +0100900func (a *AndroidApp) Updatable() bool {
901 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
902}
903
Colin Cross0ea8ba82019-06-06 14:33:29 -0700904func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800905 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
906 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000907 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800908 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800909 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800910}
911
Jiyong Park0f80c182020-01-31 02:49:53 +0900912func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
913 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
914 return true
915 }
916 return a.Library.DepIsInSameApex(ctx, dep)
917}
918
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900919// For OutputFileProducer interface
920func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
921 switch tag {
922 case ".aapt.srcjar":
923 return []android.Path{a.aaptSrcJar}, nil
924 }
925 return a.Library.OutputFiles(tag)
926}
927
Jiyong Parkf7487312019-10-17 12:54:30 +0900928func (a *AndroidApp) Privileged() bool {
929 return Bool(a.appProperties.Privileged)
930}
931
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700932func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
933 return ctx.Device() && (ctx.DeviceConfig().NativeCoverageEnabled() || ctx.DeviceConfig().ClangCoverageEnabled())
934}
935
936func (a *AndroidApp) PreventInstall() {
937 a.appProperties.PreventInstall = true
938}
939
940func (a *AndroidApp) HideFromMake() {
941 a.appProperties.HideFromMake = true
942}
943
944func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
945 a.appProperties.IsCoverageVariant = coverage
946}
947
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400948func (a *AndroidApp) EnableCoverageIfNeeded() {}
949
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700950var _ cc.Coverage = (*AndroidApp)(nil)
951
Colin Cross1b16b0e2019-02-12 14:41:32 -0800952// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -0700953func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -0700954 module := &AndroidApp{}
955
Sasha Smundak2057f822019-04-16 17:16:58 -0700956 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross66dbc0b2017-12-28 12:23:20 -0800957 module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
958
Colin Crossae5caf52018-05-22 11:11:52 -0700959 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -0700960 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -0700961
Colin Cross36242852017-06-23 15:06:31 -0700962 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -0700963 &module.Module.properties,
964 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -0800965 &module.Module.dexpreoptProperties,
Colin Crossa97c5d32018-03-28 14:58:31 -0700966 &module.Module.protoProperties,
967 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -0800968 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -0700969 &module.overridableAppProperties,
970 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -0700971
Colin Crossa9d8bee2018-10-02 13:59:46 -0700972 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
973 return class == android.Device && ctx.Config().DevicePrefer32BitApps()
974 })
975
Colin Crossa4f08812018-10-02 22:03:40 -0700976 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
977 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800978 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +0900979 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -0700980
Colin Cross36242852017-06-23 15:06:31 -0700981 return module
Colin Cross30e076a2015-04-13 13:58:27 -0700982}
Colin Crossae5caf52018-05-22 11:11:52 -0700983
984type appTestProperties struct {
Liz Kammer6b0c5522020-04-28 16:10:55 -0700985 // The name of the android_app module that the tests will run against.
Colin Crossae5caf52018-05-22 11:11:52 -0700986 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700987
988 // if specified, the instrumentation target package name in the manifest is overwritten by it.
989 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -0700990}
991
992type AndroidTest struct {
993 AndroidApp
994
995 appTestProperties appTestProperties
996
997 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -0700998
999 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -07001000 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001001}
1002
Jaewoong Jung0949f312019-09-11 10:25:18 -07001003func (a *AndroidTest) InstallInTestcases() bool {
1004 return true
1005}
1006
Colin Crossae5caf52018-05-22 11:11:52 -07001007func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncylee5bcff5d2020-04-30 14:57:06 +08001008 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001009 if a.appTestProperties.Instrumentation_target_package != nil {
1010 a.additionalAaptFlags = append(a.additionalAaptFlags,
1011 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1012 } else if a.appTestProperties.Instrumentation_for != nil {
1013 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001014 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1015 if overridden {
1016 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1017 }
1018 }
Colin Crossae5caf52018-05-22 11:11:52 -07001019 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001020
easoncylee5bcff5d2020-04-30 14:57:06 +08001021 for _, module := range a.testProperties.Test_mainline_modules {
1022 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1023 }
1024
Jaewoong Jung39982342020-01-14 10:27:18 -08001025 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncylee5bcff5d2020-04-30 14:57:06 +08001026 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001027 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001028 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001029}
1030
Jaewoong Jung39982342020-01-14 10:27:18 -08001031func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1032 if testConfig == nil {
1033 return nil
1034 }
1035
1036 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1037 rule := android.NewRuleBuilder()
1038 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1039 fixNeeded := false
1040
1041 if ctx.ModuleName() != a.installApkName {
1042 fixNeeded = true
1043 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1044 }
1045
1046 if a.overridableAppProperties.Package_name != nil {
1047 fixNeeded = true
1048 command.FlagWithInput("--manifest ", a.manifestPath).
1049 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1050 }
1051
1052 if fixNeeded {
1053 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1054 return fixedConfig
1055 }
1056 return testConfig
1057}
1058
Colin Cross303e21f2018-08-07 16:49:25 -07001059func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001060 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001061}
1062
1063func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1064 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001065 if a.appTestProperties.Instrumentation_for != nil {
1066 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1067 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1068 // use instrumentationForTag instead of libTag.
1069 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1070 }
Colin Crossae5caf52018-05-22 11:11:52 -07001071}
1072
Colin Cross1b16b0e2019-02-12 14:41:32 -08001073// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1074// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001075func AndroidTestFactory() android.Module {
1076 module := &AndroidTest{}
1077
Sasha Smundak2057f822019-04-16 17:16:58 -07001078 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001079
1080 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001081 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001082 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001083 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001084 module.Module.dexpreopter.isTest = true
Colin Crossae5caf52018-05-22 11:11:52 -07001085
1086 module.AddProperties(
1087 &module.Module.properties,
1088 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001089 &module.Module.dexpreoptProperties,
Colin Crossae5caf52018-05-22 11:11:52 -07001090 &module.Module.protoProperties,
1091 &module.aaptProperties,
1092 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001093 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001094 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001095 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001096 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001097
Colin Crossa4f08812018-10-02 22:03:40 -07001098 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1099 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001100 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001101 return module
1102}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001103
Colin Cross252fc6f2018-10-04 15:22:03 -07001104type appTestHelperAppProperties struct {
1105 // list of compatibility suites (for example "cts", "vts") that the module should be
1106 // installed into.
1107 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001108
1109 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1110 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1111 // explicitly.
1112 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001113}
1114
1115type AndroidTestHelperApp struct {
1116 AndroidApp
1117
1118 appTestHelperAppProperties appTestHelperAppProperties
1119}
1120
Jaewoong Jung326a9412019-11-21 10:41:00 -08001121func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1122 return true
1123}
1124
Colin Cross1b16b0e2019-02-12 14:41:32 -08001125// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1126// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1127// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001128func AndroidTestHelperAppFactory() android.Module {
1129 module := &AndroidTestHelperApp{}
1130
Sasha Smundak2057f822019-04-16 17:16:58 -07001131 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001132
1133 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001134 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001135 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001136 module.Module.dexpreopter.isTest = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001137
1138 module.AddProperties(
1139 &module.Module.properties,
1140 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001141 &module.Module.dexpreoptProperties,
Colin Cross252fc6f2018-10-04 15:22:03 -07001142 &module.Module.protoProperties,
1143 &module.aaptProperties,
1144 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001145 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001146 &module.overridableAppProperties,
1147 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001148
1149 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1150 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001151 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001152 return module
1153}
1154
Colin Crossbd01e2a2018-10-04 15:21:03 -07001155type AndroidAppCertificate struct {
1156 android.ModuleBase
1157 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001158 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001159}
1160
1161type AndroidAppCertificateProperties struct {
1162 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1163 Certificate *string
1164}
1165
Colin Cross1b16b0e2019-02-12 14:41:32 -08001166// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1167// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001168func AndroidAppCertificateFactory() android.Module {
1169 module := &AndroidAppCertificate{}
1170 module.AddProperties(&module.properties)
1171 android.InitAndroidModule(module)
1172 return module
1173}
1174
Colin Crossbd01e2a2018-10-04 15:21:03 -07001175func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1176 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001177 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001178 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1179 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001180 }
1181}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001182
1183type OverrideAndroidApp struct {
1184 android.ModuleBase
1185 android.OverrideModuleBase
1186}
1187
1188func (i *OverrideAndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1189 // All the overrides happen in the base module.
1190 // TODO(jungjw): Check the base module type.
1191}
1192
1193// override_android_app is used to create an android_app module based on another android_app by overriding
1194// some of its properties.
1195func OverrideAndroidAppModuleFactory() android.Module {
1196 m := &OverrideAndroidApp{}
1197 m.AddProperties(&overridableAppProperties{})
1198
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001199 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001200 android.InitOverrideModule(m)
1201 return m
1202}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001203
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001204type OverrideAndroidTest struct {
1205 android.ModuleBase
1206 android.OverrideModuleBase
1207}
1208
1209func (i *OverrideAndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1210 // All the overrides happen in the base module.
1211 // TODO(jungjw): Check the base module type.
1212}
1213
1214// override_android_test is used to create an android_app module based on another android_test by overriding
1215// some of its properties.
1216func OverrideAndroidTestModuleFactory() android.Module {
1217 m := &OverrideAndroidTest{}
1218 m.AddProperties(&overridableAppProperties{})
1219 m.AddProperties(&appTestProperties{})
1220
1221 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1222 android.InitOverrideModule(m)
1223 return m
1224}
1225
Roshan Pius4df2bc72020-04-27 09:42:27 -07001226type OverrideRuntimeResourceOverlay struct {
1227 android.ModuleBase
1228 android.OverrideModuleBase
1229}
1230
1231func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1232 // All the overrides happen in the base module.
1233 // TODO(jungjw): Check the base module type.
1234}
1235
1236// override_runtime_resource_overlay is used to create a module based on another
1237// runtime_resource_overlay module by overriding some of its properties.
1238func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1239 m := &OverrideRuntimeResourceOverlay{}
1240 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1241
1242 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1243 android.InitOverrideModule(m)
1244 return m
1245}
1246
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001247type AndroidAppImport struct {
1248 android.ModuleBase
1249 android.DefaultableModuleBase
Jiyong Park592a6a42020-04-21 22:34:28 +09001250 android.ApexModuleBase
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001251 prebuilt android.Prebuilt
1252
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001253 properties AndroidAppImportProperties
1254 dpiVariants interface{}
1255 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001256
1257 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001258 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001259
1260 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001261
1262 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001263
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001264 preprocessed bool
1265
Colin Cross70dda7e2019-10-01 22:05:35 -07001266 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001267}
1268
1269type AndroidAppImportProperties struct {
1270 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001271 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001272
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001273 // The name of a certificate in the default certificate directory or an android_app_certificate
1274 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001275 Certificate *string
1276
1277 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1278 // be set for presigned modules.
1279 Presigned *bool
1280
Liz Kammer24978992020-05-13 15:49:21 -07001281 // Name of the signing certificate lineage file.
1282 Lineage *string
1283
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001284 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1285 // need to either specify a specific certificate or be presigned.
1286 Default_dev_cert *bool
1287
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001288 // Specifies that this app should be installed to the priv-app directory,
1289 // where the system will grant it additional privileges not available to
1290 // normal apps.
1291 Privileged *bool
1292
1293 // Names of modules to be overridden. Listed modules can only be other binaries
1294 // (in Make or Soong).
1295 // This does not completely prevent installation of the overridden binaries, but if both
1296 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1297 // from PRODUCT_PACKAGES.
1298 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001299
1300 // Optional name for the installed app. If unspecified, it is derived from the module name.
1301 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001302}
1303
Martin Stjernholm6d415272020-01-31 17:10:36 +00001304func (a *AndroidAppImport) IsInstallable() bool {
1305 return true
1306}
1307
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001308// Updates properties with variant-specific values.
1309func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001310 config := ctx.Config()
1311
1312 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1313 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1314 // overwrites everything else.
1315 // TODO(jungjw): Can we optimize this by making it priority order?
1316 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001317 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001318 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001319 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001320 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001321 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001322
1323 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1324 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1325 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001326}
1327
Colin Cross1184b642019-12-30 18:43:07 -08001328func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001329 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001330 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1331 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001332 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001333 }
1334
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001335 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1336 if err != nil {
1337 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1338 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1339 } else {
1340 panic(err)
1341 }
1342 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001343}
1344
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001345func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1346 cert := android.SrcIsModule(String(a.properties.Certificate))
1347 if cert != "" {
1348 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1349 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001350
Paul Duffin250e6192019-06-07 10:44:37 +01001351 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001352}
1353
1354func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1355 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001356 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1357 // with them may invalidate pre-existing signature data.
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001358 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001359 ctx.Build(pctx, android.BuildParams{
1360 Rule: android.Cp,
1361 Output: outputPath,
1362 Input: inputPath,
1363 })
1364 return
1365 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001366 rule := android.NewRuleBuilder()
1367 rule.Command().
1368 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001369 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001370 FlagWithInput("-i ", inputPath).
1371 FlagWithOutput("-o ", outputPath).
1372 FlagWithArg("-0 ", "'lib/**/*.so'").
1373 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1374 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1375}
1376
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001377// Returns whether this module should have the dex file stored uncompressed in the APK.
1378func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001379 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001380 return false
1381 }
1382
1383 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001384 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001385 return true
1386 }
1387
1388 return shouldUncompressDex(ctx, &a.dexpreopter)
1389}
1390
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001391func (a *AndroidAppImport) uncompressDex(
1392 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1393 rule := android.NewRuleBuilder()
1394 rule.Command().
1395 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001396 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001397 FlagWithInput("-i ", inputPath).
1398 FlagWithOutput("-o ", outputPath).
1399 FlagWithArg("-0 ", "'classes*.dex'").
1400 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1401 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1402}
1403
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001404func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001405 a.generateAndroidBuildActions(ctx)
1406}
1407
Jooyung Han39ee1192020-03-23 20:21:11 +09001408func (a *AndroidAppImport) InstallApkName() string {
1409 return a.BaseModuleName()
1410}
1411
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001412func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001413 numCertPropsSet := 0
1414 if String(a.properties.Certificate) != "" {
1415 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001416 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001417 if Bool(a.properties.Presigned) {
1418 numCertPropsSet++
1419 }
1420 if Bool(a.properties.Default_dev_cert) {
1421 numCertPropsSet++
1422 }
1423 if numCertPropsSet != 1 {
1424 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001425 }
1426
Colin Crossc2d24052020-05-13 11:05:02 -07001427 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001428
1429 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001430 // TODO: LOCAL_PACKAGE_SPLITS
1431
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001432 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001433
1434 if a.usesLibrary.enforceUsesLibraries() {
1435 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1436 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001437
1438 // TODO: Install or embed JNI libraries
1439
1440 // Uncompress JNI libraries in the apk
1441 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1442 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1443
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001444 var installDir android.InstallPath
1445 if Bool(a.properties.Privileged) {
1446 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001447 } else if ctx.InstallInTestcases() {
1448 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001449 } else {
1450 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1451 }
1452
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001453 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001454 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001455 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001456
1457 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1458 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1459 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1460 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1461
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001462 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001463 if a.dexpreopter.uncompressedDex {
1464 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1465 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1466 dexOutput = dexUncompressed
1467 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001468
Jooyung Han39ee1192020-03-23 20:21:11 +09001469 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1470
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001471 // TODO: Handle EXTERNAL
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001472
1473 // Sign or align the package if package has not been preprocessed
1474 if a.preprocessed {
1475 a.outputFile = srcApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001476 a.certificate = PresignedCertificate
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001477 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001478 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1479 // Which makes processMainCert's behavior for the empty cert string WAI.
1480 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001481 if len(certificates) != 1 {
1482 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1483 }
Colin Cross503c1d02020-01-28 14:00:53 -08001484 a.certificate = certificates[0]
Jooyung Han39ee1192020-03-23 20:21:11 +09001485 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer24978992020-05-13 15:49:21 -07001486 var lineageFile android.Path
1487 if lineage := String(a.properties.Lineage); lineage != "" {
1488 lineageFile = android.PathForModuleSrc(ctx, lineage)
1489 }
1490 SignAppPackage(ctx, signed, dexOutput, certificates, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001491 a.outputFile = signed
1492 } else {
Jooyung Han39ee1192020-03-23 20:21:11 +09001493 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001494 TransformZipAlign(ctx, alignedApk, dexOutput)
1495 a.outputFile = alignedApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001496 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001497 }
1498
1499 // TODO: Optionally compress the output apk.
1500
Jiyong Park592a6a42020-04-21 22:34:28 +09001501 if a.IsForPlatform() {
1502 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
1503 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001504
1505 // TODO: androidmk converter jni libs
1506}
1507
1508func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1509 return &a.prebuilt
1510}
1511
1512func (a *AndroidAppImport) Name() string {
1513 return a.prebuilt.Name(a.ModuleBase.Name())
1514}
1515
Dario Frenicde2a032019-10-27 00:29:22 +01001516func (a *AndroidAppImport) OutputFile() android.Path {
1517 return a.outputFile
1518}
1519
Jiyong Park618922e2020-01-08 13:35:43 +09001520func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1521 return nil
1522}
1523
Colin Cross503c1d02020-01-28 14:00:53 -08001524func (a *AndroidAppImport) Certificate() Certificate {
1525 return a.certificate
1526}
1527
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001528var dpiVariantGroupType reflect.Type
1529var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001530
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001531func initAndroidAppImportVariantGroupTypes() {
1532 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1533
1534 archNames := make([]string, len(android.ArchTypeList()))
1535 for i, archType := range android.ArchTypeList() {
1536 archNames[i] = archType.Name
1537 }
1538 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1539}
1540
1541// Populates all variant struct properties at creation time.
1542func (a *AndroidAppImport) populateAllVariantStructs() {
1543 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1544 a.AddProperties(a.dpiVariants)
1545
1546 a.archVariants = reflect.New(archVariantGroupType).Interface()
1547 a.AddProperties(a.archVariants)
1548}
1549
Jiyong Parkf7487312019-10-17 12:54:30 +09001550func (a *AndroidAppImport) Privileged() bool {
1551 return Bool(a.properties.Privileged)
1552}
1553
Jiyong Park592a6a42020-04-21 22:34:28 +09001554func (a *AndroidAppImport) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
1555 // android_app_import might have extra dependencies via uses_libs property.
1556 // Don't track the dependency as we don't automatically add those libraries
1557 // to the classpath. It should be explicitly added to java_libs property of APEX
1558 return false
1559}
1560
Colin Crossc2d24052020-05-13 11:05:02 -07001561func (a *AndroidAppImport) sdkVersion() sdkSpec {
1562 return sdkSpecFrom("")
1563}
1564
1565func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1566 return sdkSpecFrom("")
1567}
1568
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001569func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1570 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1571
1572 variantFields := make([]reflect.StructField, len(variants))
1573 for i, variant := range variants {
1574 variantFields[i] = reflect.StructField{
1575 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001576 Type: props,
1577 }
1578 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001579
1580 variantGroupStruct := reflect.StructOf(variantFields)
1581 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001582 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001583 Name: variantGroupName,
1584 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001585 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001586 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001587}
1588
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001589// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001590// DPI-specific apk source files can be specified using dpi_variants. Example:
1591//
1592// android_app_import {
1593// name: "example_import",
1594// apk: "prebuilts/example.apk",
1595// dpi_variants: {
1596// mdpi: {
1597// apk: "prebuilts/example_mdpi.apk",
1598// },
1599// xhdpi: {
1600// apk: "prebuilts/example_xhdpi.apk",
1601// },
1602// },
1603// certificate: "PRESIGNED",
1604// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001605func AndroidAppImportFactory() android.Module {
1606 module := &AndroidAppImport{}
1607 module.AddProperties(&module.properties)
1608 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001609 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001610 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001611 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001612 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001613 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001614
Jiyong Park592a6a42020-04-21 22:34:28 +09001615 android.InitApexModule(module)
Jaewoong Jung6abfbf72020-05-26 20:10:08 -07001616 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1617 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001618 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001619
1620 return module
1621}
Colin Cross50ddcc42019-05-16 12:28:22 -07001622
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001623type androidTestImportProperties struct {
1624 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1625 Preprocessed *bool
1626}
1627
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001628type AndroidTestImport struct {
1629 AndroidAppImport
1630
1631 testProperties testProperties
1632
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001633 testImportProperties androidTestImportProperties
1634
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001635 data android.Paths
1636}
1637
1638func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001639 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1640
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001641 a.generateAndroidBuildActions(ctx)
1642
1643 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1644}
1645
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001646func (a *AndroidTestImport) InstallInTestcases() bool {
1647 return true
1648}
1649
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001650// android_test_import imports a prebuilt test apk with additional processing specified in the
1651// module. DPI or arch variant configurations can be made as with android_app_import.
1652func AndroidTestImportFactory() android.Module {
1653 module := &AndroidTestImport{}
1654 module.AddProperties(&module.properties)
1655 module.AddProperties(&module.dexpreoptProperties)
1656 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1657 module.AddProperties(&module.testProperties)
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001658 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001659 module.populateAllVariantStructs()
1660 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1661 module.processVariants(ctx)
1662 })
1663
Colin Crossc80828d2020-05-06 22:29:10 -07001664 module.dexpreopter.isTest = true
1665
Jiyong Park592a6a42020-04-21 22:34:28 +09001666 android.InitApexModule(module)
Jaewoong Jung243688e2020-05-01 15:50:08 -07001667 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1668 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001669 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1670
1671 return module
1672}
1673
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001674type RuntimeResourceOverlay struct {
1675 android.ModuleBase
1676 android.DefaultableModuleBase
Roshan Pius4df2bc72020-04-27 09:42:27 -07001677 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001678 aapt
1679
Roshan Pius4df2bc72020-04-27 09:42:27 -07001680 properties RuntimeResourceOverlayProperties
1681 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001682
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001683 certificate Certificate
1684
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001685 outputFile android.Path
1686 installDir android.InstallPath
1687}
1688
1689type RuntimeResourceOverlayProperties struct {
1690 // the name of a certificate in the default certificate directory or an android_app_certificate
1691 // module name in the form ":module".
1692 Certificate *string
1693
Liz Kammer966b2f02020-05-19 16:15:25 -07001694 // Name of the signing certificate lineage file.
1695 Lineage *string
1696
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001697 // optional theme name. If specified, the overlay package will be applied
1698 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1699 Theme *string
1700
1701 // if not blank, set to the version of the sdk to compile against.
1702 // Defaults to compiling against the current platform.
1703 Sdk_version *string
1704
1705 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1706 // Defaults to sdk_version if not set.
1707 Min_sdk_version *string
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001708
1709 // list of android_library modules whose resources are extracted and linked against statically
1710 Static_libs []string
1711
1712 // list of android_app modules whose resources are extracted and linked against
1713 Resource_libs []string
Jaewoong Jungad0177b2020-04-24 15:22:40 -07001714
1715 // Names of modules to be overridden. Listed modules can only be other overlays
1716 // (in Make or Soong).
1717 // This does not completely prevent installation of the overridden overlays, but if both
1718 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1719 // from PRODUCT_PACKAGES.
1720 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001721}
1722
Jiyong Park69aeba92020-04-24 21:16:36 +09001723// RuntimeResourceOverlayModule interface is used by the apex package to gather information from
1724// a RuntimeResourceOverlay module.
1725type RuntimeResourceOverlayModule interface {
1726 android.Module
1727 OutputFile() android.Path
1728 Certificate() Certificate
1729 Theme() string
1730}
1731
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001732func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1733 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1734 if sdkDep.hasFrameworkLibs() {
1735 r.aapt.deps(ctx, sdkDep)
1736 }
1737
1738 cert := android.SrcIsModule(String(r.properties.Certificate))
1739 if cert != "" {
1740 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1741 }
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001742
1743 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1744 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001745}
1746
1747func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1748 // Compile and link resources
1749 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001750 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Pius4df2bc72020-04-27 09:42:27 -07001751 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1752 // Allow the override of "package name" and "overlay target package name"
1753 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1754 if overridden || r.overridableProperties.Package_name != nil {
1755 // The product override variable has a priority over the package_name property.
1756 if !overridden {
1757 manifestPackageName = *r.overridableProperties.Package_name
1758 }
1759 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
1760 }
1761 if r.overridableProperties.Target_package_name != nil {
1762 aaptLinkFlags = append(aaptLinkFlags,
1763 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1764 }
1765 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001766
1767 // Sign the built package
Colin Crossc2d24052020-05-13 11:05:02 -07001768 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001769 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1770 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer966b2f02020-05-19 16:15:25 -07001771 var lineageFile android.Path
1772 if lineage := String(r.properties.Lineage); lineage != "" {
1773 lineageFile = android.PathForModuleSrc(ctx, lineage)
1774 }
1775 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001776 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001777
1778 r.outputFile = signed
1779 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1780 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1781}
1782
Jiyong Park6a927c42020-01-21 02:03:43 +09001783func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1784 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001785}
1786
1787func (r *RuntimeResourceOverlay) systemModules() string {
1788 return ""
1789}
1790
Jiyong Park6a927c42020-01-21 02:03:43 +09001791func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001792 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001793 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001794 }
1795 return r.sdkVersion()
1796}
1797
Jiyong Park6a927c42020-01-21 02:03:43 +09001798func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001799 return r.sdkVersion()
1800}
1801
Jiyong Park69aeba92020-04-24 21:16:36 +09001802func (r *RuntimeResourceOverlay) Certificate() Certificate {
1803 return r.certificate
1804}
1805
1806func (r *RuntimeResourceOverlay) OutputFile() android.Path {
1807 return r.outputFile
1808}
1809
1810func (r *RuntimeResourceOverlay) Theme() string {
1811 return String(r.properties.Theme)
1812}
1813
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001814// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1815// system resources at run time.
1816func RuntimeResourceOverlayFactory() android.Module {
1817 module := &RuntimeResourceOverlay{}
1818 module.AddProperties(
1819 &module.properties,
Roshan Pius4df2bc72020-04-27 09:42:27 -07001820 &module.aaptProperties,
1821 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001822
Roshan Pius4df2bc72020-04-27 09:42:27 -07001823 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1824 android.InitDefaultableModule(module)
1825 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001826 return module
1827}
1828
Colin Cross50ddcc42019-05-16 12:28:22 -07001829type UsesLibraryProperties struct {
1830 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1831 Uses_libs []string
1832
1833 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1834 // required=false.
1835 Optional_uses_libs []string
1836
1837 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1838 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1839 Enforce_uses_libs *bool
1840}
1841
1842// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1843// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1844// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1845// with knowledge of their shared libraries.
1846type usesLibrary struct {
1847 usesLibraryProperties UsesLibraryProperties
1848}
1849
Paul Duffin250e6192019-06-07 10:44:37 +01001850func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001851 if !ctx.Config().UnbundledBuild() {
1852 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1853 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001854 // Only add these extra dependencies if the module depends on framework libs. This avoids
1855 // creating a cyclic dependency:
1856 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1857 if hasFrameworkLibs {
Colin Cross3245b2c2019-06-07 13:18:09 -07001858 // dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
1859 // to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
1860 // library to dexpreopt.
1861 ctx.AddVariationDependencies(nil, usesLibTag,
1862 "org.apache.http.legacy",
1863 "android.hidl.base-V1.0-java",
1864 "android.hidl.manager-V1.0-java")
Ulya Trafimovichc9af5382020-05-29 15:35:06 +01001865 ctx.AddVariationDependencies(nil, usesLibTag, optionalUsesLibs...)
Colin Cross3245b2c2019-06-07 13:18:09 -07001866 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001867 }
1868}
1869
1870// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1871// build.
1872func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1873 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1874 return optionalUsesLibs
1875}
1876
1877// usesLibraryPaths returns a map of module names of shared library dependencies to the paths to their dex jars.
1878func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) map[string]android.Path {
1879 usesLibPaths := make(map[string]android.Path)
1880
1881 if !ctx.Config().UnbundledBuild() {
1882 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
1883 if lib, ok := m.(Dependency); ok {
Ulyana Trafimovich5539e7b2020-06-04 14:08:17 +00001884 if dexJar := lib.DexJarBuildPath(); dexJar != nil {
Colin Cross50ddcc42019-05-16 12:28:22 -07001885 usesLibPaths[ctx.OtherModuleName(m)] = dexJar
1886 } else {
1887 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must produce a dex jar, does it have installable: true?",
1888 ctx.OtherModuleName(m))
1889 }
1890 } else if ctx.Config().AllowMissingDependencies() {
1891 ctx.AddMissingDependencies([]string{ctx.OtherModuleName(m)})
1892 } else {
1893 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library",
1894 ctx.OtherModuleName(m))
1895 }
1896 })
1897 }
1898
1899 return usesLibPaths
1900}
1901
1902// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1903// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1904// unconditionally in the future.
1905func (u *usesLibrary) enforceUsesLibraries() bool {
1906 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1907 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1908 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1909}
1910
1911// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1912// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1913func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1914 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1915
1916 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001917 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001918 Flag("--enforce-uses-libraries").
1919 Input(manifest).
1920 FlagWithOutput("-o ", outputFile)
1921
1922 for _, lib := range u.usesLibraryProperties.Uses_libs {
1923 cmd.FlagWithArg("--uses-library ", lib)
1924 }
1925
1926 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1927 cmd.FlagWithArg("--optional-uses-library ", lib)
1928 }
1929
1930 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1931
1932 return outputFile
1933}
1934
1935// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1936// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1937func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1938 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1939
1940 rule := android.NewRuleBuilder()
1941 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1942 rule.Command().
1943 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1944 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1945 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1946 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1947 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
1948
1949 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1950
1951 return outputFile
1952}