blob: c25835c41b4f52db59f7db30ab29c4053da364db [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"
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +010031 "android/soong/dexpreopt"
Colin Cross303e21f2018-08-07 16:49:25 -070032 "android/soong/tradefed"
Colin Cross30e076a2015-04-13 13:58:27 -070033)
34
Jaewoong Jung3e18b192019-06-11 12:25:34 -070035var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"}
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070036
Colin Cross3bc7ffa2017-11-22 16:19:37 -080037func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000038 RegisterAppBuildComponents(android.InitRegistrationContext)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -070039
40 initAndroidAppImportVariantGroupTypes()
Colin Cross3bc7ffa2017-11-22 16:19:37 -080041}
42
Paul Duffinf9b1da02019-12-18 19:51:55 +000043func RegisterAppBuildComponents(ctx android.RegistrationContext) {
44 ctx.RegisterModuleType("android_app", AndroidAppFactory)
45 ctx.RegisterModuleType("android_test", AndroidTestFactory)
46 ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
47 ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
48 ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
49 ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory)
Roshan Pius4df2bc72020-04-27 09:42:27 -070050 ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000051 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
52 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080053 ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory)
Sasha Smundaka7856c02020-04-23 09:49:59 -070054 ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory)
55}
56
57type AndroidAppSetProperties struct {
58 // APK Set path
59 Set *string
60
61 // Specifies that this app should be installed to the priv-app directory,
62 // where the system will grant it additional privileges not available to
63 // normal apps.
64 Privileged *bool
65
66 // APKs in this set use prerelease SDK version
67 Prerelease *bool
68
69 // Names of modules to be overridden. Listed modules can only be other apps
70 // (in Make or Soong).
71 Overrides []string
72}
73
74type AndroidAppSet struct {
75 android.ModuleBase
76 android.DefaultableModuleBase
77 prebuilt android.Prebuilt
78
79 properties AndroidAppSetProperties
80 packedOutput android.WritablePath
Liz Kammercada8072020-07-28 15:47:38 -070081 installFile string
Jaewoong Jung11c1e0f2020-06-29 19:18:44 -070082 apkcertsFile android.ModuleOutPath
Sasha Smundaka7856c02020-04-23 09:49:59 -070083}
84
85func (as *AndroidAppSet) Name() string {
86 return as.prebuilt.Name(as.ModuleBase.Name())
87}
88
89func (as *AndroidAppSet) IsInstallable() bool {
90 return true
91}
92
93func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
94 return &as.prebuilt
95}
96
97func (as *AndroidAppSet) Privileged() bool {
98 return Bool(as.properties.Privileged)
99}
100
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700101func (as *AndroidAppSet) OutputFile() android.Path {
102 return as.packedOutput
103}
104
Liz Kammercada8072020-07-28 15:47:38 -0700105func (as *AndroidAppSet) InstallFile() string {
106 return as.installFile
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700107}
108
Colin Cross4fb652d2020-07-09 19:05:35 -0700109func (as *AndroidAppSet) APKCertsFile() android.Path {
110 return as.apkcertsFile
111}
112
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700113var TargetCpuAbi = map[string]string{
Sasha Smundaka7856c02020-04-23 09:49:59 -0700114 "arm": "ARMEABI_V7A",
115 "arm64": "ARM64_V8A",
116 "x86": "X86",
117 "x86_64": "X86_64",
118}
119
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700120func SupportedAbis(ctx android.ModuleContext) []string {
Jaewoong Jung829b7132020-06-10 12:23:32 -0700121 abiName := func(targetIdx int, deviceArch string) string {
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700122 if abi, found := TargetCpuAbi[deviceArch]; found {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700123 return abi
124 }
Jaewoong Jung829b7132020-06-10 12:23:32 -0700125 ctx.ModuleErrorf("Target %d has invalid Arch: %s", targetIdx, deviceArch)
Sasha Smundaka7856c02020-04-23 09:49:59 -0700126 return "BAD_ABI"
127 }
128
Jaewoong Jung829b7132020-06-10 12:23:32 -0700129 var result []string
130 for i, target := range ctx.Config().Targets[android.Android] {
131 result = append(result, abiName(i, target.Arch.ArchType.String()))
Sasha Smundaka7856c02020-04-23 09:49:59 -0700132 }
133 return result
134}
135
136func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700137 as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip")
Jaewoong Jung11c1e0f2020-06-29 19:18:44 -0700138 as.apkcertsFile = android.PathForModuleOut(ctx, "apkcerts.txt")
Liz Kammercada8072020-07-28 15:47:38 -0700139 // We are assuming here that the install file in the APK
Sasha Smundaka7856c02020-04-23 09:49:59 -0700140 // set has `.apk` suffix. If it doesn't the build will fail.
141 // APK sets containing APEX files are handled elsewhere.
Liz Kammercada8072020-07-28 15:47:38 -0700142 as.installFile = as.BaseModuleName() + ".apk"
Sasha Smundaka7856c02020-04-23 09:49:59 -0700143 screenDensities := "all"
144 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
145 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
146 }
147 // TODO(asmundak): handle locales.
148 // TODO(asmundak): do we support device features
149 ctx.Build(pctx,
150 android.BuildParams{
Jaewoong Jung11c1e0f2020-06-29 19:18:44 -0700151 Rule: extractMatchingApks,
152 Description: "Extract APKs from APK set",
153 Output: as.packedOutput,
154 ImplicitOutput: as.apkcertsFile,
155 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
Sasha Smundaka7856c02020-04-23 09:49:59 -0700156 Args: map[string]string{
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700157 "abis": strings.Join(SupportedAbis(ctx), ","),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700158 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
159 "screen-densities": screenDensities,
Dan Albert4f378d72020-07-23 17:32:15 -0700160 "sdk-version": ctx.Config().PlatformSdkVersion().String(),
Sasha Smundake88b4362020-06-22 16:53:33 -0700161 "stem": as.BaseModuleName(),
Jaewoong Jung11c1e0f2020-06-29 19:18:44 -0700162 "apkcerts": as.apkcertsFile.String(),
163 "partition": as.PartitionTag(ctx.DeviceConfig()),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700164 },
165 })
Sasha Smundaka7856c02020-04-23 09:49:59 -0700166}
167
168// android_app_set extracts a set of APKs based on the target device
169// configuration and installs this set as "split APKs".
Liz Kammercada8072020-07-28 15:47:38 -0700170// The extracted set always contains an APK whose name is
Sasha Smundak613cbb12020-06-05 10:27:23 -0700171// _module_name_.apk and every split APK matching target device.
172// The extraction of the density-specific splits depends on
173// PRODUCT_AAPT_PREBUILT_DPI variable. If present (its value should
174// be a list density names: LDPI, MDPI, HDPI, etc.), only listed
175// splits will be extracted. Otherwise all density-specific splits
176// will be extracted.
Sasha Smundaka7856c02020-04-23 09:49:59 -0700177func AndroidApkSetFactory() android.Module {
178 module := &AndroidAppSet{}
179 module.AddProperties(&module.properties)
180 InitJavaModule(module, android.DeviceSupported)
181 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
182 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000183}
184
Colin Cross30e076a2015-04-13 13:58:27 -0700185// AndroidManifest.xml merging
186// package splits
187
Colin Crossfabb6082018-02-20 17:22:23 -0800188type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700189 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700190 Additional_certificates []string
191
192 // If set, create package-export.apk, which other packages can
193 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800194 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700195
Colin Cross16056062017-12-13 22:46:28 -0800196 // Specifies that this app should be installed to the priv-app directory,
197 // where the system will grant it additional privileges not available to
198 // normal apps.
199 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700200
201 // list of resource labels to generate individual resource packages
202 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400203
204 // Names of modules to be overridden. Listed modules can only be other binaries
205 // (in Make or Soong).
206 // This does not completely prevent installation of the overridden binaries, but if both
207 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
208 // from PRODUCT_PACKAGES.
209 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700210
211 // list of native libraries that will be provided in or alongside the resulting jar
212 Jni_libs []string `android:"arch_variant"`
213
Colin Cross7204cf02020-05-06 17:51:39 -0700214 // if true, use JNI libraries that link against platform APIs even if this module sets
Colin Crossee87c602020-02-19 16:57:15 -0800215 // sdk_version.
216 Jni_uses_platform_apis *bool
217
Colin Cross7204cf02020-05-06 17:51:39 -0700218 // if true, use JNI libraries that link against SDK APIs even if this module does not set
219 // sdk_version.
220 Jni_uses_sdk_apis *bool
221
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700222 // STL library to use for JNI libraries.
223 Stl *string `android:"arch_variant"`
224
Colin Crosse4246ab2019-02-05 21:55:21 -0800225 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
226 // 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 +0900227 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
228 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
229 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -0800230 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -0800231
232 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
233 // they are used from inside the APK at runtime.
234 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -0700235
236 // Forces native libraries to always be packaged into the APK,
237 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
238 // True for android_test* modules.
239 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700240
241 // If set, find and merge all NOTICE files that this module and its dependencies have and store
242 // it in the APK as an asset.
243 Embed_notices *bool
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700244
245 // cc.Coverage related properties
246 PreventInstall bool `blueprint:"mutated"`
247 HideFromMake bool `blueprint:"mutated"`
248 IsCoverageVariant bool `blueprint:"mutated"`
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100249
250 // Whether this app is considered mainline updatable or not. When set to true, this will enforce
Artur Satayevf40fc852020-04-16 13:43:02 +0100251 // additional rules to make sure an app can safely be updated. Default is false.
252 // Prefer using other specific properties if build behaviour must be changed; avoid using this
253 // flag for anything but neverallow rules (unless the behaviour change is invisible to owners).
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100254 Updatable *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700255}
256
Jaewoong Jung525443a2019-02-28 15:35:54 -0800257// android_app properties that can be overridden by override_android_app
258type overridableAppProperties struct {
259 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
260 // or an android_app_certificate module name in the form ":module".
261 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700262
Liz Kammere2b27f42020-05-07 13:24:05 -0700263 // Name of the signing certificate lineage file.
264 Lineage *string
265
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700266 // the package name of this app. The package name in the manifest file is used if one was not given.
267 Package_name *string
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800268
269 // the logging parent of this app.
270 Logging_parent *string
Liz Kammer9f9fd022020-06-18 19:44:06 +0000271
272 // Whether to rename the package in resources to the override name rather than the base name. Defaults to true.
273 Rename_resources_package *bool
Jaewoong Jung525443a2019-02-28 15:35:54 -0800274}
275
Roshan Pius4df2bc72020-04-27 09:42:27 -0700276// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
277type OverridableRuntimeResourceOverlayProperties struct {
278 // the package name of this app. The package name in the manifest file is used if one was not given.
279 Package_name *string
280
281 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
282 Target_package_name *string
283}
284
Colin Cross30e076a2015-04-13 13:58:27 -0700285type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700286 Library
287 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800288 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700289
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900290 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700291
Colin Crossfabb6082018-02-20 17:22:23 -0800292 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700293
Jaewoong Jung525443a2019-02-28 15:35:54 -0800294 overridableAppProperties overridableAppProperties
295
Colin Cross403cc152020-07-06 14:15:24 -0700296 jniLibs []jniLib
297 installPathForJNISymbols android.Path
298 embeddedJniLibs bool
299 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700300
301 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800302
303 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
304 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800305
Colin Cross70dda7e2019-10-01 22:05:35 -0700306 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700307
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700308 onDeviceDir string
309
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800310 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700311
312 noticeOutputs android.NoticeOutputs
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900313
314 overriddenManifestPackageName string
Artur Satayev1111b842020-04-27 19:05:28 +0100315
316 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800317}
318
Martin Stjernholm6d415272020-01-31 17:10:36 +0000319func (a *AndroidApp) IsInstallable() bool {
320 return Bool(a.properties.Installable)
321}
322
Colin Cross89c31582018-04-30 15:55:11 -0700323func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
324 return nil
325}
326
Colin Cross66f78822018-05-02 12:58:28 -0700327func (a *AndroidApp) ExportedStaticPackages() android.Paths {
328 return nil
329}
330
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900331func (a *AndroidApp) OutputFile() android.Path {
332 return a.outputFile
333}
334
Colin Cross503c1d02020-01-28 14:00:53 -0800335func (a *AndroidApp) Certificate() Certificate {
336 return a.certificate
337}
338
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700339func (a *AndroidApp) JniCoverageOutputs() android.Paths {
340 return a.jniCoverageOutputs
341}
342
Colin Crossa97c5d32018-03-28 14:58:31 -0700343var _ AndroidLibraryDependency = (*AndroidApp)(nil)
344
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900345type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800346 Pem, Key android.Path
347 presigned bool
348}
349
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700350var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800351
352func (c Certificate) AndroidMkString() string {
353 if c.presigned {
354 return "PRESIGNED"
355 } else {
356 return c.Pem.String()
357 }
Colin Cross30e076a2015-04-13 13:58:27 -0700358}
359
Colin Cross46c9b8b2017-06-22 16:51:17 -0700360func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
361 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700362
Jiyong Park6a927c42020-01-21 02:03:43 +0900363 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700364 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
365 }
366
Paul Duffin250e6192019-06-07 10:44:37 +0100367 sdkDep := decodeSdkDep(ctx, sdkContext(a))
368 if sdkDep.hasFrameworkLibs() {
369 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700370 }
Colin Crossa4f08812018-10-02 22:03:40 -0700371
Colin Cross3c007702020-05-08 11:20:24 -0700372 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
373
374 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
375 ctx.PropertyErrorf("jni_uses_sdk_apis",
376 "can only be set for modules that do not set sdk_version")
377 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
378 ctx.PropertyErrorf("jni_uses_platform_apis",
379 "can only be set for modules that set sdk_version")
380 }
381
Peter Collingbournead84f972019-12-17 16:46:18 -0800382 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700383 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700384 variation := append(jniTarget.Variations(),
385 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossc511bc52020-04-07 16:50:32 +0000386
387 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
388 // unless jni_uses_platform_apis is set.
Colin Crossc2d24052020-05-13 11:05:02 -0700389 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
390 // have stable APIs through the VNDK.
391 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
392 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross7204cf02020-05-06 17:51:39 -0700393 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Crossc511bc52020-04-07 16:50:32 +0000394 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
395 }
Colin Crossa4f08812018-10-02 22:03:40 -0700396 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
397 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700398
Paul Duffin250e6192019-06-07 10:44:37 +0100399 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700400}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700401
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700402func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800403 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700404 if cert != "" {
405 ctx.AddDependency(ctx.Module(), certificateTag, cert)
406 }
407
408 for _, cert := range a.appProperties.Additional_certificates {
409 cert = android.SrcIsModule(cert)
410 if cert != "" {
411 ctx.AddDependency(ctx.Module(), certificateTag, cert)
412 } else {
413 ctx.PropertyErrorf("additional_certificates",
414 `must be names of android_app_certificate modules in the form ":module"`)
415 }
416 }
Colin Cross30e076a2015-04-13 13:58:27 -0700417}
418
Jeongik Cha538c0d02019-07-11 15:54:27 +0900419func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
420 a.generateAndroidBuildActions(ctx)
421}
422
Colin Cross46c9b8b2017-06-22 16:51:17 -0700423func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100424 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700425 a.generateAndroidBuildActions(ctx)
426}
427
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100428func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev849f8442020-04-28 14:57:42 +0100429 if a.Updatable() {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100430 if !a.sdkVersion().stable() {
431 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
432 }
Artur Satayevf40fc852020-04-16 13:43:02 +0100433 if String(a.deviceProperties.Min_sdk_version) == "" {
434 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
435 }
Jooyung Han749dc692020-04-15 11:03:39 +0900436
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900437 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
438 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
Dan Albertc8060532020-07-22 22:32:17 -0700439 android.CheckMinSdkVersion(a, ctx, minSdkVersion.ApiLevel(ctx))
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900440 } else {
441 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
442 }
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100443 }
444
445 a.checkPlatformAPI(ctx)
446 a.checkSdkVersions(ctx)
447}
448
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900449// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
450// This check is enforced for "updatable" APKs (including APK-in-APEX).
451// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
452// because, sdk_version is overridden by min_sdk_version (if set as smaller)
453// and linkType is checked with dependencies so we can be sure that the whole dependency tree
454// will meet the requirements.
455func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
456 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
457 ctx.VisitDirectDeps(func(m android.Module) {
458 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
459 return
460 }
461 dep, _ := m.(*cc.Module)
Jooyung Han652d5b32020-05-20 17:12:13 +0900462 // The domain of cc.sdk_version is "current" and <number>
463 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
464 // properly regardless of sdk finalization.
465 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
466 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900467 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
468 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
469 return
470 }
471
472 })
473}
474
Sasha Smundak6ad77252019-05-01 13:16:22 -0700475// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800476// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700477func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900478 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800479 if err != nil {
480 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
481 }
482
Colin Cross56a83212020-09-15 18:30:11 -0700483 apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
Jiyong Park52cd06f2019-11-11 10:14:32 +0900484 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
Colin Cross56a83212020-09-15 18:30:11 -0700485 !apexInfo.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800486}
487
Colin Cross43f08db2018-11-12 10:13:39 -0800488// Returns whether this module should have the dex file stored uncompressed in the APK.
489func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800490 if Bool(a.appProperties.Use_embedded_dex) {
491 return true
492 }
493
Colin Cross53a87f52019-06-25 13:35:30 -0700494 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
495 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900496 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000497 return true
498 }
499
Colin Cross53a87f52019-06-25 13:35:30 -0700500 if ctx.Config().UnbundledBuild() {
501 return false
502 }
503
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700504 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700505}
506
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700507func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
Colin Cross56a83212020-09-15 18:30:11 -0700508 apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700509 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Colin Cross56a83212020-09-15 18:30:11 -0700510 !apexInfo.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700511}
512
Liz Kammer9f9fd022020-06-18 19:44:06 +0000513func generateAaptRenamePackageFlags(packageName string, renameResourcesPackage bool) []string {
514 aaptFlags := []string{"--rename-manifest-package " + packageName}
515 if renameResourcesPackage {
516 // Required to rename the package name in the resources table.
517 aaptFlags = append(aaptFlags, "--rename-resources-package "+packageName)
518 }
519 return aaptFlags
520}
521
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900522func (a *AndroidApp) OverriddenManifestPackageName() string {
523 return a.overriddenManifestPackageName
524}
525
Liz Kammer9f9fd022020-06-18 19:44:06 +0000526func (a *AndroidApp) renameResourcesPackage() bool {
527 return proptools.BoolDefault(a.overridableAppProperties.Rename_resources_package, true)
528}
529
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800530func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000531 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
532
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700533 // Ask manifest_fixer to add or update the application element indicating this app has no code.
534 a.aapt.hasNoCode = !a.hasCode(ctx)
535
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800536 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800537
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800538 // 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 -0800539 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700540 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800541 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700542 }
543
Dan Willemsen72be5902018-10-24 20:24:57 -0700544 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
545 // Product AAPT config
546 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800547 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700548 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700549
Dan Willemsen72be5902018-10-24 20:24:57 -0700550 // Product AAPT preferred config
551 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800552 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700553 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700554 }
555
Jiyong Park7f67f482019-01-05 12:57:48 +0900556 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700557 if overridden || a.overridableAppProperties.Package_name != nil {
558 // The product override variable has a priority over the package_name property.
559 if !overridden {
560 manifestPackageName = *a.overridableAppProperties.Package_name
561 }
Liz Kammer9f9fd022020-06-18 19:44:06 +0000562 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, a.renameResourcesPackage())...)
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900563 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900564 }
565
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800566 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
567
Colin Crosse560c4a2019-03-19 16:03:11 -0700568 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700569 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800570 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800571 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700572
Colin Cross46c9b8b2017-06-22 16:51:17 -0700573 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700574 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800575}
Colin Cross30e076a2015-04-13 13:58:27 -0700576
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800577func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700578 var staticLibProguardFlagFiles android.Paths
579 ctx.VisitDirectDeps(func(m android.Module) {
580 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
581 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
582 }
583 })
584
585 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
586
587 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
588 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800589}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800590
Colin Cross403cc152020-07-06 14:15:24 -0700591func (a *AndroidApp) installPath(ctx android.ModuleContext) android.InstallPath {
Colin Cross43f08db2018-11-12 10:13:39 -0800592 var installDir string
593 if ctx.ModuleName() == "framework-res" {
594 // framework-res.apk is installed as system/framework/framework-res.apk
595 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900596 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800597 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800598 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800599 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800600 }
Colin Cross403cc152020-07-06 14:15:24 -0700601
602 return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
603}
604
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +0100605func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext, sdkLibs dexpreopt.LibraryPaths) android.Path {
Colin Cross403cc152020-07-06 14:15:24 -0700606 a.dexpreopter.installPath = a.installPath(ctx)
Liz Kammera7a64f32020-07-09 15:16:41 -0700607 if a.dexProperties.Uncompress_dex == nil {
David Srbeckye033cba2020-05-20 22:20:28 +0100608 // If the value was not force-set by the user, use reasonable default based on the module.
Liz Kammera7a64f32020-07-09 15:16:41 -0700609 a.dexProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
David Srbeckye033cba2020-05-20 22:20:28 +0100610 }
Liz Kammera7a64f32020-07-09 15:16:41 -0700611 a.dexpreopter.uncompressedDex = *a.dexProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700612 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
613 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
614 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
615 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +0100616 a.dexpreopter.libraryPaths.AddLibraryPaths(sdkLibs)
Colin Cross50ddcc42019-05-16 12:28:22 -0700617 a.dexpreopter.manifestFile = a.mergedManifestFile
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100618 a.exportedSdkLibs = make(dexpreopt.LibraryPaths)
Colin Cross50ddcc42019-05-16 12:28:22 -0700619
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800620 if ctx.ModuleName() != "framework-res" {
621 a.Module.compile(ctx, a.aaptSrcJar)
622 }
Colin Cross30e076a2015-04-13 13:58:27 -0700623
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800624 return a.maybeStrippedDexJarFile
625}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800626
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800627func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700628 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700629 if len(jniLibs) > 0 {
Colin Cross403cc152020-07-06 14:15:24 -0700630 a.jniLibs = jniLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700631 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700632 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Colin Cross403cc152020-07-06 14:15:24 -0700633 a.installPathForJNISymbols = a.installPath(ctx).ToMakePath()
Sasha Smundak6ad77252019-05-01 13:16:22 -0700634 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700635 for _, jni := range jniLibs {
636 if jni.coverageFile.Valid() {
Jaewoong Jung46984ee2020-04-07 13:07:55 -0700637 // Only collect coverage for the first target arch if this is a multilib target.
638 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
639 // data file path collisions since the current coverage file path format doesn't contain
640 // arch-related strings. This is fine for now though; the code coverage team doesn't use
641 // multi-arch targets such as test_suite_* for coverage collections yet.
642 //
643 // Work with the team to come up with a new format that handles multilib modules properly
644 // and change this.
645 if len(ctx.Config().Targets[android.Android]) == 1 ||
646 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
647 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
648 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700649 }
650 }
Colin Cross403cc152020-07-06 14:15:24 -0700651 a.embeddedJniLibs = true
Colin Crossa4f08812018-10-02 22:03:40 -0700652 }
653 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800654 return jniJarFile
655}
Colin Crossa4f08812018-10-02 22:03:40 -0700656
Colin Cross403cc152020-07-06 14:15:24 -0700657func (a *AndroidApp) JNISymbolsInstalls(installPath string) android.RuleBuilderInstalls {
658 var jniSymbols android.RuleBuilderInstalls
659 for _, jniLib := range a.jniLibs {
660 if jniLib.unstrippedFile != nil {
661 jniSymbols = append(jniSymbols, android.RuleBuilderInstall{
662 From: jniLib.unstrippedFile,
663 To: filepath.Join(installPath, targetToJniDir(jniLib.target), jniLib.unstrippedFile.Base()),
664 })
665 }
666 }
667 return jniSymbols
668}
669
Jaewoong Jung0949f312019-09-11 10:25:18 -0700670func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700671 // Collect NOTICE files from all dependencies.
672 seenModules := make(map[android.Module]bool)
673 noticePathSet := make(map[android.Path]bool)
674
675 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
676 // Have we already seen this?
677 if _, ok := seenModules[child]; ok {
678 return false
679 }
680 seenModules[child] = true
681
682 // Skip host modules.
Jiyong Park1613e552020-09-14 19:43:17 +0900683 if child.Target().Os.Class == android.Host {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700684 return false
685 }
686
Bob Badoura75b0572020-02-18 20:21:55 -0800687 paths := child.(android.Module).NoticeFiles()
688 if len(paths) > 0 {
689 for _, path := range paths {
690 noticePathSet[path] = true
691 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700692 }
693 return true
694 })
695
696 // If the app has one, add it too.
Bob Badoura75b0572020-02-18 20:21:55 -0800697 if len(a.NoticeFiles()) > 0 {
698 for _, path := range a.NoticeFiles() {
699 noticePathSet[path] = true
700 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700701 }
702
703 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700704 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700705 }
706 var noticePaths []android.Path
707 for path := range noticePathSet {
708 noticePaths = append(noticePaths, path)
709 }
710 sort.Slice(noticePaths, func(i, j int) bool {
711 return noticePaths[i].String() < noticePaths[j].String()
712 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700713
Jaewoong Jung0949f312019-09-11 10:25:18 -0700714 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700715}
716
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700717// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
718// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
719func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
720 if android.SrcIsModule(certPropValue) == "" {
721 var mainCert Certificate
722 if certPropValue != "" {
723 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
724 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800725 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
726 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700727 }
728 } else {
729 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800730 mainCert = Certificate{
731 Pem: pem,
732 Key: key,
733 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700734 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700735 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700736 }
737
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700738 if !m.Platform() {
739 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900740 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
741 if strings.HasPrefix(certPath, systemCertPath) {
742 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
Colin Cross440e0d02020-06-11 11:32:11 -0700743 allowed := ctx.Config().EnforceSystemCertificateAllowList()
Jeongik Chac9464142019-01-07 12:07:27 +0900744
Colin Cross440e0d02020-06-11 11:32:11 -0700745 if enforceSystemCert && !inList(m.Name(), allowed) {
Jeongik Chac9464142019-01-07 12:07:27 +0900746 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
747 }
748 }
749 }
750
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700751 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800752}
753
Jooyung Han39ee1192020-03-23 20:21:11 +0900754func (a *AndroidApp) InstallApkName() string {
755 return a.installApkName
756}
757
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800758func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700759 var apkDeps android.Paths
760
Colin Cross56a83212020-09-15 18:30:11 -0700761 if !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform() {
762 a.hideApexVariantFromMake = true
763 }
764
Jeongik Cha538c0d02019-07-11 15:54:27 +0900765 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
766 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
767
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800768 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800769 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800770
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700771 if ctx.ModuleName() == "framework-res" {
772 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700773 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900774 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700775 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
776 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800777 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700778 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700779 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700780 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700781 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700782
Jaewoong Jung0949f312019-09-11 10:25:18 -0700783 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700784 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
785 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
786 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700787
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800788 // Process all building blocks, from AAPT to certificates.
789 a.aaptBuildActions(ctx)
790
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +0100791 // The decision to enforce <uses-library> checks is made before adding implicit SDK libraries.
792 a.usesLibrary.freezeEnforceUsesLibraries()
793
794 // Add implicit SDK libraries to <uses-library> list.
795 for _, usesLib := range android.SortedStringKeys(a.aapt.sdkLibraries) {
Ulya Trafimovich663dc532020-09-10 12:48:53 +0100796 a.usesLibrary.addLib(usesLib, inList(usesLib, dexpreopt.OptionalCompatUsesLibs))
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +0100797 }
798
799 // Check that the <uses-library> list is coherent with the manifest.
Colin Cross50ddcc42019-05-16 12:28:22 -0700800 if a.usesLibrary.enforceUsesLibraries() {
801 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
802 apkDeps = append(apkDeps, manifestCheckFile)
803 }
804
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800805 a.proguardBuildActions(ctx)
806
Colin Cross014489c2020-06-02 20:09:13 -0700807 a.linter.mergedManifest = a.aapt.mergedManifestFile
808 a.linter.manifest = a.aapt.manifestPath
809 a.linter.resources = a.aapt.resourceFiles
Colin Crossc0efd1d2020-07-03 11:56:24 -0700810 a.linter.buildModuleReportZip = ctx.Config().UnbundledBuildApps()
Colin Cross014489c2020-06-02 20:09:13 -0700811
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +0100812 dexJarFile := a.dexBuildActions(ctx, a.aapt.sdkLibraries)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800813
Colin Crossc2d24052020-05-13 11:05:02 -0700814 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800815 jniJarFile := a.jniBuildActions(jniLibs, ctx)
816
817 if ctx.Failed() {
818 return
819 }
820
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700821 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
822 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800823
824 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800825 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700826 v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature)
827 var v4SignatureFile android.WritablePath = nil
828 if v4SigningRequested {
829 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig")
830 }
Liz Kammere2b27f42020-05-07 13:24:05 -0700831 var lineageFile android.Path
832 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
833 lineageFile = android.PathForModuleSrc(ctx, lineage)
834 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700835 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800836 a.outputFile = packageFile
Songchun Fan17d69e32020-03-24 20:32:24 -0700837 if v4SigningRequested {
838 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
839 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800840
Colin Crosse560c4a2019-03-19 16:03:11 -0700841 for _, split := range a.aapt.splits {
842 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800843 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700844 if v4SigningRequested {
845 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig")
846 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700847 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700848 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
Songchun Fan17d69e32020-03-24 20:32:24 -0700849 if v4SigningRequested {
850 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
851 }
Colin Crosse560c4a2019-03-19 16:03:11 -0700852 }
853
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800854 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700855 bundleFile := android.PathForModuleOut(ctx, "base.zip")
856 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
857 a.bundleFile = bundleFile
858
Colin Cross56a83212020-09-15 18:30:11 -0700859 apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
860
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800861 // Install the app package.
Colin Cross56a83212020-09-15 18:30:11 -0700862 if (Bool(a.Module.properties.Installable) || ctx.Host()) && apexInfo.IsForPlatform() {
Jiyong Park8ba50f92019-11-13 15:01:01 +0900863 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
864 for _, extra := range a.extraOutputFiles {
865 ctx.InstallFile(a.installDir, extra.Base(), extra)
866 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800867 }
Artur Satayev1111b842020-04-27 19:05:28 +0100868
869 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700870}
871
Colin Crossc2d24052020-05-13 11:05:02 -0700872type appDepsInterface interface {
873 sdkVersion() sdkSpec
874 minSdkVersion() sdkSpec
875 RequiresStableAPIs(ctx android.BaseModuleContext) bool
876}
877
878func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
879 shouldCollectRecursiveNativeDeps bool,
Colin Cross094cde42020-02-15 10:38:00 -0800880 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crossc2d24052020-05-13 11:05:02 -0700881
Colin Crossa4f08812018-10-02 22:03:40 -0700882 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900883 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800884 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700885
Colin Crossc2d24052020-05-13 11:05:02 -0700886 if checkNativeSdkVersion {
887 checkNativeSdkVersion = app.sdkVersion().specified() &&
888 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
889 }
890
Peter Collingbournead84f972019-12-17 16:46:18 -0800891 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700892 otherName := ctx.OtherModuleName(module)
893 tag := ctx.OtherModuleDependencyTag(module)
894
Colin Crossf0913fb2020-07-29 12:59:39 -0700895 if IsJniDepTag(tag) || cc.IsSharedDepTag(tag) {
Colin Crossa4f08812018-10-02 22:03:40 -0700896 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800897 if dep.IsNdk() || dep.IsStubs() {
898 return false
899 }
900
Colin Crossa4f08812018-10-02 22:03:40 -0700901 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800902 path := lib.Path()
903 if seenModulePaths[path.String()] {
904 return false
905 }
906 seenModulePaths[path.String()] = true
907
Colin Crossc2d24052020-05-13 11:05:02 -0700908 if checkNativeSdkVersion && dep.SdkVersion() == "" {
909 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
910 otherName)
Colin Cross094cde42020-02-15 10:38:00 -0800911 }
912
Colin Crossa4f08812018-10-02 22:03:40 -0700913 if lib.Valid() {
914 jniLibs = append(jniLibs, jniLib{
Colin Cross403cc152020-07-06 14:15:24 -0700915 name: ctx.OtherModuleName(module),
916 path: path,
917 target: module.Target(),
918 coverageFile: dep.CoverageOutputFile(),
919 unstrippedFile: dep.UnstrippedOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700920 })
921 } else {
922 ctx.ModuleErrorf("dependency %q missing output file", otherName)
923 }
924 } else {
925 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700926 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800927
928 return shouldCollectRecursiveNativeDeps
929 }
930
931 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700932 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900933 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700934 } else {
935 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
936 }
Colin Crossa4f08812018-10-02 22:03:40 -0700937 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800938
939 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700940 })
941
Colin Crossbd01e2a2018-10-04 15:21:03 -0700942 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700943}
944
Jooyung Han749dc692020-04-15 11:03:39 +0900945func (a *AndroidApp) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) {
Artur Satayev1111b842020-04-27 19:05:28 +0100946 ctx.WalkDeps(func(child, parent android.Module) bool {
947 isExternal := !a.DepIsInSameApex(ctx, child)
948 if am, ok := child.(android.ApexModule); ok {
Jooyung Han749dc692020-04-15 11:03:39 +0900949 if !do(ctx, parent, am, isExternal) {
950 return false
951 }
Artur Satayev1111b842020-04-27 19:05:28 +0100952 }
953 return !isExternal
954 })
955}
956
957func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
958 if ctx.Host() {
959 return
960 }
961
962 depsInfo := android.DepNameToDepInfoMap{}
Jooyung Han749dc692020-04-15 11:03:39 +0900963 a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
Artur Satayev1111b842020-04-27 19:05:28 +0100964 depName := to.Name()
965 if info, exist := depsInfo[depName]; exist {
966 info.From = append(info.From, from.Name())
967 info.IsExternal = info.IsExternal && externalDep
968 depsInfo[depName] = info
969 } else {
970 toMinSdkVersion := "(no version)"
971 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
972 if v := m.MinSdkVersion(); v != "" {
973 toMinSdkVersion = v
974 }
975 }
976 depsInfo[depName] = android.ApexModuleDepInfo{
977 To: depName,
978 From: []string{from.Name()},
979 IsExternal: externalDep,
980 MinSdkVersion: toMinSdkVersion,
981 }
982 }
Jooyung Han749dc692020-04-15 11:03:39 +0900983 return true
Artur Satayev1111b842020-04-27 19:05:28 +0100984 })
985
986 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
987}
988
Artur Satayev849f8442020-04-28 14:57:42 +0100989func (a *AndroidApp) Updatable() bool {
Colin Cross56a83212020-09-15 18:30:11 -0700990 return Bool(a.appProperties.Updatable)
Artur Satayev849f8442020-04-28 14:57:42 +0100991}
992
Colin Cross0ea8ba82019-06-06 14:33:29 -0700993func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800994 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
995 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000996 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800997 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800998 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800999}
1000
Jiyong Park0f80c182020-01-31 02:49:53 +09001001func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
1002 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
1003 return true
1004 }
1005 return a.Library.DepIsInSameApex(ctx, dep)
1006}
1007
Jiyong Parkb7c639e2019-08-19 14:56:02 +09001008// For OutputFileProducer interface
1009func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
1010 switch tag {
1011 case ".aapt.srcjar":
1012 return []android.Path{a.aaptSrcJar}, nil
Anton Hansson092aca42020-08-13 19:37:22 +01001013 case ".export-package.apk":
1014 return []android.Path{a.exportPackage}, nil
Jiyong Parkb7c639e2019-08-19 14:56:02 +09001015 }
1016 return a.Library.OutputFiles(tag)
1017}
1018
Jiyong Parkf7487312019-10-17 12:54:30 +09001019func (a *AndroidApp) Privileged() bool {
1020 return Bool(a.appProperties.Privileged)
1021}
1022
Jaewoong Jung87a33e72020-03-26 14:01:48 -07001023func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001024 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
Jaewoong Jung87a33e72020-03-26 14:01:48 -07001025}
1026
1027func (a *AndroidApp) PreventInstall() {
1028 a.appProperties.PreventInstall = true
1029}
1030
1031func (a *AndroidApp) HideFromMake() {
1032 a.appProperties.HideFromMake = true
1033}
1034
1035func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
1036 a.appProperties.IsCoverageVariant = coverage
1037}
1038
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -04001039func (a *AndroidApp) EnableCoverageIfNeeded() {}
1040
Jaewoong Jung87a33e72020-03-26 14:01:48 -07001041var _ cc.Coverage = (*AndroidApp)(nil)
1042
Colin Cross1b16b0e2019-02-12 14:41:32 -08001043// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -07001044func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -07001045 module := &AndroidApp{}
1046
Liz Kammera7a64f32020-07-09 15:16:41 -07001047 module.Module.dexProperties.Optimize.EnabledByDefault = true
1048 module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true)
Colin Cross66dbc0b2017-12-28 12:23:20 -08001049
Colin Crossae5caf52018-05-22 11:11:52 -07001050 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001051 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -07001052
Colin Crossce6734e2020-06-15 16:09:53 -07001053 module.addHostAndDeviceProperties()
Colin Cross36242852017-06-23 15:06:31 -07001054 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -07001055 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001056 &module.appProperties,
Ulya Trafimovich21a73752020-09-01 17:33:48 +01001057 &module.overridableAppProperties)
Colin Cross36242852017-06-23 15:06:31 -07001058
Colin Crossa4f08812018-10-02 22:03:40 -07001059 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1060 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001061 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +09001062 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -07001063
Colin Cross36242852017-06-23 15:06:31 -07001064 return module
Colin Cross30e076a2015-04-13 13:58:27 -07001065}
Colin Crossae5caf52018-05-22 11:11:52 -07001066
1067type appTestProperties struct {
Liz Kammer6b0c5522020-04-28 16:10:55 -07001068 // The name of the android_app module that the tests will run against.
Colin Crossae5caf52018-05-22 11:11:52 -07001069 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001070
1071 // if specified, the instrumentation target package name in the manifest is overwritten by it.
1072 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -07001073}
1074
1075type AndroidTest struct {
1076 AndroidApp
1077
1078 appTestProperties appTestProperties
1079
1080 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07001081
Dan Shi95d19422020-08-15 12:24:26 -07001082 testConfig android.Path
1083 extraTestConfigs android.Paths
1084 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001085}
1086
Jaewoong Jung0949f312019-09-11 10:25:18 -07001087func (a *AndroidTest) InstallInTestcases() bool {
1088 return true
1089}
1090
Colin Crossae5caf52018-05-22 11:11:52 -07001091func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncylee5bcff5d2020-04-30 14:57:06 +08001092 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001093 if a.appTestProperties.Instrumentation_target_package != nil {
1094 a.additionalAaptFlags = append(a.additionalAaptFlags,
1095 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1096 } else if a.appTestProperties.Instrumentation_for != nil {
1097 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001098 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1099 if overridden {
1100 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1101 }
1102 }
Colin Crossae5caf52018-05-22 11:11:52 -07001103 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001104
easoncylee5bcff5d2020-04-30 14:57:06 +08001105 for _, module := range a.testProperties.Test_mainline_modules {
1106 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1107 }
1108
Jaewoong Jung39982342020-01-14 10:27:18 -08001109 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncylee5bcff5d2020-04-30 14:57:06 +08001110 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001111 a.testConfig = a.FixTestConfig(ctx, testConfig)
Dan Shi95d19422020-08-15 12:24:26 -07001112 a.extraTestConfigs = android.PathsForModuleSrc(ctx, a.testProperties.Test_options.Extra_test_configs)
Colin Cross8a497952019-03-05 22:25:09 -08001113 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001114}
1115
Jaewoong Jung39982342020-01-14 10:27:18 -08001116func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1117 if testConfig == nil {
1118 return nil
1119 }
1120
1121 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1122 rule := android.NewRuleBuilder()
1123 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1124 fixNeeded := false
1125
1126 if ctx.ModuleName() != a.installApkName {
1127 fixNeeded = true
1128 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1129 }
1130
1131 if a.overridableAppProperties.Package_name != nil {
1132 fixNeeded = true
1133 command.FlagWithInput("--manifest ", a.manifestPath).
1134 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1135 }
1136
1137 if fixNeeded {
1138 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1139 return fixedConfig
1140 }
1141 return testConfig
1142}
1143
Colin Cross303e21f2018-08-07 16:49:25 -07001144func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001145 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001146}
1147
1148func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1149 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001150 if a.appTestProperties.Instrumentation_for != nil {
1151 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1152 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1153 // use instrumentationForTag instead of libTag.
1154 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1155 }
Colin Crossae5caf52018-05-22 11:11:52 -07001156}
1157
Colin Cross1b16b0e2019-02-12 14:41:32 -08001158// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1159// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001160func AndroidTestFactory() android.Module {
1161 module := &AndroidTest{}
1162
Liz Kammera7a64f32020-07-09 15:16:41 -07001163 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001164
1165 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001166 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001167 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001168 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001169 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001170 module.Module.linter.test = true
Colin Crossae5caf52018-05-22 11:11:52 -07001171
Colin Crossce6734e2020-06-15 16:09:53 -07001172 module.addHostAndDeviceProperties()
Colin Crossae5caf52018-05-22 11:11:52 -07001173 module.AddProperties(
Colin Crossae5caf52018-05-22 11:11:52 -07001174 &module.aaptProperties,
1175 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001176 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001177 &module.overridableAppProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001178 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001179
Colin Crossa4f08812018-10-02 22:03:40 -07001180 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1181 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001182 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001183 return module
1184}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001185
Colin Cross252fc6f2018-10-04 15:22:03 -07001186type appTestHelperAppProperties struct {
1187 // list of compatibility suites (for example "cts", "vts") that the module should be
1188 // installed into.
1189 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001190
1191 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1192 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1193 // explicitly.
1194 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001195}
1196
1197type AndroidTestHelperApp struct {
1198 AndroidApp
1199
1200 appTestHelperAppProperties appTestHelperAppProperties
1201}
1202
Jaewoong Jung326a9412019-11-21 10:41:00 -08001203func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1204 return true
1205}
1206
Colin Cross1b16b0e2019-02-12 14:41:32 -08001207// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1208// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1209// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001210func AndroidTestHelperAppFactory() android.Module {
1211 module := &AndroidTestHelperApp{}
1212
Liz Kammera7a64f32020-07-09 15:16:41 -07001213 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001214
1215 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001216 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001217 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001218 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001219 module.Module.linter.test = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001220
Colin Crossce6734e2020-06-15 16:09:53 -07001221 module.addHostAndDeviceProperties()
Colin Cross252fc6f2018-10-04 15:22:03 -07001222 module.AddProperties(
Colin Cross252fc6f2018-10-04 15:22:03 -07001223 &module.aaptProperties,
1224 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001225 &module.appTestHelperAppProperties,
Ulya Trafimovich21a73752020-09-01 17:33:48 +01001226 &module.overridableAppProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001227
1228 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1229 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001230 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001231 return module
1232}
1233
Colin Crossbd01e2a2018-10-04 15:21:03 -07001234type AndroidAppCertificate struct {
1235 android.ModuleBase
1236 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001237 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001238}
1239
1240type AndroidAppCertificateProperties struct {
1241 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1242 Certificate *string
1243}
1244
Colin Cross1b16b0e2019-02-12 14:41:32 -08001245// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1246// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001247func AndroidAppCertificateFactory() android.Module {
1248 module := &AndroidAppCertificate{}
1249 module.AddProperties(&module.properties)
1250 android.InitAndroidModule(module)
1251 return module
1252}
1253
Colin Crossbd01e2a2018-10-04 15:21:03 -07001254func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1255 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001256 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001257 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1258 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001259 }
1260}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001261
1262type OverrideAndroidApp struct {
1263 android.ModuleBase
1264 android.OverrideModuleBase
1265}
1266
Sasha Smundak613cbb12020-06-05 10:27:23 -07001267func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -08001268 // All the overrides happen in the base module.
1269 // TODO(jungjw): Check the base module type.
1270}
1271
1272// override_android_app is used to create an android_app module based on another android_app by overriding
1273// some of its properties.
1274func OverrideAndroidAppModuleFactory() android.Module {
1275 m := &OverrideAndroidApp{}
1276 m.AddProperties(&overridableAppProperties{})
1277
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001278 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001279 android.InitOverrideModule(m)
1280 return m
1281}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001282
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001283type OverrideAndroidTest struct {
1284 android.ModuleBase
1285 android.OverrideModuleBase
1286}
1287
Sasha Smundak613cbb12020-06-05 10:27:23 -07001288func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001289 // All the overrides happen in the base module.
1290 // TODO(jungjw): Check the base module type.
1291}
1292
1293// override_android_test is used to create an android_app module based on another android_test by overriding
1294// some of its properties.
1295func OverrideAndroidTestModuleFactory() android.Module {
1296 m := &OverrideAndroidTest{}
1297 m.AddProperties(&overridableAppProperties{})
1298 m.AddProperties(&appTestProperties{})
1299
1300 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1301 android.InitOverrideModule(m)
1302 return m
1303}
1304
Roshan Pius4df2bc72020-04-27 09:42:27 -07001305type OverrideRuntimeResourceOverlay struct {
1306 android.ModuleBase
1307 android.OverrideModuleBase
1308}
1309
Sasha Smundak613cbb12020-06-05 10:27:23 -07001310func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) {
Roshan Pius4df2bc72020-04-27 09:42:27 -07001311 // All the overrides happen in the base module.
1312 // TODO(jungjw): Check the base module type.
1313}
1314
1315// override_runtime_resource_overlay is used to create a module based on another
1316// runtime_resource_overlay module by overriding some of its properties.
1317func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1318 m := &OverrideRuntimeResourceOverlay{}
1319 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1320
1321 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1322 android.InitOverrideModule(m)
1323 return m
1324}
1325
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001326type AndroidAppImport struct {
1327 android.ModuleBase
1328 android.DefaultableModuleBase
Jiyong Park592a6a42020-04-21 22:34:28 +09001329 android.ApexModuleBase
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001330 prebuilt android.Prebuilt
1331
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001332 properties AndroidAppImportProperties
1333 dpiVariants interface{}
1334 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001335
1336 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001337 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001338
1339 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001340
1341 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001342
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001343 preprocessed bool
1344
Colin Cross70dda7e2019-10-01 22:05:35 -07001345 installPath android.InstallPath
Colin Cross56a83212020-09-15 18:30:11 -07001346
1347 hideApexVariantFromMake bool
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001348}
1349
1350type AndroidAppImportProperties struct {
1351 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001352 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001353
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001354 // The name of a certificate in the default certificate directory or an android_app_certificate
1355 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001356 Certificate *string
1357
1358 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1359 // be set for presigned modules.
1360 Presigned *bool
1361
Liz Kammer24978992020-05-13 15:49:21 -07001362 // Name of the signing certificate lineage file.
1363 Lineage *string
1364
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001365 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1366 // need to either specify a specific certificate or be presigned.
1367 Default_dev_cert *bool
1368
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001369 // Specifies that this app should be installed to the priv-app directory,
1370 // where the system will grant it additional privileges not available to
1371 // normal apps.
1372 Privileged *bool
1373
1374 // Names of modules to be overridden. Listed modules can only be other binaries
1375 // (in Make or Soong).
1376 // This does not completely prevent installation of the overridden binaries, but if both
1377 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1378 // from PRODUCT_PACKAGES.
1379 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001380
1381 // Optional name for the installed app. If unspecified, it is derived from the module name.
1382 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001383}
1384
Martin Stjernholm6d415272020-01-31 17:10:36 +00001385func (a *AndroidAppImport) IsInstallable() bool {
1386 return true
1387}
1388
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001389// Updates properties with variant-specific values.
1390func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001391 config := ctx.Config()
1392
1393 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1394 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1395 // overwrites everything else.
1396 // TODO(jungjw): Can we optimize this by making it priority order?
1397 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001398 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001399 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001400 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001401 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001402 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001403
1404 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1405 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1406 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001407}
1408
Colin Cross1184b642019-12-30 18:43:07 -08001409func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001410 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001411 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1412 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001413 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001414 }
1415
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001416 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1417 if err != nil {
1418 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1419 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1420 } else {
1421 panic(err)
1422 }
1423 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001424}
1425
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001426func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1427 cert := android.SrcIsModule(String(a.properties.Certificate))
1428 if cert != "" {
1429 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1430 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001431
Paul Duffin250e6192019-06-07 10:44:37 +01001432 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001433}
1434
1435func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1436 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001437 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1438 // with them may invalidate pre-existing signature data.
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001439 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001440 ctx.Build(pctx, android.BuildParams{
1441 Rule: android.Cp,
1442 Output: outputPath,
1443 Input: inputPath,
1444 })
1445 return
1446 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001447 rule := android.NewRuleBuilder()
1448 rule.Command().
1449 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001450 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001451 FlagWithInput("-i ", inputPath).
1452 FlagWithOutput("-o ", outputPath).
1453 FlagWithArg("-0 ", "'lib/**/*.so'").
1454 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1455 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1456}
1457
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001458// Returns whether this module should have the dex file stored uncompressed in the APK.
1459func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001460 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001461 return false
1462 }
1463
1464 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001465 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001466 return true
1467 }
1468
1469 return shouldUncompressDex(ctx, &a.dexpreopter)
1470}
1471
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001472func (a *AndroidAppImport) uncompressDex(
1473 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1474 rule := android.NewRuleBuilder()
1475 rule.Command().
1476 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001477 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001478 FlagWithInput("-i ", inputPath).
1479 FlagWithOutput("-o ", outputPath).
1480 FlagWithArg("-0 ", "'classes*.dex'").
1481 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1482 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1483}
1484
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001485func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001486 a.generateAndroidBuildActions(ctx)
1487}
1488
Jooyung Han39ee1192020-03-23 20:21:11 +09001489func (a *AndroidAppImport) InstallApkName() string {
1490 return a.BaseModuleName()
1491}
1492
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001493func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross56a83212020-09-15 18:30:11 -07001494 apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
1495 if !apexInfo.IsForPlatform() {
1496 a.hideApexVariantFromMake = true
1497 }
1498
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001499 numCertPropsSet := 0
1500 if String(a.properties.Certificate) != "" {
1501 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001502 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001503 if Bool(a.properties.Presigned) {
1504 numCertPropsSet++
1505 }
1506 if Bool(a.properties.Default_dev_cert) {
1507 numCertPropsSet++
1508 }
1509 if numCertPropsSet != 1 {
1510 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001511 }
1512
Colin Crossc2d24052020-05-13 11:05:02 -07001513 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001514
1515 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001516 // TODO: LOCAL_PACKAGE_SPLITS
1517
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001518 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001519
1520 if a.usesLibrary.enforceUsesLibraries() {
1521 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1522 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001523
1524 // TODO: Install or embed JNI libraries
1525
1526 // Uncompress JNI libraries in the apk
1527 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1528 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1529
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001530 var installDir android.InstallPath
1531 if Bool(a.properties.Privileged) {
1532 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001533 } else if ctx.InstallInTestcases() {
1534 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001535 } else {
1536 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1537 }
1538
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001539 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001540 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001541 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001542
1543 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1544 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1545 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1546 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1547
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001548 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001549 if a.dexpreopter.uncompressedDex {
1550 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1551 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1552 dexOutput = dexUncompressed
1553 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001554
Jooyung Han39ee1192020-03-23 20:21:11 +09001555 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1556
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001557 // TODO: Handle EXTERNAL
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001558
1559 // Sign or align the package if package has not been preprocessed
1560 if a.preprocessed {
1561 a.outputFile = srcApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001562 a.certificate = PresignedCertificate
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001563 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001564 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1565 // Which makes processMainCert's behavior for the empty cert string WAI.
1566 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001567 if len(certificates) != 1 {
1568 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1569 }
Colin Cross503c1d02020-01-28 14:00:53 -08001570 a.certificate = certificates[0]
Jooyung Han39ee1192020-03-23 20:21:11 +09001571 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer24978992020-05-13 15:49:21 -07001572 var lineageFile android.Path
1573 if lineage := String(a.properties.Lineage); lineage != "" {
1574 lineageFile = android.PathForModuleSrc(ctx, lineage)
1575 }
Liz Kammer2bc57f62020-05-13 15:49:21 -07001576 SignAppPackage(ctx, signed, dexOutput, certificates, nil, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001577 a.outputFile = signed
1578 } else {
Jooyung Han39ee1192020-03-23 20:21:11 +09001579 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001580 TransformZipAlign(ctx, alignedApk, dexOutput)
1581 a.outputFile = alignedApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001582 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001583 }
1584
1585 // TODO: Optionally compress the output apk.
1586
Colin Cross56a83212020-09-15 18:30:11 -07001587 if apexInfo.IsForPlatform() {
Jiyong Park592a6a42020-04-21 22:34:28 +09001588 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
1589 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001590
1591 // TODO: androidmk converter jni libs
1592}
1593
1594func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1595 return &a.prebuilt
1596}
1597
1598func (a *AndroidAppImport) Name() string {
1599 return a.prebuilt.Name(a.ModuleBase.Name())
1600}
1601
Dario Frenicde2a032019-10-27 00:29:22 +01001602func (a *AndroidAppImport) OutputFile() android.Path {
1603 return a.outputFile
1604}
1605
Jiyong Park618922e2020-01-08 13:35:43 +09001606func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1607 return nil
1608}
1609
Colin Cross503c1d02020-01-28 14:00:53 -08001610func (a *AndroidAppImport) Certificate() Certificate {
1611 return a.certificate
1612}
1613
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001614var dpiVariantGroupType reflect.Type
1615var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001616
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001617func initAndroidAppImportVariantGroupTypes() {
1618 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1619
1620 archNames := make([]string, len(android.ArchTypeList()))
1621 for i, archType := range android.ArchTypeList() {
1622 archNames[i] = archType.Name
1623 }
1624 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1625}
1626
1627// Populates all variant struct properties at creation time.
1628func (a *AndroidAppImport) populateAllVariantStructs() {
1629 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1630 a.AddProperties(a.dpiVariants)
1631
1632 a.archVariants = reflect.New(archVariantGroupType).Interface()
1633 a.AddProperties(a.archVariants)
1634}
1635
Jiyong Parkf7487312019-10-17 12:54:30 +09001636func (a *AndroidAppImport) Privileged() bool {
1637 return Bool(a.properties.Privileged)
1638}
1639
Sasha Smundak613cbb12020-06-05 10:27:23 -07001640func (a *AndroidAppImport) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool {
Jiyong Park592a6a42020-04-21 22:34:28 +09001641 // android_app_import might have extra dependencies via uses_libs property.
1642 // Don't track the dependency as we don't automatically add those libraries
1643 // to the classpath. It should be explicitly added to java_libs property of APEX
1644 return false
1645}
1646
Colin Crossc2d24052020-05-13 11:05:02 -07001647func (a *AndroidAppImport) sdkVersion() sdkSpec {
1648 return sdkSpecFrom("")
1649}
1650
1651func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1652 return sdkSpecFrom("")
1653}
1654
Dan Albertc8060532020-07-22 22:32:17 -07001655func (j *AndroidAppImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext,
1656 sdkVersion android.ApiLevel) error {
Jooyung Han749dc692020-04-15 11:03:39 +09001657 // Do not check for prebuilts against the min_sdk_version of enclosing APEX
1658 return nil
1659}
1660
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001661func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1662 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1663
1664 variantFields := make([]reflect.StructField, len(variants))
1665 for i, variant := range variants {
1666 variantFields[i] = reflect.StructField{
1667 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001668 Type: props,
1669 }
1670 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001671
1672 variantGroupStruct := reflect.StructOf(variantFields)
1673 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001674 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001675 Name: variantGroupName,
1676 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001677 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001678 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001679}
1680
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001681// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001682// DPI-specific apk source files can be specified using dpi_variants. Example:
1683//
1684// android_app_import {
1685// name: "example_import",
1686// apk: "prebuilts/example.apk",
1687// dpi_variants: {
1688// mdpi: {
1689// apk: "prebuilts/example_mdpi.apk",
1690// },
1691// xhdpi: {
1692// apk: "prebuilts/example_xhdpi.apk",
1693// },
1694// },
1695// certificate: "PRESIGNED",
1696// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001697func AndroidAppImportFactory() android.Module {
1698 module := &AndroidAppImport{}
1699 module.AddProperties(&module.properties)
1700 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001701 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001702 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001703 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001704 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001705 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001706
Jiyong Park592a6a42020-04-21 22:34:28 +09001707 android.InitApexModule(module)
Jaewoong Jung6abfbf72020-05-26 20:10:08 -07001708 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1709 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001710 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001711
1712 return module
1713}
Colin Cross50ddcc42019-05-16 12:28:22 -07001714
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001715type androidTestImportProperties struct {
1716 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1717 Preprocessed *bool
1718}
1719
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001720type AndroidTestImport struct {
1721 AndroidAppImport
1722
1723 testProperties testProperties
1724
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001725 testImportProperties androidTestImportProperties
1726
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001727 data android.Paths
1728}
1729
1730func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001731 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1732
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001733 a.generateAndroidBuildActions(ctx)
1734
1735 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1736}
1737
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001738func (a *AndroidTestImport) InstallInTestcases() bool {
1739 return true
1740}
1741
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001742// android_test_import imports a prebuilt test apk with additional processing specified in the
1743// module. DPI or arch variant configurations can be made as with android_app_import.
1744func AndroidTestImportFactory() android.Module {
1745 module := &AndroidTestImport{}
1746 module.AddProperties(&module.properties)
1747 module.AddProperties(&module.dexpreoptProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001748 module.AddProperties(&module.testProperties)
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001749 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001750 module.populateAllVariantStructs()
1751 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1752 module.processVariants(ctx)
1753 })
1754
Colin Crossc80828d2020-05-06 22:29:10 -07001755 module.dexpreopter.isTest = true
1756
Jiyong Park592a6a42020-04-21 22:34:28 +09001757 android.InitApexModule(module)
Jaewoong Jung243688e2020-05-01 15:50:08 -07001758 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1759 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001760 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1761
1762 return module
1763}
1764
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001765type RuntimeResourceOverlay struct {
1766 android.ModuleBase
1767 android.DefaultableModuleBase
Roshan Pius4df2bc72020-04-27 09:42:27 -07001768 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001769 aapt
1770
Roshan Pius4df2bc72020-04-27 09:42:27 -07001771 properties RuntimeResourceOverlayProperties
1772 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001773
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001774 certificate Certificate
1775
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001776 outputFile android.Path
1777 installDir android.InstallPath
1778}
1779
1780type RuntimeResourceOverlayProperties struct {
1781 // the name of a certificate in the default certificate directory or an android_app_certificate
1782 // module name in the form ":module".
1783 Certificate *string
1784
Liz Kammer966b2f02020-05-19 16:15:25 -07001785 // Name of the signing certificate lineage file.
1786 Lineage *string
1787
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001788 // optional theme name. If specified, the overlay package will be applied
1789 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1790 Theme *string
1791
1792 // if not blank, set to the version of the sdk to compile against.
1793 // Defaults to compiling against the current platform.
1794 Sdk_version *string
1795
1796 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1797 // Defaults to sdk_version if not set.
1798 Min_sdk_version *string
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001799
1800 // list of android_library modules whose resources are extracted and linked against statically
1801 Static_libs []string
1802
1803 // list of android_app modules whose resources are extracted and linked against
1804 Resource_libs []string
Jaewoong Jungad0177b2020-04-24 15:22:40 -07001805
1806 // Names of modules to be overridden. Listed modules can only be other overlays
1807 // (in Make or Soong).
1808 // This does not completely prevent installation of the overridden overlays, but if both
1809 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1810 // from PRODUCT_PACKAGES.
1811 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001812}
1813
Jiyong Park69aeba92020-04-24 21:16:36 +09001814// RuntimeResourceOverlayModule interface is used by the apex package to gather information from
1815// a RuntimeResourceOverlay module.
1816type RuntimeResourceOverlayModule interface {
1817 android.Module
1818 OutputFile() android.Path
1819 Certificate() Certificate
1820 Theme() string
1821}
1822
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001823func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1824 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1825 if sdkDep.hasFrameworkLibs() {
1826 r.aapt.deps(ctx, sdkDep)
1827 }
1828
1829 cert := android.SrcIsModule(String(r.properties.Certificate))
1830 if cert != "" {
1831 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1832 }
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001833
1834 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1835 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001836}
1837
1838func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1839 // Compile and link resources
1840 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001841 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Pius4df2bc72020-04-27 09:42:27 -07001842 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1843 // Allow the override of "package name" and "overlay target package name"
1844 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1845 if overridden || r.overridableProperties.Package_name != nil {
1846 // The product override variable has a priority over the package_name property.
1847 if !overridden {
1848 manifestPackageName = *r.overridableProperties.Package_name
1849 }
Liz Kammer9f9fd022020-06-18 19:44:06 +00001850 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, false)...)
Roshan Pius4df2bc72020-04-27 09:42:27 -07001851 }
1852 if r.overridableProperties.Target_package_name != nil {
1853 aaptLinkFlags = append(aaptLinkFlags,
1854 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1855 }
1856 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001857
1858 // Sign the built package
Colin Crossc2d24052020-05-13 11:05:02 -07001859 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001860 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1861 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer966b2f02020-05-19 16:15:25 -07001862 var lineageFile android.Path
1863 if lineage := String(r.properties.Lineage); lineage != "" {
1864 lineageFile = android.PathForModuleSrc(ctx, lineage)
1865 }
Liz Kammer7fe241f2020-05-19 16:15:25 -07001866 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001867 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001868
1869 r.outputFile = signed
1870 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1871 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1872}
1873
Jiyong Park6a927c42020-01-21 02:03:43 +09001874func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1875 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001876}
1877
1878func (r *RuntimeResourceOverlay) systemModules() string {
1879 return ""
1880}
1881
Jiyong Park6a927c42020-01-21 02:03:43 +09001882func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001883 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001884 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001885 }
1886 return r.sdkVersion()
1887}
1888
Jiyong Park6a927c42020-01-21 02:03:43 +09001889func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001890 return r.sdkVersion()
1891}
1892
Jiyong Park69aeba92020-04-24 21:16:36 +09001893func (r *RuntimeResourceOverlay) Certificate() Certificate {
1894 return r.certificate
1895}
1896
1897func (r *RuntimeResourceOverlay) OutputFile() android.Path {
1898 return r.outputFile
1899}
1900
1901func (r *RuntimeResourceOverlay) Theme() string {
1902 return String(r.properties.Theme)
1903}
1904
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001905// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1906// system resources at run time.
1907func RuntimeResourceOverlayFactory() android.Module {
1908 module := &RuntimeResourceOverlay{}
1909 module.AddProperties(
1910 &module.properties,
Roshan Pius4df2bc72020-04-27 09:42:27 -07001911 &module.aaptProperties,
1912 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001913
Roshan Pius4df2bc72020-04-27 09:42:27 -07001914 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1915 android.InitDefaultableModule(module)
1916 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001917 return module
1918}
1919
Colin Cross50ddcc42019-05-16 12:28:22 -07001920type UsesLibraryProperties struct {
1921 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1922 Uses_libs []string
1923
1924 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1925 // required=false.
1926 Optional_uses_libs []string
1927
1928 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1929 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1930 Enforce_uses_libs *bool
Ulya Trafimovich21a73752020-09-01 17:33:48 +01001931
Ulya Trafimovich54027b52020-09-09 14:08:23 +01001932 // Optional name of the <uses-library> provided by this module. This is needed for non-SDK
1933 // libraries, because SDK ones are automatically picked up by Soong. The <uses-library> name
1934 // normally is the same as the module name, but there are exceptions.
1935 Provides_uses_lib *string
Colin Cross50ddcc42019-05-16 12:28:22 -07001936}
1937
1938// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1939// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1940// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1941// with knowledge of their shared libraries.
1942type usesLibrary struct {
1943 usesLibraryProperties UsesLibraryProperties
1944}
1945
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +01001946func (u *usesLibrary) addLib(lib string, optional bool) {
1947 if !android.InList(lib, u.usesLibraryProperties.Uses_libs) && !android.InList(lib, u.usesLibraryProperties.Optional_uses_libs) {
1948 if optional {
1949 u.usesLibraryProperties.Optional_uses_libs = append(u.usesLibraryProperties.Optional_uses_libs, lib)
1950 } else {
1951 u.usesLibraryProperties.Uses_libs = append(u.usesLibraryProperties.Uses_libs, lib)
1952 }
1953 }
1954}
1955
Paul Duffin250e6192019-06-07 10:44:37 +01001956func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001957 if !ctx.Config().UnbundledBuild() {
1958 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1959 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001960 // Only add these extra dependencies if the module depends on framework libs. This avoids
1961 // creating a cyclic dependency:
1962 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1963 if hasFrameworkLibs {
Ulya Trafimovich5f364b62020-06-30 12:39:01 +01001964 // Dexpreopt needs paths to the dex jars of these libraries in order to construct
1965 // class loader context for dex2oat. Add them as a dependency with a special tag.
Ulya Trafimovich663dc532020-09-10 12:48:53 +01001966 ctx.AddVariationDependencies(nil, usesLibTag, dexpreopt.CompatUsesLibs...)
1967 ctx.AddVariationDependencies(nil, usesLibTag, dexpreopt.OptionalCompatUsesLibs...)
Colin Cross3245b2c2019-06-07 13:18:09 -07001968 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001969 }
1970}
1971
1972// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1973// build.
1974func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1975 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1976 return optionalUsesLibs
1977}
1978
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001979// usesLibraryPaths returns a map of module names of shared library dependencies to the paths
1980// to their dex jars on host and on device.
1981func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) dexpreopt.LibraryPaths {
1982 usesLibPaths := make(dexpreopt.LibraryPaths)
Colin Cross50ddcc42019-05-16 12:28:22 -07001983
1984 if !ctx.Config().UnbundledBuild() {
Ulya Trafimovich663dc532020-09-10 12:48:53 +01001985 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
1986 dep := ctx.OtherModuleName(m)
1987 if lib, ok := m.(Dependency); ok {
1988 usesLibPaths.AddLibraryPath(ctx, dep, lib.DexJarBuildPath(), lib.DexJarInstallPath())
1989 } else if ctx.Config().AllowMissingDependencies() {
1990 ctx.AddMissingDependencies([]string{dep})
1991 } else {
1992 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library", dep)
Colin Cross50ddcc42019-05-16 12:28:22 -07001993 }
1994 })
1995 }
1996
1997 return usesLibPaths
1998}
1999
2000// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
2001// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
2002// unconditionally in the future.
2003func (u *usesLibrary) enforceUsesLibraries() bool {
2004 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
2005 len(u.usesLibraryProperties.Optional_uses_libs) > 0
2006 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
2007}
2008
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +01002009// Freeze the value of `enforce_uses_libs` based on the current values of `uses_libs` and `optional_uses_libs`.
2010func (u *usesLibrary) freezeEnforceUsesLibraries() {
2011 enforce := u.enforceUsesLibraries()
2012 u.usesLibraryProperties.Enforce_uses_libs = &enforce
2013}
2014
Colin Cross50ddcc42019-05-16 12:28:22 -07002015// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
2016// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
2017func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
2018 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
2019
2020 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07002021 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07002022 Flag("--enforce-uses-libraries").
2023 Input(manifest).
2024 FlagWithOutput("-o ", outputFile)
2025
2026 for _, lib := range u.usesLibraryProperties.Uses_libs {
2027 cmd.FlagWithArg("--uses-library ", lib)
2028 }
2029
2030 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
2031 cmd.FlagWithArg("--optional-uses-library ", lib)
2032 }
2033
2034 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
2035
2036 return outputFile
2037}
2038
2039// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
2040// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
2041func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
2042 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
2043
2044 rule := android.NewRuleBuilder()
2045 aapt := ctx.Config().HostToolPath(ctx, "aapt")
2046 rule.Command().
2047 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
2048 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
2049 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
2050 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
2051 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
2052
2053 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
2054
2055 return outputFile
2056}