blob: ff3b8a45f087273e73af0d6852a679d367e72625 [file] [log] [blame]
Colin Cross30e076a2015-04-13 13:58:27 -07001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package java
16
17// This file contains the module types for compiling Android apps.
18
19import (
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070020 "path/filepath"
21 "reflect"
Jaewoong Jung5b425e22019-06-17 17:40:56 -070022 "sort"
Sasha Smundak4de27a52020-04-23 09:49:59 -070023 "strconv"
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070024 "strings"
Colin Cross30e076a2015-04-13 13:58:27 -070025
Colin Cross50ddcc42019-05-16 12:28:22 -070026 "github.com/google/blueprint"
27 "github.com/google/blueprint/proptools"
28
Colin Cross635c3b02016-05-18 15:37:25 -070029 "android/soong/android"
Colin Crossa4f08812018-10-02 22:03:40 -070030 "android/soong/cc"
Colin Cross303e21f2018-08-07 16:49:25 -070031 "android/soong/tradefed"
Colin Cross30e076a2015-04-13 13:58:27 -070032)
33
Jaewoong Jung3e18b192019-06-11 12:25:34 -070034var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"}
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070035
Colin Cross3bc7ffa2017-11-22 16:19:37 -080036func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000037 RegisterAppBuildComponents(android.InitRegistrationContext)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -070038
39 initAndroidAppImportVariantGroupTypes()
Colin Cross3bc7ffa2017-11-22 16:19:37 -080040}
41
Paul Duffinf9b1da02019-12-18 19:51:55 +000042func RegisterAppBuildComponents(ctx android.RegistrationContext) {
43 ctx.RegisterModuleType("android_app", AndroidAppFactory)
44 ctx.RegisterModuleType("android_test", AndroidTestFactory)
45 ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
46 ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
47 ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
48 ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory)
Roshan Piusb8307962020-04-27 09:42:27 -070049 ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000050 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
51 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080052 ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory)
Sasha Smundak4de27a52020-04-23 09:49:59 -070053 ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory)
54}
55
56type AndroidAppSetProperties struct {
57 // APK Set path
58 Set *string
59
60 // Specifies that this app should be installed to the priv-app directory,
61 // where the system will grant it additional privileges not available to
62 // normal apps.
63 Privileged *bool
64
65 // APKs in this set use prerelease SDK version
66 Prerelease *bool
67
68 // Names of modules to be overridden. Listed modules can only be other apps
69 // (in Make or Soong).
70 Overrides []string
71}
72
73type AndroidAppSet struct {
74 android.ModuleBase
75 android.DefaultableModuleBase
76 prebuilt android.Prebuilt
77
78 properties AndroidAppSetProperties
79 packedOutput android.WritablePath
80 masterFile string
Jaewoong Jung8bec0262020-06-29 19:18:44 -070081 apkcertsFile android.ModuleOutPath
Sasha Smundak4de27a52020-04-23 09:49:59 -070082}
83
84func (as *AndroidAppSet) Name() string {
85 return as.prebuilt.Name(as.ModuleBase.Name())
86}
87
88func (as *AndroidAppSet) IsInstallable() bool {
89 return true
90}
91
92func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
93 return &as.prebuilt
94}
95
96func (as *AndroidAppSet) Privileged() bool {
97 return Bool(as.properties.Privileged)
98}
99
Sasha Smundakc4f0ff12020-05-27 16:36:07 -0700100func (as *AndroidAppSet) OutputFile() android.Path {
101 return as.packedOutput
102}
103
104func (as *AndroidAppSet) MasterFile() string {
105 return as.masterFile
106}
107
Colin Cross7e2b36c2020-07-09 19:05:35 -0700108func (as *AndroidAppSet) APKCertsFile() android.Path {
109 return as.apkcertsFile
110}
111
Jaewoong Jung8cf307e2020-05-14 14:15:24 -0700112var TargetCpuAbi = map[string]string{
Sasha Smundak4de27a52020-04-23 09:49:59 -0700113 "arm": "ARMEABI_V7A",
114 "arm64": "ARM64_V8A",
115 "x86": "X86",
116 "x86_64": "X86_64",
117}
118
Jaewoong Jung8cf307e2020-05-14 14:15:24 -0700119func SupportedAbis(ctx android.ModuleContext) []string {
Jaewoong Jung829b7132020-06-10 12:23:32 -0700120 abiName := func(targetIdx int, deviceArch string) string {
Jaewoong Jung8cf307e2020-05-14 14:15:24 -0700121 if abi, found := TargetCpuAbi[deviceArch]; found {
Sasha Smundak4de27a52020-04-23 09:49:59 -0700122 return abi
123 }
Jaewoong Jung829b7132020-06-10 12:23:32 -0700124 ctx.ModuleErrorf("Target %d has invalid Arch: %s", targetIdx, deviceArch)
Sasha Smundak4de27a52020-04-23 09:49:59 -0700125 return "BAD_ABI"
126 }
127
Jaewoong Jung829b7132020-06-10 12:23:32 -0700128 var result []string
129 for i, target := range ctx.Config().Targets[android.Android] {
130 result = append(result, abiName(i, target.Arch.ArchType.String()))
Sasha Smundak4de27a52020-04-23 09:49:59 -0700131 }
132 return result
133}
134
135func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sasha Smundakc4f0ff12020-05-27 16:36:07 -0700136 as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip")
Jaewoong Jung8bec0262020-06-29 19:18:44 -0700137 as.apkcertsFile = android.PathForModuleOut(ctx, "apkcerts.txt")
Sasha Smundak4de27a52020-04-23 09:49:59 -0700138 // We are assuming here that the master file in the APK
139 // set has `.apk` suffix. If it doesn't the build will fail.
140 // APK sets containing APEX files are handled elsewhere.
Sasha Smundak854c14f2020-06-16 10:28:22 -0700141 as.masterFile = as.BaseModuleName() + ".apk"
Sasha Smundak4de27a52020-04-23 09:49:59 -0700142 screenDensities := "all"
143 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
144 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
145 }
146 // TODO(asmundak): handle locales.
147 // TODO(asmundak): do we support device features
148 ctx.Build(pctx,
149 android.BuildParams{
Jaewoong Jung8bec0262020-06-29 19:18:44 -0700150 Rule: extractMatchingApks,
151 Description: "Extract APKs from APK set",
152 Output: as.packedOutput,
153 ImplicitOutput: as.apkcertsFile,
154 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
Sasha Smundak4de27a52020-04-23 09:49:59 -0700155 Args: map[string]string{
Jaewoong Jung8cf307e2020-05-14 14:15:24 -0700156 "abis": strings.Join(SupportedAbis(ctx), ","),
Sasha Smundak4de27a52020-04-23 09:49:59 -0700157 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
158 "screen-densities": screenDensities,
159 "sdk-version": ctx.Config().PlatformSdkVersion(),
Sasha Smundak3c904e82020-06-22 16:53:33 -0700160 "stem": as.BaseModuleName(),
Jaewoong Jung8bec0262020-06-29 19:18:44 -0700161 "apkcerts": as.apkcertsFile.String(),
162 "partition": as.PartitionTag(ctx.DeviceConfig()),
Sasha Smundak4de27a52020-04-23 09:49:59 -0700163 },
164 })
Sasha Smundak4de27a52020-04-23 09:49:59 -0700165}
166
167// android_app_set extracts a set of APKs based on the target device
168// configuration and installs this set as "split APKs".
Sasha Smundakc4f0ff12020-05-27 16:36:07 -0700169// The extracted set always contains 'master' APK whose name is
170// _module_name_.apk and every split APK matching target device.
171// The extraction of the density-specific splits depends on
172// PRODUCT_AAPT_PREBUILT_DPI variable. If present (its value should
173// be a list density names: LDPI, MDPI, HDPI, etc.), only listed
174// splits will be extracted. Otherwise all density-specific splits
175// will be extracted.
Sasha Smundak4de27a52020-04-23 09:49:59 -0700176func AndroidApkSetFactory() android.Module {
177 module := &AndroidAppSet{}
178 module.AddProperties(&module.properties)
179 InitJavaModule(module, android.DeviceSupported)
180 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
181 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000182}
183
Colin Cross30e076a2015-04-13 13:58:27 -0700184// AndroidManifest.xml merging
185// package splits
186
Colin Crossfabb6082018-02-20 17:22:23 -0800187type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700188 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700189 Additional_certificates []string
190
191 // If set, create package-export.apk, which other packages can
192 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800193 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700194
Colin Cross16056062017-12-13 22:46:28 -0800195 // Specifies that this app should be installed to the priv-app directory,
196 // where the system will grant it additional privileges not available to
197 // normal apps.
198 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700199
200 // list of resource labels to generate individual resource packages
201 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400202
203 // Names of modules to be overridden. Listed modules can only be other binaries
204 // (in Make or Soong).
205 // This does not completely prevent installation of the overridden binaries, but if both
206 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
207 // from PRODUCT_PACKAGES.
208 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700209
210 // list of native libraries that will be provided in or alongside the resulting jar
211 Jni_libs []string `android:"arch_variant"`
212
Colin Cross76583a42020-05-06 17:51:39 -0700213 // if true, use JNI libraries that link against platform APIs even if this module sets
Colin Crossee87c602020-02-19 16:57:15 -0800214 // sdk_version.
215 Jni_uses_platform_apis *bool
216
Colin Cross76583a42020-05-06 17:51:39 -0700217 // if true, use JNI libraries that link against SDK APIs even if this module does not set
218 // sdk_version.
219 Jni_uses_sdk_apis *bool
220
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700221 // STL library to use for JNI libraries.
222 Stl *string `android:"arch_variant"`
223
Colin Crosse4246ab2019-02-05 21:55:21 -0800224 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
225 // 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 +0900226 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
227 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
228 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -0800229 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -0800230
231 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
232 // they are used from inside the APK at runtime.
233 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -0700234
235 // Forces native libraries to always be packaged into the APK,
236 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
237 // True for android_test* modules.
238 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700239
240 // If set, find and merge all NOTICE files that this module and its dependencies have and store
241 // it in the APK as an asset.
242 Embed_notices *bool
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700243
244 // cc.Coverage related properties
245 PreventInstall bool `blueprint:"mutated"`
246 HideFromMake bool `blueprint:"mutated"`
247 IsCoverageVariant bool `blueprint:"mutated"`
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100248
249 // Whether this app is considered mainline updatable or not. When set to true, this will enforce
Artur Satayev11962102020-04-16 13:43:02 +0100250 // additional rules to make sure an app can safely be updated. Default is false.
251 // Prefer using other specific properties if build behaviour must be changed; avoid using this
252 // flag for anything but neverallow rules (unless the behaviour change is invisible to owners).
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100253 Updatable *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700254}
255
Jaewoong Jung525443a2019-02-28 15:35:54 -0800256// android_app properties that can be overridden by override_android_app
257type overridableAppProperties struct {
258 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
259 // or an android_app_certificate module name in the form ":module".
260 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700261
Liz Kammer70dd74d2020-05-07 13:24:05 -0700262 // Name of the signing certificate lineage file.
263 Lineage *string
264
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700265 // the package name of this app. The package name in the manifest file is used if one was not given.
266 Package_name *string
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800267
268 // the logging parent of this app.
269 Logging_parent *string
Liz Kammerf9e5c3b2020-06-18 19:44:06 +0000270
271 // Whether to rename the package in resources to the override name rather than the base name. Defaults to true.
272 Rename_resources_package *bool
Jaewoong Jung525443a2019-02-28 15:35:54 -0800273}
274
Roshan Piusb8307962020-04-27 09:42:27 -0700275// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
276type OverridableRuntimeResourceOverlayProperties struct {
277 // the package name of this app. The package name in the manifest file is used if one was not given.
278 Package_name *string
279
280 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
281 Target_package_name *string
282}
283
Colin Cross30e076a2015-04-13 13:58:27 -0700284type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700285 Library
286 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800287 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700288
Colin Cross50ddcc42019-05-16 12:28:22 -0700289 usesLibrary usesLibrary
290
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900291 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700292
Colin Crossfabb6082018-02-20 17:22:23 -0800293 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700294
Jaewoong Jung525443a2019-02-28 15:35:54 -0800295 overridableAppProperties overridableAppProperties
296
Colin Crossb32b7122020-07-06 14:15:24 -0700297 jniLibs []jniLib
298 installPathForJNISymbols android.Path
299 embeddedJniLibs bool
300 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700301
302 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800303
304 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
305 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800306
Colin Cross70dda7e2019-10-01 22:05:35 -0700307 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700308
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700309 onDeviceDir string
310
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800311 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700312
313 noticeOutputs android.NoticeOutputs
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900314
315 overriddenManifestPackageName string
Artur Satayevd9b503a2020-04-27 19:05:28 +0100316
317 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800318}
319
Martin Stjernholm6d415272020-01-31 17:10:36 +0000320func (a *AndroidApp) IsInstallable() bool {
321 return Bool(a.properties.Installable)
322}
323
Colin Cross89c31582018-04-30 15:55:11 -0700324func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
325 return nil
326}
327
Colin Cross66f78822018-05-02 12:58:28 -0700328func (a *AndroidApp) ExportedStaticPackages() android.Paths {
329 return nil
330}
331
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900332func (a *AndroidApp) OutputFile() android.Path {
333 return a.outputFile
334}
335
Colin Cross503c1d02020-01-28 14:00:53 -0800336func (a *AndroidApp) Certificate() Certificate {
337 return a.certificate
338}
339
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700340func (a *AndroidApp) JniCoverageOutputs() android.Paths {
341 return a.jniCoverageOutputs
342}
343
Colin Crossa97c5d32018-03-28 14:58:31 -0700344var _ AndroidLibraryDependency = (*AndroidApp)(nil)
345
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900346type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800347 Pem, Key android.Path
348 presigned bool
349}
350
Sasha Smundakc4f0ff12020-05-27 16:36:07 -0700351var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800352
353func (c Certificate) AndroidMkString() string {
354 if c.presigned {
355 return "PRESIGNED"
356 } else {
357 return c.Pem.String()
358 }
Colin Cross30e076a2015-04-13 13:58:27 -0700359}
360
Colin Cross46c9b8b2017-06-22 16:51:17 -0700361func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
362 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700363
Jiyong Park6a927c42020-01-21 02:03:43 +0900364 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700365 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
366 }
367
Paul Duffin250e6192019-06-07 10:44:37 +0100368 sdkDep := decodeSdkDep(ctx, sdkContext(a))
369 if sdkDep.hasFrameworkLibs() {
370 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700371 }
Colin Crossa4f08812018-10-02 22:03:40 -0700372
Colin Cross1dd9c442020-05-08 11:20:24 -0700373 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
374
375 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
376 ctx.PropertyErrorf("jni_uses_sdk_apis",
377 "can only be set for modules that do not set sdk_version")
378 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
379 ctx.PropertyErrorf("jni_uses_platform_apis",
380 "can only be set for modules that set sdk_version")
381 }
382
Peter Collingbournead84f972019-12-17 16:46:18 -0800383 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700384 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700385 variation := append(jniTarget.Variations(),
386 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Cross01fd7cc2020-02-19 16:54:04 -0800387
388 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
389 // unless jni_uses_platform_apis is set.
Colin Crosseb032962020-05-13 11:05:02 -0700390 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
391 // have stable APIs through the VNDK.
392 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
393 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross76583a42020-05-06 17:51:39 -0700394 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Cross01fd7cc2020-02-19 16:54:04 -0800395 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
396 }
Colin Crossa4f08812018-10-02 22:03:40 -0700397 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
398 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700399
Paul Duffin250e6192019-06-07 10:44:37 +0100400 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700401}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700402
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700403func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800404 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700405 if cert != "" {
406 ctx.AddDependency(ctx.Module(), certificateTag, cert)
407 }
408
409 for _, cert := range a.appProperties.Additional_certificates {
410 cert = android.SrcIsModule(cert)
411 if cert != "" {
412 ctx.AddDependency(ctx.Module(), certificateTag, cert)
413 } else {
414 ctx.PropertyErrorf("additional_certificates",
415 `must be names of android_app_certificate modules in the form ":module"`)
416 }
417 }
Colin Cross30e076a2015-04-13 13:58:27 -0700418}
419
Jeongik Cha538c0d02019-07-11 15:54:27 +0900420func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
421 a.generateAndroidBuildActions(ctx)
422}
423
Colin Cross46c9b8b2017-06-22 16:51:17 -0700424func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100425 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700426 a.generateAndroidBuildActions(ctx)
427}
428
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100429func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev2b4b7bb2020-04-28 14:57:42 +0100430 if a.Updatable() {
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100431 if !a.sdkVersion().stable() {
432 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
433 }
Artur Satayev11962102020-04-16 13:43:02 +0100434 if String(a.deviceProperties.Min_sdk_version) == "" {
435 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
436 }
Jooyung Hanaf7f91f2020-04-29 14:01:06 +0900437 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
438 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
439 } else {
440 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
441 }
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100442 }
443
444 a.checkPlatformAPI(ctx)
445 a.checkSdkVersions(ctx)
446}
447
Jooyung Hanaf7f91f2020-04-29 14:01:06 +0900448// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
449// This check is enforced for "updatable" APKs (including APK-in-APEX).
450// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
451// because, sdk_version is overridden by min_sdk_version (if set as smaller)
452// and linkType is checked with dependencies so we can be sure that the whole dependency tree
453// will meet the requirements.
454func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
455 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
456 ctx.VisitDirectDeps(func(m android.Module) {
457 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
458 return
459 }
460 dep, _ := m.(*cc.Module)
Jooyung Han9d2c0f72020-05-20 17:12:13 +0900461 // The domain of cc.sdk_version is "current" and <number>
462 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
463 // properly regardless of sdk finalization.
464 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
465 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanaf7f91f2020-04-29 14:01:06 +0900466 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
467 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
468 return
469 }
470
471 })
472}
473
Sasha Smundak6ad77252019-05-01 13:16:22 -0700474// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800475// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700476func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900477 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800478 if err != nil {
479 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
480 }
481
Jiyong Park52cd06f2019-11-11 10:14:32 +0900482 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
483 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800484}
485
Colin Cross43f08db2018-11-12 10:13:39 -0800486// Returns whether this module should have the dex file stored uncompressed in the APK.
487func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800488 if Bool(a.appProperties.Use_embedded_dex) {
489 return true
490 }
491
Colin Cross53a87f52019-06-25 13:35:30 -0700492 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
493 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900494 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000495 return true
496 }
497
Colin Cross53a87f52019-06-25 13:35:30 -0700498 if ctx.Config().UnbundledBuild() {
499 return false
500 }
501
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700502 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700503}
504
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700505func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
506 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900507 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700508}
509
Liz Kammerf9e5c3b2020-06-18 19:44:06 +0000510func generateAaptRenamePackageFlags(packageName string, renameResourcesPackage bool) []string {
511 aaptFlags := []string{"--rename-manifest-package " + packageName}
512 if renameResourcesPackage {
513 // Required to rename the package name in the resources table.
514 aaptFlags = append(aaptFlags, "--rename-resources-package "+packageName)
515 }
516 return aaptFlags
517}
518
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900519func (a *AndroidApp) OverriddenManifestPackageName() string {
520 return a.overriddenManifestPackageName
521}
522
Liz Kammerf9e5c3b2020-06-18 19:44:06 +0000523func (a *AndroidApp) renameResourcesPackage() bool {
524 return proptools.BoolDefault(a.overridableAppProperties.Rename_resources_package, true)
525}
526
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800527func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000528 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
529
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700530 // Ask manifest_fixer to add or update the application element indicating this app has no code.
531 a.aapt.hasNoCode = !a.hasCode(ctx)
532
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800533 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800534
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800535 // 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 -0800536 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700537 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800538 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700539 }
540
Dan Willemsen72be5902018-10-24 20:24:57 -0700541 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
542 // Product AAPT config
543 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800544 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700545 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700546
Dan Willemsen72be5902018-10-24 20:24:57 -0700547 // Product AAPT preferred config
548 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800549 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700550 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700551 }
552
Jiyong Park7f67f482019-01-05 12:57:48 +0900553 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700554 if overridden || a.overridableAppProperties.Package_name != nil {
555 // The product override variable has a priority over the package_name property.
556 if !overridden {
557 manifestPackageName = *a.overridableAppProperties.Package_name
558 }
Liz Kammerf9e5c3b2020-06-18 19:44:06 +0000559 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, a.renameResourcesPackage())...)
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900560 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900561 }
562
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800563 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
564
Colin Crosse560c4a2019-03-19 16:03:11 -0700565 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700566 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800567 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800568 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700569
Colin Cross46c9b8b2017-06-22 16:51:17 -0700570 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700571 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800572}
Colin Cross30e076a2015-04-13 13:58:27 -0700573
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800574func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700575 var staticLibProguardFlagFiles android.Paths
576 ctx.VisitDirectDeps(func(m android.Module) {
577 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
578 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
579 }
580 })
581
582 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
583
584 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
585 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800586}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800587
Colin Crossb32b7122020-07-06 14:15:24 -0700588func (a *AndroidApp) installPath(ctx android.ModuleContext) android.InstallPath {
Colin Cross43f08db2018-11-12 10:13:39 -0800589 var installDir string
590 if ctx.ModuleName() == "framework-res" {
591 // framework-res.apk is installed as system/framework/framework-res.apk
592 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900593 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800594 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800595 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800596 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800597 }
Colin Crossb32b7122020-07-06 14:15:24 -0700598
599 return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
600}
601
602func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
603 a.dexpreopter.installPath = a.installPath(ctx)
Liz Kammer7727edc2020-07-09 15:16:41 -0700604 if a.dexProperties.Uncompress_dex == nil {
David Srbecky98c71222020-05-20 22:20:28 +0100605 // If the value was not force-set by the user, use reasonable default based on the module.
Liz Kammer7727edc2020-07-09 15:16:41 -0700606 a.dexProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
David Srbecky98c71222020-05-20 22:20:28 +0100607 }
Liz Kammer7727edc2020-07-09 15:16:41 -0700608 a.dexpreopter.uncompressedDex = *a.dexProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700609 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
610 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
611 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
612 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
613 a.dexpreopter.manifestFile = a.mergedManifestFile
614
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800615 if ctx.ModuleName() != "framework-res" {
616 a.Module.compile(ctx, a.aaptSrcJar)
617 }
Colin Cross30e076a2015-04-13 13:58:27 -0700618
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800619 return a.maybeStrippedDexJarFile
620}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800621
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800622func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700623 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700624 if len(jniLibs) > 0 {
Colin Crossb32b7122020-07-06 14:15:24 -0700625 a.jniLibs = jniLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700626 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700627 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Colin Crossb32b7122020-07-06 14:15:24 -0700628 a.installPathForJNISymbols = a.installPath(ctx).ToMakePath()
Sasha Smundak6ad77252019-05-01 13:16:22 -0700629 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700630 for _, jni := range jniLibs {
631 if jni.coverageFile.Valid() {
Jaewoong Junge62e5942020-04-07 13:07:55 -0700632 // Only collect coverage for the first target arch if this is a multilib target.
633 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
634 // data file path collisions since the current coverage file path format doesn't contain
635 // arch-related strings. This is fine for now though; the code coverage team doesn't use
636 // multi-arch targets such as test_suite_* for coverage collections yet.
637 //
638 // Work with the team to come up with a new format that handles multilib modules properly
639 // and change this.
640 if len(ctx.Config().Targets[android.Android]) == 1 ||
641 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
642 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
643 }
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700644 }
645 }
Colin Crossb32b7122020-07-06 14:15:24 -0700646 a.embeddedJniLibs = true
Colin Crossa4f08812018-10-02 22:03:40 -0700647 }
648 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800649 return jniJarFile
650}
Colin Crossa4f08812018-10-02 22:03:40 -0700651
Colin Crossb32b7122020-07-06 14:15:24 -0700652func (a *AndroidApp) JNISymbolsInstalls(installPath string) android.RuleBuilderInstalls {
653 var jniSymbols android.RuleBuilderInstalls
654 for _, jniLib := range a.jniLibs {
655 if jniLib.unstrippedFile != nil {
656 jniSymbols = append(jniSymbols, android.RuleBuilderInstall{
657 From: jniLib.unstrippedFile,
658 To: filepath.Join(installPath, targetToJniDir(jniLib.target), jniLib.unstrippedFile.Base()),
659 })
660 }
661 }
662 return jniSymbols
663}
664
Jaewoong Jung0949f312019-09-11 10:25:18 -0700665func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700666 // Collect NOTICE files from all dependencies.
667 seenModules := make(map[android.Module]bool)
668 noticePathSet := make(map[android.Path]bool)
669
670 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
671 // Have we already seen this?
672 if _, ok := seenModules[child]; ok {
673 return false
674 }
675 seenModules[child] = true
676
677 // Skip host modules.
678 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
679 return false
680 }
681
682 path := child.(android.Module).NoticeFile()
683 if path.Valid() {
684 noticePathSet[path.Path()] = true
685 }
686 return true
687 })
688
689 // If the app has one, add it too.
690 if a.NoticeFile().Valid() {
691 noticePathSet[a.NoticeFile().Path()] = true
692 }
693
694 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700695 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700696 }
697 var noticePaths []android.Path
698 for path := range noticePathSet {
699 noticePaths = append(noticePaths, path)
700 }
701 sort.Slice(noticePaths, func(i, j int) bool {
702 return noticePaths[i].String() < noticePaths[j].String()
703 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700704
Jaewoong Jung0949f312019-09-11 10:25:18 -0700705 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700706}
707
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700708// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
709// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
710func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
711 if android.SrcIsModule(certPropValue) == "" {
712 var mainCert Certificate
713 if certPropValue != "" {
714 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
715 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800716 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
717 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700718 }
719 } else {
720 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800721 mainCert = Certificate{
722 Pem: pem,
723 Key: key,
724 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700725 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700726 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700727 }
728
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700729 if !m.Platform() {
730 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900731 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
732 if strings.HasPrefix(certPath, systemCertPath) {
733 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
Colin Cross95f7b342020-06-11 11:32:11 -0700734 allowed := ctx.Config().EnforceSystemCertificateAllowList()
Jeongik Chac9464142019-01-07 12:07:27 +0900735
Colin Cross95f7b342020-06-11 11:32:11 -0700736 if enforceSystemCert && !inList(m.Name(), allowed) {
Jeongik Chac9464142019-01-07 12:07:27 +0900737 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
738 }
739 }
740 }
741
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700742 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800743}
744
Jooyung Han65cd0f02020-03-23 20:21:11 +0900745func (a *AndroidApp) InstallApkName() string {
746 return a.installApkName
747}
748
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800749func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700750 var apkDeps android.Paths
751
Jeongik Cha538c0d02019-07-11 15:54:27 +0900752 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
753 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
754
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800755 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800756 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800757
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700758 if ctx.ModuleName() == "framework-res" {
759 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700760 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900761 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700762 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
763 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800764 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700765 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700766 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700767 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700768 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700769
Jaewoong Jung0949f312019-09-11 10:25:18 -0700770 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700771 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
772 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
773 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700774
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800775 // Process all building blocks, from AAPT to certificates.
776 a.aaptBuildActions(ctx)
777
Colin Cross50ddcc42019-05-16 12:28:22 -0700778 if a.usesLibrary.enforceUsesLibraries() {
779 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
780 apkDeps = append(apkDeps, manifestCheckFile)
781 }
782
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800783 a.proguardBuildActions(ctx)
784
Colin Cross1e28e3c2020-06-02 20:09:13 -0700785 a.linter.mergedManifest = a.aapt.mergedManifestFile
786 a.linter.manifest = a.aapt.manifestPath
787 a.linter.resources = a.aapt.resourceFiles
Colin Cross1d11c872020-07-03 11:56:24 -0700788 a.linter.buildModuleReportZip = ctx.Config().UnbundledBuild()
Colin Cross1e28e3c2020-06-02 20:09:13 -0700789
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800790 dexJarFile := a.dexBuildActions(ctx)
791
Colin Crosseb032962020-05-13 11:05:02 -0700792 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800793 jniJarFile := a.jniBuildActions(jniLibs, ctx)
794
795 if ctx.Failed() {
796 return
797 }
798
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700799 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
800 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800801
802 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800803 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Songchun Fan688de9a2020-03-24 20:32:24 -0700804 v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature)
805 var v4SignatureFile android.WritablePath = nil
806 if v4SigningRequested {
807 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig")
808 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700809 var lineageFile android.Path
810 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
811 lineageFile = android.PathForModuleSrc(ctx, lineage)
812 }
813 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800814 a.outputFile = packageFile
Songchun Fan688de9a2020-03-24 20:32:24 -0700815 if v4SigningRequested {
816 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
817 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800818
Colin Crosse560c4a2019-03-19 16:03:11 -0700819 for _, split := range a.aapt.splits {
820 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800821 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Songchun Fan688de9a2020-03-24 20:32:24 -0700822 if v4SigningRequested {
823 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig")
824 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700825 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700826 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
Songchun Fan688de9a2020-03-24 20:32:24 -0700827 if v4SigningRequested {
828 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
829 }
Colin Crosse560c4a2019-03-19 16:03:11 -0700830 }
831
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800832 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700833 bundleFile := android.PathForModuleOut(ctx, "base.zip")
834 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
835 a.bundleFile = bundleFile
836
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800837 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900838 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
839 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
840 for _, extra := range a.extraOutputFiles {
841 ctx.InstallFile(a.installDir, extra.Base(), extra)
842 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800843 }
Artur Satayevd9b503a2020-04-27 19:05:28 +0100844
845 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700846}
847
Colin Crosseb032962020-05-13 11:05:02 -0700848type appDepsInterface interface {
849 sdkVersion() sdkSpec
850 minSdkVersion() sdkSpec
851 RequiresStableAPIs(ctx android.BaseModuleContext) bool
852}
853
854func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
855 shouldCollectRecursiveNativeDeps bool,
Colin Cross1c93c292020-02-15 10:38:00 -0800856 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crosseb032962020-05-13 11:05:02 -0700857
Colin Crossa4f08812018-10-02 22:03:40 -0700858 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900859 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800860 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700861
Colin Crosseb032962020-05-13 11:05:02 -0700862 if checkNativeSdkVersion {
863 checkNativeSdkVersion = app.sdkVersion().specified() &&
864 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
865 }
866
Peter Collingbournead84f972019-12-17 16:46:18 -0800867 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700868 otherName := ctx.OtherModuleName(module)
869 tag := ctx.OtherModuleDependencyTag(module)
870
Peter Collingbournead84f972019-12-17 16:46:18 -0800871 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700872 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800873 if dep.IsNdk() || dep.IsStubs() {
874 return false
875 }
876
Colin Crossa4f08812018-10-02 22:03:40 -0700877 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800878 path := lib.Path()
879 if seenModulePaths[path.String()] {
880 return false
881 }
882 seenModulePaths[path.String()] = true
883
Colin Crosseb032962020-05-13 11:05:02 -0700884 if checkNativeSdkVersion && dep.SdkVersion() == "" {
885 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
886 otherName)
Colin Cross1c93c292020-02-15 10:38:00 -0800887 }
888
Colin Crossa4f08812018-10-02 22:03:40 -0700889 if lib.Valid() {
890 jniLibs = append(jniLibs, jniLib{
Colin Crossb32b7122020-07-06 14:15:24 -0700891 name: ctx.OtherModuleName(module),
892 path: path,
893 target: module.Target(),
894 coverageFile: dep.CoverageOutputFile(),
895 unstrippedFile: dep.UnstrippedOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700896 })
897 } else {
898 ctx.ModuleErrorf("dependency %q missing output file", otherName)
899 }
900 } else {
901 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700902 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800903
904 return shouldCollectRecursiveNativeDeps
905 }
906
907 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700908 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900909 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700910 } else {
911 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
912 }
Colin Crossa4f08812018-10-02 22:03:40 -0700913 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800914
915 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700916 })
917
Colin Crossbd01e2a2018-10-04 15:21:03 -0700918 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700919}
920
Artur Satayevd9b503a2020-04-27 19:05:28 +0100921func (a *AndroidApp) walkPayloadDeps(ctx android.ModuleContext,
922 do func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool)) {
923
924 ctx.WalkDeps(func(child, parent android.Module) bool {
925 isExternal := !a.DepIsInSameApex(ctx, child)
926 if am, ok := child.(android.ApexModule); ok {
927 do(ctx, parent, am, isExternal)
928 }
929 return !isExternal
930 })
931}
932
933func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
934 if ctx.Host() {
935 return
936 }
937
938 depsInfo := android.DepNameToDepInfoMap{}
939 a.walkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) {
940 depName := to.Name()
Artur Satayev55bf3872021-03-11 18:03:42 +0000941
942 // Skip dependencies that are only available to APEXes; they are developed with updatability
943 // in mind and don't need manual approval.
944 if to.(android.ApexModule).NotAvailableForPlatform() {
945 return
946 }
947
Artur Satayevd9b503a2020-04-27 19:05:28 +0100948 if info, exist := depsInfo[depName]; exist {
949 info.From = append(info.From, from.Name())
950 info.IsExternal = info.IsExternal && externalDep
951 depsInfo[depName] = info
952 } else {
953 toMinSdkVersion := "(no version)"
954 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
955 if v := m.MinSdkVersion(); v != "" {
956 toMinSdkVersion = v
957 }
958 }
959 depsInfo[depName] = android.ApexModuleDepInfo{
960 To: depName,
961 From: []string{from.Name()},
962 IsExternal: externalDep,
963 MinSdkVersion: toMinSdkVersion,
964 }
965 }
966 })
967
968 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
969}
970
Artur Satayev2b4b7bb2020-04-28 14:57:42 +0100971func (a *AndroidApp) Updatable() bool {
972 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
973}
974
Colin Cross0ea8ba82019-06-06 14:33:29 -0700975func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800976 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
977 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000978 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800979 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800980 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800981}
982
Jiyong Park0f80c182020-01-31 02:49:53 +0900983func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
984 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
985 return true
986 }
987 return a.Library.DepIsInSameApex(ctx, dep)
988}
989
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900990// For OutputFileProducer interface
991func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
992 switch tag {
993 case ".aapt.srcjar":
994 return []android.Path{a.aaptSrcJar}, nil
Anton Hansson8fe023c2020-08-13 19:37:22 +0100995 case ".export-package.apk":
996 return []android.Path{a.exportPackage}, nil
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900997 }
998 return a.Library.OutputFiles(tag)
999}
1000
Jiyong Parkf7487312019-10-17 12:54:30 +09001001func (a *AndroidApp) Privileged() bool {
1002 return Bool(a.appProperties.Privileged)
1003}
1004
Jaewoong Jung37ca4a12020-03-26 14:01:48 -07001005func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
Colin Cross72cabc62020-06-16 17:51:46 -07001006 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
Jaewoong Jung37ca4a12020-03-26 14:01:48 -07001007}
1008
1009func (a *AndroidApp) PreventInstall() {
1010 a.appProperties.PreventInstall = true
1011}
1012
1013func (a *AndroidApp) HideFromMake() {
1014 a.appProperties.HideFromMake = true
1015}
1016
1017func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
1018 a.appProperties.IsCoverageVariant = coverage
1019}
1020
1021var _ cc.Coverage = (*AndroidApp)(nil)
1022
Colin Cross1b16b0e2019-02-12 14:41:32 -08001023// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -07001024func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -07001025 module := &AndroidApp{}
1026
Liz Kammer7727edc2020-07-09 15:16:41 -07001027 module.Module.dexProperties.Optimize.EnabledByDefault = true
1028 module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true)
Colin Cross66dbc0b2017-12-28 12:23:20 -08001029
Colin Crossae5caf52018-05-22 11:11:52 -07001030 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001031 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -07001032
Colin Cross1c14b4e2020-06-15 16:09:53 -07001033 module.addHostAndDeviceProperties()
Colin Cross36242852017-06-23 15:06:31 -07001034 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -07001035 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001036 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001037 &module.overridableAppProperties,
1038 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -07001039
Colin Crossa9d8bee2018-10-02 13:59:46 -07001040 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
1041 return class == android.Device && ctx.Config().DevicePrefer32BitApps()
1042 })
1043
Colin Crossa4f08812018-10-02 22:03:40 -07001044 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1045 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001046 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +09001047 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -07001048
Colin Cross36242852017-06-23 15:06:31 -07001049 return module
Colin Cross30e076a2015-04-13 13:58:27 -07001050}
Colin Crossae5caf52018-05-22 11:11:52 -07001051
1052type appTestProperties struct {
1053 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001054
1055 // if specified, the instrumentation target package name in the manifest is overwritten by it.
1056 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -07001057}
1058
1059type AndroidTest struct {
1060 AndroidApp
1061
1062 appTestProperties appTestProperties
1063
1064 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07001065
1066 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -07001067 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001068}
1069
Jaewoong Jung0949f312019-09-11 10:25:18 -07001070func (a *AndroidTest) InstallInTestcases() bool {
1071 return true
1072}
1073
Colin Crossae5caf52018-05-22 11:11:52 -07001074func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncyleeba606252020-04-30 14:57:06 +08001075 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001076 if a.appTestProperties.Instrumentation_target_package != nil {
1077 a.additionalAaptFlags = append(a.additionalAaptFlags,
1078 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1079 } else if a.appTestProperties.Instrumentation_for != nil {
1080 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001081 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1082 if overridden {
1083 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1084 }
1085 }
Colin Crossae5caf52018-05-22 11:11:52 -07001086 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001087
easoncyleeba606252020-04-30 14:57:06 +08001088 for _, module := range a.testProperties.Test_mainline_modules {
1089 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1090 }
1091
Jaewoong Jung39982342020-01-14 10:27:18 -08001092 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncyleeba606252020-04-30 14:57:06 +08001093 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001094 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001095 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001096}
1097
Jaewoong Jung39982342020-01-14 10:27:18 -08001098func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1099 if testConfig == nil {
1100 return nil
1101 }
1102
1103 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1104 rule := android.NewRuleBuilder()
1105 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1106 fixNeeded := false
1107
1108 if ctx.ModuleName() != a.installApkName {
1109 fixNeeded = true
1110 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1111 }
1112
1113 if a.overridableAppProperties.Package_name != nil {
1114 fixNeeded = true
1115 command.FlagWithInput("--manifest ", a.manifestPath).
1116 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1117 }
1118
1119 if fixNeeded {
1120 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1121 return fixedConfig
1122 }
1123 return testConfig
1124}
1125
Colin Cross303e21f2018-08-07 16:49:25 -07001126func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001127 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001128}
1129
1130func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1131 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001132 if a.appTestProperties.Instrumentation_for != nil {
1133 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1134 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1135 // use instrumentationForTag instead of libTag.
1136 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1137 }
Colin Crossae5caf52018-05-22 11:11:52 -07001138}
1139
Colin Cross1b16b0e2019-02-12 14:41:32 -08001140// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1141// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001142func AndroidTestFactory() android.Module {
1143 module := &AndroidTest{}
1144
Liz Kammer7727edc2020-07-09 15:16:41 -07001145 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001146
1147 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001148 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001149 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001150 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001151 module.Module.dexpreopter.isTest = true
Colin Cross1e28e3c2020-06-02 20:09:13 -07001152 module.Module.linter.test = true
Colin Crossae5caf52018-05-22 11:11:52 -07001153
Colin Cross1c14b4e2020-06-15 16:09:53 -07001154 module.addHostAndDeviceProperties()
Colin Crossae5caf52018-05-22 11:11:52 -07001155 module.AddProperties(
Colin Crossae5caf52018-05-22 11:11:52 -07001156 &module.aaptProperties,
1157 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001158 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001159 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001160 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001161 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001162
Colin Crossa4f08812018-10-02 22:03:40 -07001163 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1164 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001165 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001166 return module
1167}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001168
Colin Cross252fc6f2018-10-04 15:22:03 -07001169type appTestHelperAppProperties struct {
1170 // list of compatibility suites (for example "cts", "vts") that the module should be
1171 // installed into.
1172 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001173
1174 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1175 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1176 // explicitly.
1177 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001178}
1179
1180type AndroidTestHelperApp struct {
1181 AndroidApp
1182
1183 appTestHelperAppProperties appTestHelperAppProperties
1184}
1185
Jaewoong Jung326a9412019-11-21 10:41:00 -08001186func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1187 return true
1188}
1189
Colin Cross1b16b0e2019-02-12 14:41:32 -08001190// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1191// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1192// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001193func AndroidTestHelperAppFactory() android.Module {
1194 module := &AndroidTestHelperApp{}
1195
Liz Kammer7727edc2020-07-09 15:16:41 -07001196 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001197
1198 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001199 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001200 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001201 module.Module.dexpreopter.isTest = true
Colin Cross1e28e3c2020-06-02 20:09:13 -07001202 module.Module.linter.test = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001203
Colin Cross1c14b4e2020-06-15 16:09:53 -07001204 module.addHostAndDeviceProperties()
Colin Cross252fc6f2018-10-04 15:22:03 -07001205 module.AddProperties(
Colin Cross252fc6f2018-10-04 15:22:03 -07001206 &module.aaptProperties,
1207 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001208 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001209 &module.overridableAppProperties,
1210 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001211
1212 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1213 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001214 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001215 return module
1216}
1217
Colin Crossbd01e2a2018-10-04 15:21:03 -07001218type AndroidAppCertificate struct {
1219 android.ModuleBase
1220 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001221 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001222}
1223
1224type AndroidAppCertificateProperties struct {
1225 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1226 Certificate *string
1227}
1228
Colin Cross1b16b0e2019-02-12 14:41:32 -08001229// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1230// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001231func AndroidAppCertificateFactory() android.Module {
1232 module := &AndroidAppCertificate{}
1233 module.AddProperties(&module.properties)
1234 android.InitAndroidModule(module)
1235 return module
1236}
1237
Colin Crossbd01e2a2018-10-04 15:21:03 -07001238func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1239 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001240 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001241 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1242 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001243 }
1244}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001245
1246type OverrideAndroidApp struct {
1247 android.ModuleBase
1248 android.OverrideModuleBase
1249}
1250
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001251func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -08001252 // All the overrides happen in the base module.
1253 // TODO(jungjw): Check the base module type.
1254}
1255
1256// override_android_app is used to create an android_app module based on another android_app by overriding
1257// some of its properties.
1258func OverrideAndroidAppModuleFactory() android.Module {
1259 m := &OverrideAndroidApp{}
1260 m.AddProperties(&overridableAppProperties{})
1261
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001262 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001263 android.InitOverrideModule(m)
1264 return m
1265}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001266
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001267type OverrideAndroidTest struct {
1268 android.ModuleBase
1269 android.OverrideModuleBase
1270}
1271
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001272func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001273 // All the overrides happen in the base module.
1274 // TODO(jungjw): Check the base module type.
1275}
1276
1277// override_android_test is used to create an android_app module based on another android_test by overriding
1278// some of its properties.
1279func OverrideAndroidTestModuleFactory() android.Module {
1280 m := &OverrideAndroidTest{}
1281 m.AddProperties(&overridableAppProperties{})
1282 m.AddProperties(&appTestProperties{})
1283
1284 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1285 android.InitOverrideModule(m)
1286 return m
1287}
1288
Roshan Piusb8307962020-04-27 09:42:27 -07001289type OverrideRuntimeResourceOverlay struct {
1290 android.ModuleBase
1291 android.OverrideModuleBase
1292}
1293
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001294func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) {
Roshan Piusb8307962020-04-27 09:42:27 -07001295 // All the overrides happen in the base module.
1296 // TODO(jungjw): Check the base module type.
1297}
1298
1299// override_runtime_resource_overlay is used to create a module based on another
1300// runtime_resource_overlay module by overriding some of its properties.
1301func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1302 m := &OverrideRuntimeResourceOverlay{}
1303 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1304
1305 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1306 android.InitOverrideModule(m)
1307 return m
1308}
1309
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001310type AndroidAppImport struct {
1311 android.ModuleBase
1312 android.DefaultableModuleBase
1313 prebuilt android.Prebuilt
1314
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001315 properties AndroidAppImportProperties
1316 dpiVariants interface{}
1317 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001318
1319 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001320 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001321
1322 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001323
1324 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001325
Liz Kammer7e20dda2020-05-20 14:36:30 -07001326 preprocessed bool
1327
Colin Cross70dda7e2019-10-01 22:05:35 -07001328 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001329}
1330
1331type AndroidAppImportProperties struct {
1332 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001333 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001334
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001335 // The name of a certificate in the default certificate directory or an android_app_certificate
1336 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001337 Certificate *string
1338
1339 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1340 // be set for presigned modules.
1341 Presigned *bool
1342
Liz Kammer2bc57f62020-05-13 15:49:21 -07001343 // Name of the signing certificate lineage file.
1344 Lineage *string
1345
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001346 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1347 // need to either specify a specific certificate or be presigned.
1348 Default_dev_cert *bool
1349
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001350 // Specifies that this app should be installed to the priv-app directory,
1351 // where the system will grant it additional privileges not available to
1352 // normal apps.
1353 Privileged *bool
1354
1355 // Names of modules to be overridden. Listed modules can only be other binaries
1356 // (in Make or Soong).
1357 // This does not completely prevent installation of the overridden binaries, but if both
1358 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1359 // from PRODUCT_PACKAGES.
1360 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001361
1362 // Optional name for the installed app. If unspecified, it is derived from the module name.
1363 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001364}
1365
Martin Stjernholm6d415272020-01-31 17:10:36 +00001366func (a *AndroidAppImport) IsInstallable() bool {
1367 return true
1368}
1369
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001370// Updates properties with variant-specific values.
1371func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001372 config := ctx.Config()
1373
1374 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1375 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1376 // overwrites everything else.
1377 // TODO(jungjw): Can we optimize this by making it priority order?
1378 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001379 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001380 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001381 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001382 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001383 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001384
1385 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1386 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1387 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001388}
1389
Colin Cross1184b642019-12-30 18:43:07 -08001390func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001391 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001392 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1393 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001394 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001395 }
1396
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001397 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1398 if err != nil {
1399 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1400 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1401 } else {
1402 panic(err)
1403 }
1404 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001405}
1406
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001407func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1408 cert := android.SrcIsModule(String(a.properties.Certificate))
1409 if cert != "" {
1410 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1411 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001412
Paul Duffin250e6192019-06-07 10:44:37 +01001413 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001414}
1415
1416func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1417 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001418 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1419 // with them may invalidate pre-existing signature data.
Liz Kammer7e20dda2020-05-20 14:36:30 -07001420 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001421 ctx.Build(pctx, android.BuildParams{
1422 Rule: android.Cp,
1423 Output: outputPath,
1424 Input: inputPath,
1425 })
1426 return
1427 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001428 rule := android.NewRuleBuilder()
1429 rule.Command().
1430 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001431 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001432 FlagWithInput("-i ", inputPath).
1433 FlagWithOutput("-o ", outputPath).
1434 FlagWithArg("-0 ", "'lib/**/*.so'").
1435 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1436 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1437}
1438
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001439// Returns whether this module should have the dex file stored uncompressed in the APK.
1440func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer7e20dda2020-05-20 14:36:30 -07001441 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001442 return false
1443 }
1444
1445 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001446 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001447 return true
1448 }
1449
1450 return shouldUncompressDex(ctx, &a.dexpreopter)
1451}
1452
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001453func (a *AndroidAppImport) uncompressDex(
1454 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1455 rule := android.NewRuleBuilder()
1456 rule.Command().
1457 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001458 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001459 FlagWithInput("-i ", inputPath).
1460 FlagWithOutput("-o ", outputPath).
1461 FlagWithArg("-0 ", "'classes*.dex'").
1462 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1463 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1464}
1465
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001466func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001467 a.generateAndroidBuildActions(ctx)
1468}
1469
Jooyung Han65cd0f02020-03-23 20:21:11 +09001470func (a *AndroidAppImport) InstallApkName() string {
1471 return a.BaseModuleName()
1472}
1473
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001474func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001475 numCertPropsSet := 0
1476 if String(a.properties.Certificate) != "" {
1477 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001478 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001479 if Bool(a.properties.Presigned) {
1480 numCertPropsSet++
1481 }
1482 if Bool(a.properties.Default_dev_cert) {
1483 numCertPropsSet++
1484 }
1485 if numCertPropsSet != 1 {
1486 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001487 }
1488
Colin Crosseb032962020-05-13 11:05:02 -07001489 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001490
1491 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001492 // TODO: LOCAL_PACKAGE_SPLITS
1493
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001494 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001495
1496 if a.usesLibrary.enforceUsesLibraries() {
1497 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1498 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001499
1500 // TODO: Install or embed JNI libraries
1501
1502 // Uncompress JNI libraries in the apk
1503 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1504 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1505
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001506 var installDir android.InstallPath
1507 if Bool(a.properties.Privileged) {
1508 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001509 } else if ctx.InstallInTestcases() {
1510 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001511 } else {
1512 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1513 }
1514
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001515 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001516 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001517 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001518
1519 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1520 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1521 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1522 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1523
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001524 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001525 if a.dexpreopter.uncompressedDex {
1526 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1527 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1528 dexOutput = dexUncompressed
1529 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001530
Jooyung Han65cd0f02020-03-23 20:21:11 +09001531 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1532
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001533 // TODO: Handle EXTERNAL
Liz Kammer7e20dda2020-05-20 14:36:30 -07001534
1535 // Sign or align the package if package has not been preprocessed
1536 if a.preprocessed {
1537 a.outputFile = srcApk
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001538 a.certificate = PresignedCertificate
Liz Kammer7e20dda2020-05-20 14:36:30 -07001539 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001540 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1541 // Which makes processMainCert's behavior for the empty cert string WAI.
1542 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001543 if len(certificates) != 1 {
1544 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1545 }
Colin Cross503c1d02020-01-28 14:00:53 -08001546 a.certificate = certificates[0]
Jooyung Han65cd0f02020-03-23 20:21:11 +09001547 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer2bc57f62020-05-13 15:49:21 -07001548 var lineageFile android.Path
1549 if lineage := String(a.properties.Lineage); lineage != "" {
1550 lineageFile = android.PathForModuleSrc(ctx, lineage)
1551 }
1552 SignAppPackage(ctx, signed, dexOutput, certificates, nil, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001553 a.outputFile = signed
1554 } else {
Jooyung Han65cd0f02020-03-23 20:21:11 +09001555 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001556 TransformZipAlign(ctx, alignedApk, dexOutput)
1557 a.outputFile = alignedApk
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001558 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001559 }
1560
1561 // TODO: Optionally compress the output apk.
1562
Jooyung Han65cd0f02020-03-23 20:21:11 +09001563 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001564
1565 // TODO: androidmk converter jni libs
1566}
1567
1568func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1569 return &a.prebuilt
1570}
1571
1572func (a *AndroidAppImport) Name() string {
1573 return a.prebuilt.Name(a.ModuleBase.Name())
1574}
1575
Dario Frenicde2a032019-10-27 00:29:22 +01001576func (a *AndroidAppImport) OutputFile() android.Path {
1577 return a.outputFile
1578}
1579
Jiyong Park618922e2020-01-08 13:35:43 +09001580func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1581 return nil
1582}
1583
Colin Cross503c1d02020-01-28 14:00:53 -08001584func (a *AndroidAppImport) Certificate() Certificate {
1585 return a.certificate
1586}
1587
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001588var dpiVariantGroupType reflect.Type
1589var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001590
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001591func initAndroidAppImportVariantGroupTypes() {
1592 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1593
1594 archNames := make([]string, len(android.ArchTypeList()))
1595 for i, archType := range android.ArchTypeList() {
1596 archNames[i] = archType.Name
1597 }
1598 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1599}
1600
1601// Populates all variant struct properties at creation time.
1602func (a *AndroidAppImport) populateAllVariantStructs() {
1603 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1604 a.AddProperties(a.dpiVariants)
1605
1606 a.archVariants = reflect.New(archVariantGroupType).Interface()
1607 a.AddProperties(a.archVariants)
1608}
1609
Jiyong Parkf7487312019-10-17 12:54:30 +09001610func (a *AndroidAppImport) Privileged() bool {
1611 return Bool(a.properties.Privileged)
1612}
1613
Colin Crosseb032962020-05-13 11:05:02 -07001614func (a *AndroidAppImport) sdkVersion() sdkSpec {
1615 return sdkSpecFrom("")
1616}
1617
1618func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1619 return sdkSpecFrom("")
1620}
1621
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001622func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1623 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1624
1625 variantFields := make([]reflect.StructField, len(variants))
1626 for i, variant := range variants {
1627 variantFields[i] = reflect.StructField{
1628 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001629 Type: props,
1630 }
1631 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001632
1633 variantGroupStruct := reflect.StructOf(variantFields)
1634 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001635 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001636 Name: variantGroupName,
1637 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001638 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001639 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001640}
1641
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001642// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001643// DPI-specific apk source files can be specified using dpi_variants. Example:
1644//
1645// android_app_import {
1646// name: "example_import",
1647// apk: "prebuilts/example.apk",
1648// dpi_variants: {
1649// mdpi: {
1650// apk: "prebuilts/example_mdpi.apk",
1651// },
1652// xhdpi: {
1653// apk: "prebuilts/example_xhdpi.apk",
1654// },
1655// },
1656// certificate: "PRESIGNED",
1657// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001658func AndroidAppImportFactory() android.Module {
1659 module := &AndroidAppImport{}
1660 module.AddProperties(&module.properties)
1661 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001662 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001663 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001664 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001665 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001666 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001667
Jaewoong Jung0feed892020-05-26 20:10:08 -07001668 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1669 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001670 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001671
1672 return module
1673}
Colin Cross50ddcc42019-05-16 12:28:22 -07001674
Liz Kammer7e20dda2020-05-20 14:36:30 -07001675type androidTestImportProperties struct {
1676 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1677 Preprocessed *bool
1678}
1679
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001680type AndroidTestImport struct {
1681 AndroidAppImport
1682
1683 testProperties testProperties
1684
Liz Kammer7e20dda2020-05-20 14:36:30 -07001685 testImportProperties androidTestImportProperties
1686
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001687 data android.Paths
1688}
1689
1690func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer7e20dda2020-05-20 14:36:30 -07001691 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1692
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001693 a.generateAndroidBuildActions(ctx)
1694
1695 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1696}
1697
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001698func (a *AndroidTestImport) InstallInTestcases() bool {
1699 return true
1700}
1701
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001702// android_test_import imports a prebuilt test apk with additional processing specified in the
1703// module. DPI or arch variant configurations can be made as with android_app_import.
1704func AndroidTestImportFactory() android.Module {
1705 module := &AndroidTestImport{}
1706 module.AddProperties(&module.properties)
1707 module.AddProperties(&module.dexpreoptProperties)
1708 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1709 module.AddProperties(&module.testProperties)
Liz Kammer7e20dda2020-05-20 14:36:30 -07001710 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001711 module.populateAllVariantStructs()
1712 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1713 module.processVariants(ctx)
1714 })
1715
Colin Crossf30c4532020-05-06 22:29:10 -07001716 module.dexpreopter.isTest = true
1717
Jaewoong Junga689ffe2020-05-01 15:50:08 -07001718 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1719 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001720 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1721
1722 return module
1723}
1724
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001725type RuntimeResourceOverlay struct {
1726 android.ModuleBase
1727 android.DefaultableModuleBase
Roshan Piusb8307962020-04-27 09:42:27 -07001728 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001729 aapt
1730
Roshan Piusb8307962020-04-27 09:42:27 -07001731 properties RuntimeResourceOverlayProperties
1732 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001733
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001734 certificate Certificate
1735
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001736 outputFile android.Path
1737 installDir android.InstallPath
1738}
1739
1740type RuntimeResourceOverlayProperties struct {
1741 // the name of a certificate in the default certificate directory or an android_app_certificate
1742 // module name in the form ":module".
1743 Certificate *string
1744
Liz Kammer7fe241f2020-05-19 16:15:25 -07001745 // Name of the signing certificate lineage file.
1746 Lineage *string
1747
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001748 // optional theme name. If specified, the overlay package will be applied
1749 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1750 Theme *string
1751
1752 // if not blank, set to the version of the sdk to compile against.
1753 // Defaults to compiling against the current platform.
1754 Sdk_version *string
1755
1756 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1757 // Defaults to sdk_version if not set.
1758 Min_sdk_version *string
Jaewoong Jungca095d72020-04-09 16:15:30 -07001759
1760 // list of android_library modules whose resources are extracted and linked against statically
1761 Static_libs []string
1762
1763 // list of android_app modules whose resources are extracted and linked against
1764 Resource_libs []string
Jaewoong Jungbfc6ac02020-04-24 15:22:40 -07001765
1766 // Names of modules to be overridden. Listed modules can only be other overlays
1767 // (in Make or Soong).
1768 // This does not completely prevent installation of the overridden overlays, but if both
1769 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1770 // from PRODUCT_PACKAGES.
1771 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001772}
1773
1774func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1775 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1776 if sdkDep.hasFrameworkLibs() {
1777 r.aapt.deps(ctx, sdkDep)
1778 }
1779
1780 cert := android.SrcIsModule(String(r.properties.Certificate))
1781 if cert != "" {
1782 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1783 }
Jaewoong Jungca095d72020-04-09 16:15:30 -07001784
1785 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1786 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001787}
1788
1789func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1790 // Compile and link resources
1791 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001792 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Piusb8307962020-04-27 09:42:27 -07001793 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1794 // Allow the override of "package name" and "overlay target package name"
1795 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1796 if overridden || r.overridableProperties.Package_name != nil {
1797 // The product override variable has a priority over the package_name property.
1798 if !overridden {
1799 manifestPackageName = *r.overridableProperties.Package_name
1800 }
Liz Kammerf9e5c3b2020-06-18 19:44:06 +00001801 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, false)...)
Roshan Piusb8307962020-04-27 09:42:27 -07001802 }
1803 if r.overridableProperties.Target_package_name != nil {
1804 aaptLinkFlags = append(aaptLinkFlags,
1805 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1806 }
1807 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001808
1809 // Sign the built package
Colin Crosseb032962020-05-13 11:05:02 -07001810 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001811 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1812 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer7fe241f2020-05-19 16:15:25 -07001813 var lineageFile android.Path
1814 if lineage := String(r.properties.Lineage); lineage != "" {
1815 lineageFile = android.PathForModuleSrc(ctx, lineage)
1816 }
1817 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001818 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001819
1820 r.outputFile = signed
1821 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1822 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1823}
1824
Jiyong Park6a927c42020-01-21 02:03:43 +09001825func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1826 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001827}
1828
1829func (r *RuntimeResourceOverlay) systemModules() string {
1830 return ""
1831}
1832
Jiyong Park6a927c42020-01-21 02:03:43 +09001833func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001834 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001835 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001836 }
1837 return r.sdkVersion()
1838}
1839
Jiyong Park6a927c42020-01-21 02:03:43 +09001840func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001841 return r.sdkVersion()
1842}
1843
1844// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1845// system resources at run time.
1846func RuntimeResourceOverlayFactory() android.Module {
1847 module := &RuntimeResourceOverlay{}
1848 module.AddProperties(
1849 &module.properties,
Roshan Piusb8307962020-04-27 09:42:27 -07001850 &module.aaptProperties,
1851 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001852
Roshan Piusb8307962020-04-27 09:42:27 -07001853 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1854 android.InitDefaultableModule(module)
1855 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001856 return module
1857}
1858
Colin Cross50ddcc42019-05-16 12:28:22 -07001859type UsesLibraryProperties struct {
1860 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1861 Uses_libs []string
1862
1863 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1864 // required=false.
1865 Optional_uses_libs []string
1866
1867 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1868 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1869 Enforce_uses_libs *bool
1870}
1871
1872// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1873// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1874// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1875// with knowledge of their shared libraries.
1876type usesLibrary struct {
1877 usesLibraryProperties UsesLibraryProperties
1878}
1879
Paul Duffin250e6192019-06-07 10:44:37 +01001880func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001881 if !ctx.Config().UnbundledBuild() {
1882 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1883 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001884 // Only add these extra dependencies if the module depends on framework libs. This avoids
1885 // creating a cyclic dependency:
1886 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1887 if hasFrameworkLibs {
Colin Cross3245b2c2019-06-07 13:18:09 -07001888 // dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
1889 // to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
1890 // library to dexpreopt.
1891 ctx.AddVariationDependencies(nil, usesLibTag,
1892 "org.apache.http.legacy",
1893 "android.hidl.base-V1.0-java",
1894 "android.hidl.manager-V1.0-java")
1895 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001896 }
1897}
1898
1899// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1900// build.
1901func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1902 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1903 return optionalUsesLibs
1904}
1905
1906// usesLibraryPaths returns a map of module names of shared library dependencies to the paths to their dex jars.
1907func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) map[string]android.Path {
1908 usesLibPaths := make(map[string]android.Path)
1909
1910 if !ctx.Config().UnbundledBuild() {
1911 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
1912 if lib, ok := m.(Dependency); ok {
1913 if dexJar := lib.DexJar(); dexJar != nil {
1914 usesLibPaths[ctx.OtherModuleName(m)] = dexJar
1915 } else {
1916 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must produce a dex jar, does it have installable: true?",
1917 ctx.OtherModuleName(m))
1918 }
1919 } else if ctx.Config().AllowMissingDependencies() {
1920 ctx.AddMissingDependencies([]string{ctx.OtherModuleName(m)})
1921 } else {
1922 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library",
1923 ctx.OtherModuleName(m))
1924 }
1925 })
1926 }
1927
1928 return usesLibPaths
1929}
1930
1931// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1932// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1933// unconditionally in the future.
1934func (u *usesLibrary) enforceUsesLibraries() bool {
1935 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1936 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1937 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1938}
1939
1940// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1941// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1942func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1943 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1944
1945 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001946 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001947 Flag("--enforce-uses-libraries").
1948 Input(manifest).
1949 FlagWithOutput("-o ", outputFile)
1950
1951 for _, lib := range u.usesLibraryProperties.Uses_libs {
1952 cmd.FlagWithArg("--uses-library ", lib)
1953 }
1954
1955 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1956 cmd.FlagWithArg("--optional-uses-library ", lib)
1957 }
1958
1959 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1960
1961 return outputFile
1962}
1963
1964// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1965// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1966func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1967 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1968
1969 rule := android.NewRuleBuilder()
1970 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1971 rule.Command().
1972 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1973 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1974 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1975 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1976 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
1977
1978 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1979
1980 return outputFile
1981}