blob: c9412c435722326f2c23b4f7e364d5c8038f20c4 [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
Jaewoong Jung525443a2019-02-28 15:35:54 -0800270}
271
Roshan Piusb8307962020-04-27 09:42:27 -0700272// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
273type OverridableRuntimeResourceOverlayProperties struct {
274 // the package name of this app. The package name in the manifest file is used if one was not given.
275 Package_name *string
276
277 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
278 Target_package_name *string
279}
280
Colin Cross30e076a2015-04-13 13:58:27 -0700281type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700282 Library
283 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800284 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700285
Colin Cross50ddcc42019-05-16 12:28:22 -0700286 usesLibrary usesLibrary
287
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900288 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700289
Colin Crossfabb6082018-02-20 17:22:23 -0800290 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700291
Jaewoong Jung525443a2019-02-28 15:35:54 -0800292 overridableAppProperties overridableAppProperties
293
Colin Crossb32b7122020-07-06 14:15:24 -0700294 jniLibs []jniLib
295 installPathForJNISymbols android.Path
296 embeddedJniLibs bool
297 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700298
299 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800300
301 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
302 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800303
Colin Cross70dda7e2019-10-01 22:05:35 -0700304 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700305
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700306 onDeviceDir string
307
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800308 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700309
310 noticeOutputs android.NoticeOutputs
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900311
312 overriddenManifestPackageName string
Artur Satayevd9b503a2020-04-27 19:05:28 +0100313
314 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800315}
316
Martin Stjernholm6d415272020-01-31 17:10:36 +0000317func (a *AndroidApp) IsInstallable() bool {
318 return Bool(a.properties.Installable)
319}
320
Colin Cross89c31582018-04-30 15:55:11 -0700321func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
322 return nil
323}
324
Colin Cross66f78822018-05-02 12:58:28 -0700325func (a *AndroidApp) ExportedStaticPackages() android.Paths {
326 return nil
327}
328
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900329func (a *AndroidApp) OutputFile() android.Path {
330 return a.outputFile
331}
332
Colin Cross503c1d02020-01-28 14:00:53 -0800333func (a *AndroidApp) Certificate() Certificate {
334 return a.certificate
335}
336
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700337func (a *AndroidApp) JniCoverageOutputs() android.Paths {
338 return a.jniCoverageOutputs
339}
340
Colin Crossa97c5d32018-03-28 14:58:31 -0700341var _ AndroidLibraryDependency = (*AndroidApp)(nil)
342
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900343type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800344 Pem, Key android.Path
345 presigned bool
346}
347
Sasha Smundakc4f0ff12020-05-27 16:36:07 -0700348var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800349
350func (c Certificate) AndroidMkString() string {
351 if c.presigned {
352 return "PRESIGNED"
353 } else {
354 return c.Pem.String()
355 }
Colin Cross30e076a2015-04-13 13:58:27 -0700356}
357
Colin Cross46c9b8b2017-06-22 16:51:17 -0700358func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
359 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700360
Jiyong Park6a927c42020-01-21 02:03:43 +0900361 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700362 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
363 }
364
Paul Duffin250e6192019-06-07 10:44:37 +0100365 sdkDep := decodeSdkDep(ctx, sdkContext(a))
366 if sdkDep.hasFrameworkLibs() {
367 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700368 }
Colin Crossa4f08812018-10-02 22:03:40 -0700369
Colin Cross1dd9c442020-05-08 11:20:24 -0700370 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
371
372 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
373 ctx.PropertyErrorf("jni_uses_sdk_apis",
374 "can only be set for modules that do not set sdk_version")
375 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
376 ctx.PropertyErrorf("jni_uses_platform_apis",
377 "can only be set for modules that set sdk_version")
378 }
379
Peter Collingbournead84f972019-12-17 16:46:18 -0800380 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700381 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700382 variation := append(jniTarget.Variations(),
383 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Cross01fd7cc2020-02-19 16:54:04 -0800384
385 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
386 // unless jni_uses_platform_apis is set.
Colin Crosseb032962020-05-13 11:05:02 -0700387 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
388 // have stable APIs through the VNDK.
389 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
390 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross76583a42020-05-06 17:51:39 -0700391 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Cross01fd7cc2020-02-19 16:54:04 -0800392 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
393 }
Colin Crossa4f08812018-10-02 22:03:40 -0700394 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
395 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700396
Paul Duffin250e6192019-06-07 10:44:37 +0100397 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700398}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700399
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700400func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800401 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700402 if cert != "" {
403 ctx.AddDependency(ctx.Module(), certificateTag, cert)
404 }
405
406 for _, cert := range a.appProperties.Additional_certificates {
407 cert = android.SrcIsModule(cert)
408 if cert != "" {
409 ctx.AddDependency(ctx.Module(), certificateTag, cert)
410 } else {
411 ctx.PropertyErrorf("additional_certificates",
412 `must be names of android_app_certificate modules in the form ":module"`)
413 }
414 }
Colin Cross30e076a2015-04-13 13:58:27 -0700415}
416
Jeongik Cha538c0d02019-07-11 15:54:27 +0900417func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
418 a.generateAndroidBuildActions(ctx)
419}
420
Colin Cross46c9b8b2017-06-22 16:51:17 -0700421func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100422 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700423 a.generateAndroidBuildActions(ctx)
424}
425
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100426func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev2b4b7bb2020-04-28 14:57:42 +0100427 if a.Updatable() {
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100428 if !a.sdkVersion().stable() {
429 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
430 }
Artur Satayev11962102020-04-16 13:43:02 +0100431 if String(a.deviceProperties.Min_sdk_version) == "" {
432 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
433 }
Jooyung Hanaf7f91f2020-04-29 14:01:06 +0900434 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
435 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
436 } else {
437 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
438 }
Artur Satayeve5ac15a2020-04-08 19:09:30 +0100439 }
440
441 a.checkPlatformAPI(ctx)
442 a.checkSdkVersions(ctx)
443}
444
Jooyung Hanaf7f91f2020-04-29 14:01:06 +0900445// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
446// This check is enforced for "updatable" APKs (including APK-in-APEX).
447// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
448// because, sdk_version is overridden by min_sdk_version (if set as smaller)
449// and linkType is checked with dependencies so we can be sure that the whole dependency tree
450// will meet the requirements.
451func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
452 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
453 ctx.VisitDirectDeps(func(m android.Module) {
454 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
455 return
456 }
457 dep, _ := m.(*cc.Module)
Jooyung Han9d2c0f72020-05-20 17:12:13 +0900458 // The domain of cc.sdk_version is "current" and <number>
459 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
460 // properly regardless of sdk finalization.
461 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
462 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanaf7f91f2020-04-29 14:01:06 +0900463 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
464 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
465 return
466 }
467
468 })
469}
470
Sasha Smundak6ad77252019-05-01 13:16:22 -0700471// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800472// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700473func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900474 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800475 if err != nil {
476 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
477 }
478
Jiyong Park52cd06f2019-11-11 10:14:32 +0900479 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
480 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800481}
482
Colin Cross43f08db2018-11-12 10:13:39 -0800483// Returns whether this module should have the dex file stored uncompressed in the APK.
484func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800485 if Bool(a.appProperties.Use_embedded_dex) {
486 return true
487 }
488
Colin Cross53a87f52019-06-25 13:35:30 -0700489 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
490 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900491 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000492 return true
493 }
494
Colin Cross53a87f52019-06-25 13:35:30 -0700495 if ctx.Config().UnbundledBuild() {
496 return false
497 }
498
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700499 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700500}
501
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700502func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
503 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900504 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700505}
506
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900507func (a *AndroidApp) OverriddenManifestPackageName() string {
508 return a.overriddenManifestPackageName
509}
510
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800511func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000512 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
513
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700514 // Ask manifest_fixer to add or update the application element indicating this app has no code.
515 a.aapt.hasNoCode = !a.hasCode(ctx)
516
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800517 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800518
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800519 // 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 -0800520 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700521 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800522 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700523 }
524
Dan Willemsen72be5902018-10-24 20:24:57 -0700525 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
526 // Product AAPT config
527 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800528 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700529 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700530
Dan Willemsen72be5902018-10-24 20:24:57 -0700531 // Product AAPT preferred config
532 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800533 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700534 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700535 }
536
Jiyong Park7f67f482019-01-05 12:57:48 +0900537 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700538 if overridden || a.overridableAppProperties.Package_name != nil {
539 // The product override variable has a priority over the package_name property.
540 if !overridden {
541 manifestPackageName = *a.overridableAppProperties.Package_name
542 }
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800543 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900544 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900545 }
546
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800547 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
548
Colin Crosse560c4a2019-03-19 16:03:11 -0700549 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700550 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800551 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800552 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700553
Colin Cross46c9b8b2017-06-22 16:51:17 -0700554 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700555 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800556}
Colin Cross30e076a2015-04-13 13:58:27 -0700557
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800558func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700559 var staticLibProguardFlagFiles android.Paths
560 ctx.VisitDirectDeps(func(m android.Module) {
561 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
562 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
563 }
564 })
565
566 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
567
568 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
569 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800570}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800571
Colin Crossb32b7122020-07-06 14:15:24 -0700572func (a *AndroidApp) installPath(ctx android.ModuleContext) android.InstallPath {
Colin Cross43f08db2018-11-12 10:13:39 -0800573 var installDir string
574 if ctx.ModuleName() == "framework-res" {
575 // framework-res.apk is installed as system/framework/framework-res.apk
576 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900577 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800578 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800579 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800580 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800581 }
Colin Crossb32b7122020-07-06 14:15:24 -0700582
583 return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
584}
585
586func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
587 a.dexpreopter.installPath = a.installPath(ctx)
Liz Kammer7727edc2020-07-09 15:16:41 -0700588 if a.dexProperties.Uncompress_dex == nil {
David Srbecky98c71222020-05-20 22:20:28 +0100589 // If the value was not force-set by the user, use reasonable default based on the module.
Liz Kammer7727edc2020-07-09 15:16:41 -0700590 a.dexProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
David Srbecky98c71222020-05-20 22:20:28 +0100591 }
Liz Kammer7727edc2020-07-09 15:16:41 -0700592 a.dexpreopter.uncompressedDex = *a.dexProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700593 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
594 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
595 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
596 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
597 a.dexpreopter.manifestFile = a.mergedManifestFile
598
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800599 if ctx.ModuleName() != "framework-res" {
600 a.Module.compile(ctx, a.aaptSrcJar)
601 }
Colin Cross30e076a2015-04-13 13:58:27 -0700602
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800603 return a.maybeStrippedDexJarFile
604}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800605
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800606func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700607 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700608 if len(jniLibs) > 0 {
Colin Crossb32b7122020-07-06 14:15:24 -0700609 a.jniLibs = jniLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700610 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700611 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Colin Crossb32b7122020-07-06 14:15:24 -0700612 a.installPathForJNISymbols = a.installPath(ctx).ToMakePath()
Sasha Smundak6ad77252019-05-01 13:16:22 -0700613 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700614 for _, jni := range jniLibs {
615 if jni.coverageFile.Valid() {
Jaewoong Junge62e5942020-04-07 13:07:55 -0700616 // Only collect coverage for the first target arch if this is a multilib target.
617 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
618 // data file path collisions since the current coverage file path format doesn't contain
619 // arch-related strings. This is fine for now though; the code coverage team doesn't use
620 // multi-arch targets such as test_suite_* for coverage collections yet.
621 //
622 // Work with the team to come up with a new format that handles multilib modules properly
623 // and change this.
624 if len(ctx.Config().Targets[android.Android]) == 1 ||
625 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
626 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
627 }
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700628 }
629 }
Colin Crossb32b7122020-07-06 14:15:24 -0700630 a.embeddedJniLibs = true
Colin Crossa4f08812018-10-02 22:03:40 -0700631 }
632 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800633 return jniJarFile
634}
Colin Crossa4f08812018-10-02 22:03:40 -0700635
Colin Crossb32b7122020-07-06 14:15:24 -0700636func (a *AndroidApp) JNISymbolsInstalls(installPath string) android.RuleBuilderInstalls {
637 var jniSymbols android.RuleBuilderInstalls
638 for _, jniLib := range a.jniLibs {
639 if jniLib.unstrippedFile != nil {
640 jniSymbols = append(jniSymbols, android.RuleBuilderInstall{
641 From: jniLib.unstrippedFile,
642 To: filepath.Join(installPath, targetToJniDir(jniLib.target), jniLib.unstrippedFile.Base()),
643 })
644 }
645 }
646 return jniSymbols
647}
648
Jaewoong Jung0949f312019-09-11 10:25:18 -0700649func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700650 // Collect NOTICE files from all dependencies.
651 seenModules := make(map[android.Module]bool)
652 noticePathSet := make(map[android.Path]bool)
653
654 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
655 // Have we already seen this?
656 if _, ok := seenModules[child]; ok {
657 return false
658 }
659 seenModules[child] = true
660
661 // Skip host modules.
662 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
663 return false
664 }
665
666 path := child.(android.Module).NoticeFile()
667 if path.Valid() {
668 noticePathSet[path.Path()] = true
669 }
670 return true
671 })
672
673 // If the app has one, add it too.
674 if a.NoticeFile().Valid() {
675 noticePathSet[a.NoticeFile().Path()] = true
676 }
677
678 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700679 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700680 }
681 var noticePaths []android.Path
682 for path := range noticePathSet {
683 noticePaths = append(noticePaths, path)
684 }
685 sort.Slice(noticePaths, func(i, j int) bool {
686 return noticePaths[i].String() < noticePaths[j].String()
687 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700688
Jaewoong Jung0949f312019-09-11 10:25:18 -0700689 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700690}
691
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700692// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
693// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
694func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
695 if android.SrcIsModule(certPropValue) == "" {
696 var mainCert Certificate
697 if certPropValue != "" {
698 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
699 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800700 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
701 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700702 }
703 } else {
704 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800705 mainCert = Certificate{
706 Pem: pem,
707 Key: key,
708 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700709 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700710 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700711 }
712
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700713 if !m.Platform() {
714 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900715 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
716 if strings.HasPrefix(certPath, systemCertPath) {
717 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
Colin Cross95f7b342020-06-11 11:32:11 -0700718 allowed := ctx.Config().EnforceSystemCertificateAllowList()
Jeongik Chac9464142019-01-07 12:07:27 +0900719
Colin Cross95f7b342020-06-11 11:32:11 -0700720 if enforceSystemCert && !inList(m.Name(), allowed) {
Jeongik Chac9464142019-01-07 12:07:27 +0900721 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
722 }
723 }
724 }
725
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700726 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800727}
728
Jooyung Han65cd0f02020-03-23 20:21:11 +0900729func (a *AndroidApp) InstallApkName() string {
730 return a.installApkName
731}
732
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800733func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700734 var apkDeps android.Paths
735
Jeongik Cha538c0d02019-07-11 15:54:27 +0900736 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
737 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
738
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800739 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800740 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800741
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700742 if ctx.ModuleName() == "framework-res" {
743 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700744 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900745 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700746 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
747 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800748 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700749 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700750 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700751 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700752 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700753
Jaewoong Jung0949f312019-09-11 10:25:18 -0700754 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700755 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
756 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
757 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700758
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800759 // Process all building blocks, from AAPT to certificates.
760 a.aaptBuildActions(ctx)
761
Colin Cross50ddcc42019-05-16 12:28:22 -0700762 if a.usesLibrary.enforceUsesLibraries() {
763 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
764 apkDeps = append(apkDeps, manifestCheckFile)
765 }
766
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800767 a.proguardBuildActions(ctx)
768
Colin Cross1e28e3c2020-06-02 20:09:13 -0700769 a.linter.mergedManifest = a.aapt.mergedManifestFile
770 a.linter.manifest = a.aapt.manifestPath
771 a.linter.resources = a.aapt.resourceFiles
Colin Cross1d11c872020-07-03 11:56:24 -0700772 a.linter.buildModuleReportZip = ctx.Config().UnbundledBuild()
Colin Cross1e28e3c2020-06-02 20:09:13 -0700773
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800774 dexJarFile := a.dexBuildActions(ctx)
775
Colin Crosseb032962020-05-13 11:05:02 -0700776 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800777 jniJarFile := a.jniBuildActions(jniLibs, ctx)
778
779 if ctx.Failed() {
780 return
781 }
782
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700783 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
784 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800785
786 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800787 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Songchun Fan688de9a2020-03-24 20:32:24 -0700788 v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature)
789 var v4SignatureFile android.WritablePath = nil
790 if v4SigningRequested {
791 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig")
792 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700793 var lineageFile android.Path
794 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
795 lineageFile = android.PathForModuleSrc(ctx, lineage)
796 }
797 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800798 a.outputFile = packageFile
Songchun Fan688de9a2020-03-24 20:32:24 -0700799 if v4SigningRequested {
800 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
801 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800802
Colin Crosse560c4a2019-03-19 16:03:11 -0700803 for _, split := range a.aapt.splits {
804 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800805 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Songchun Fan688de9a2020-03-24 20:32:24 -0700806 if v4SigningRequested {
807 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig")
808 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700809 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700810 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
Songchun Fan688de9a2020-03-24 20:32:24 -0700811 if v4SigningRequested {
812 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
813 }
Colin Crosse560c4a2019-03-19 16:03:11 -0700814 }
815
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800816 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700817 bundleFile := android.PathForModuleOut(ctx, "base.zip")
818 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
819 a.bundleFile = bundleFile
820
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800821 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900822 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
823 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
824 for _, extra := range a.extraOutputFiles {
825 ctx.InstallFile(a.installDir, extra.Base(), extra)
826 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800827 }
Artur Satayevd9b503a2020-04-27 19:05:28 +0100828
829 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700830}
831
Colin Crosseb032962020-05-13 11:05:02 -0700832type appDepsInterface interface {
833 sdkVersion() sdkSpec
834 minSdkVersion() sdkSpec
835 RequiresStableAPIs(ctx android.BaseModuleContext) bool
836}
837
838func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
839 shouldCollectRecursiveNativeDeps bool,
Colin Cross1c93c292020-02-15 10:38:00 -0800840 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crosseb032962020-05-13 11:05:02 -0700841
Colin Crossa4f08812018-10-02 22:03:40 -0700842 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900843 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800844 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700845
Colin Crosseb032962020-05-13 11:05:02 -0700846 if checkNativeSdkVersion {
847 checkNativeSdkVersion = app.sdkVersion().specified() &&
848 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
849 }
850
Peter Collingbournead84f972019-12-17 16:46:18 -0800851 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700852 otherName := ctx.OtherModuleName(module)
853 tag := ctx.OtherModuleDependencyTag(module)
854
Peter Collingbournead84f972019-12-17 16:46:18 -0800855 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700856 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800857 if dep.IsNdk() || dep.IsStubs() {
858 return false
859 }
860
Colin Crossa4f08812018-10-02 22:03:40 -0700861 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800862 path := lib.Path()
863 if seenModulePaths[path.String()] {
864 return false
865 }
866 seenModulePaths[path.String()] = true
867
Colin Crosseb032962020-05-13 11:05:02 -0700868 if checkNativeSdkVersion && dep.SdkVersion() == "" {
869 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
870 otherName)
Colin Cross1c93c292020-02-15 10:38:00 -0800871 }
872
Colin Crossa4f08812018-10-02 22:03:40 -0700873 if lib.Valid() {
874 jniLibs = append(jniLibs, jniLib{
Colin Crossb32b7122020-07-06 14:15:24 -0700875 name: ctx.OtherModuleName(module),
876 path: path,
877 target: module.Target(),
878 coverageFile: dep.CoverageOutputFile(),
879 unstrippedFile: dep.UnstrippedOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700880 })
881 } else {
882 ctx.ModuleErrorf("dependency %q missing output file", otherName)
883 }
884 } else {
885 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700886 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800887
888 return shouldCollectRecursiveNativeDeps
889 }
890
891 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700892 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900893 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700894 } else {
895 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
896 }
Colin Crossa4f08812018-10-02 22:03:40 -0700897 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800898
899 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700900 })
901
Colin Crossbd01e2a2018-10-04 15:21:03 -0700902 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700903}
904
Artur Satayevd9b503a2020-04-27 19:05:28 +0100905func (a *AndroidApp) walkPayloadDeps(ctx android.ModuleContext,
906 do func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool)) {
907
908 ctx.WalkDeps(func(child, parent android.Module) bool {
909 isExternal := !a.DepIsInSameApex(ctx, child)
910 if am, ok := child.(android.ApexModule); ok {
911 do(ctx, parent, am, isExternal)
912 }
913 return !isExternal
914 })
915}
916
917func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
918 if ctx.Host() {
919 return
920 }
921
922 depsInfo := android.DepNameToDepInfoMap{}
923 a.walkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) {
924 depName := to.Name()
925 if info, exist := depsInfo[depName]; exist {
926 info.From = append(info.From, from.Name())
927 info.IsExternal = info.IsExternal && externalDep
928 depsInfo[depName] = info
929 } else {
930 toMinSdkVersion := "(no version)"
931 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
932 if v := m.MinSdkVersion(); v != "" {
933 toMinSdkVersion = v
934 }
935 }
936 depsInfo[depName] = android.ApexModuleDepInfo{
937 To: depName,
938 From: []string{from.Name()},
939 IsExternal: externalDep,
940 MinSdkVersion: toMinSdkVersion,
941 }
942 }
943 })
944
945 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
946}
947
Artur Satayev2b4b7bb2020-04-28 14:57:42 +0100948func (a *AndroidApp) Updatable() bool {
949 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
950}
951
Colin Cross0ea8ba82019-06-06 14:33:29 -0700952func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800953 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
954 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000955 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800956 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800957 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800958}
959
Jiyong Park0f80c182020-01-31 02:49:53 +0900960func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
961 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
962 return true
963 }
964 return a.Library.DepIsInSameApex(ctx, dep)
965}
966
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900967// For OutputFileProducer interface
968func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
969 switch tag {
970 case ".aapt.srcjar":
971 return []android.Path{a.aaptSrcJar}, nil
972 }
973 return a.Library.OutputFiles(tag)
974}
975
Jiyong Parkf7487312019-10-17 12:54:30 +0900976func (a *AndroidApp) Privileged() bool {
977 return Bool(a.appProperties.Privileged)
978}
979
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700980func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
Colin Cross72cabc62020-06-16 17:51:46 -0700981 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
Jaewoong Jung37ca4a12020-03-26 14:01:48 -0700982}
983
984func (a *AndroidApp) PreventInstall() {
985 a.appProperties.PreventInstall = true
986}
987
988func (a *AndroidApp) HideFromMake() {
989 a.appProperties.HideFromMake = true
990}
991
992func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
993 a.appProperties.IsCoverageVariant = coverage
994}
995
996var _ cc.Coverage = (*AndroidApp)(nil)
997
Colin Cross1b16b0e2019-02-12 14:41:32 -0800998// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -0700999func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -07001000 module := &AndroidApp{}
1001
Liz Kammer7727edc2020-07-09 15:16:41 -07001002 module.Module.dexProperties.Optimize.EnabledByDefault = true
1003 module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true)
Colin Cross66dbc0b2017-12-28 12:23:20 -08001004
Colin Crossae5caf52018-05-22 11:11:52 -07001005 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001006 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -07001007
Colin Cross1c14b4e2020-06-15 16:09:53 -07001008 module.addHostAndDeviceProperties()
Colin Cross36242852017-06-23 15:06:31 -07001009 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -07001010 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001011 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001012 &module.overridableAppProperties,
1013 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -07001014
Colin Crossa9d8bee2018-10-02 13:59:46 -07001015 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
1016 return class == android.Device && ctx.Config().DevicePrefer32BitApps()
1017 })
1018
Colin Crossa4f08812018-10-02 22:03:40 -07001019 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1020 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001021 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +09001022 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -07001023
Colin Cross36242852017-06-23 15:06:31 -07001024 return module
Colin Cross30e076a2015-04-13 13:58:27 -07001025}
Colin Crossae5caf52018-05-22 11:11:52 -07001026
1027type appTestProperties struct {
1028 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001029
1030 // if specified, the instrumentation target package name in the manifest is overwritten by it.
1031 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -07001032}
1033
1034type AndroidTest struct {
1035 AndroidApp
1036
1037 appTestProperties appTestProperties
1038
1039 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07001040
1041 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -07001042 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001043}
1044
Jaewoong Jung0949f312019-09-11 10:25:18 -07001045func (a *AndroidTest) InstallInTestcases() bool {
1046 return true
1047}
1048
Colin Crossae5caf52018-05-22 11:11:52 -07001049func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncyleeba606252020-04-30 14:57:06 +08001050 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001051 if a.appTestProperties.Instrumentation_target_package != nil {
1052 a.additionalAaptFlags = append(a.additionalAaptFlags,
1053 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1054 } else if a.appTestProperties.Instrumentation_for != nil {
1055 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001056 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1057 if overridden {
1058 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1059 }
1060 }
Colin Crossae5caf52018-05-22 11:11:52 -07001061 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001062
easoncyleeba606252020-04-30 14:57:06 +08001063 for _, module := range a.testProperties.Test_mainline_modules {
1064 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1065 }
1066
Jaewoong Jung39982342020-01-14 10:27:18 -08001067 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncyleeba606252020-04-30 14:57:06 +08001068 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001069 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001070 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001071}
1072
Jaewoong Jung39982342020-01-14 10:27:18 -08001073func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1074 if testConfig == nil {
1075 return nil
1076 }
1077
1078 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1079 rule := android.NewRuleBuilder()
1080 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1081 fixNeeded := false
1082
1083 if ctx.ModuleName() != a.installApkName {
1084 fixNeeded = true
1085 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1086 }
1087
1088 if a.overridableAppProperties.Package_name != nil {
1089 fixNeeded = true
1090 command.FlagWithInput("--manifest ", a.manifestPath).
1091 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1092 }
1093
1094 if fixNeeded {
1095 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1096 return fixedConfig
1097 }
1098 return testConfig
1099}
1100
Colin Cross303e21f2018-08-07 16:49:25 -07001101func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001102 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001103}
1104
1105func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1106 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001107 if a.appTestProperties.Instrumentation_for != nil {
1108 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1109 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1110 // use instrumentationForTag instead of libTag.
1111 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1112 }
Colin Crossae5caf52018-05-22 11:11:52 -07001113}
1114
Colin Cross1b16b0e2019-02-12 14:41:32 -08001115// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1116// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001117func AndroidTestFactory() android.Module {
1118 module := &AndroidTest{}
1119
Liz Kammer7727edc2020-07-09 15:16:41 -07001120 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001121
1122 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001123 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001124 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001125 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001126 module.Module.dexpreopter.isTest = true
Colin Cross1e28e3c2020-06-02 20:09:13 -07001127 module.Module.linter.test = true
Colin Crossae5caf52018-05-22 11:11:52 -07001128
Colin Cross1c14b4e2020-06-15 16:09:53 -07001129 module.addHostAndDeviceProperties()
Colin Crossae5caf52018-05-22 11:11:52 -07001130 module.AddProperties(
Colin Crossae5caf52018-05-22 11:11:52 -07001131 &module.aaptProperties,
1132 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001133 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001134 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001135 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001136 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001137
Colin Crossa4f08812018-10-02 22:03:40 -07001138 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1139 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001140 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001141 return module
1142}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001143
Colin Cross252fc6f2018-10-04 15:22:03 -07001144type appTestHelperAppProperties struct {
1145 // list of compatibility suites (for example "cts", "vts") that the module should be
1146 // installed into.
1147 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001148
1149 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1150 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1151 // explicitly.
1152 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001153}
1154
1155type AndroidTestHelperApp struct {
1156 AndroidApp
1157
1158 appTestHelperAppProperties appTestHelperAppProperties
1159}
1160
Jaewoong Jung326a9412019-11-21 10:41:00 -08001161func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1162 return true
1163}
1164
Colin Cross1b16b0e2019-02-12 14:41:32 -08001165// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1166// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1167// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001168func AndroidTestHelperAppFactory() android.Module {
1169 module := &AndroidTestHelperApp{}
1170
Liz Kammer7727edc2020-07-09 15:16:41 -07001171 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001172
1173 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001174 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001175 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001176 module.Module.dexpreopter.isTest = true
Colin Cross1e28e3c2020-06-02 20:09:13 -07001177 module.Module.linter.test = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001178
Colin Cross1c14b4e2020-06-15 16:09:53 -07001179 module.addHostAndDeviceProperties()
Colin Cross252fc6f2018-10-04 15:22:03 -07001180 module.AddProperties(
Colin Cross252fc6f2018-10-04 15:22:03 -07001181 &module.aaptProperties,
1182 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001183 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001184 &module.overridableAppProperties,
1185 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001186
1187 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1188 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001189 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001190 return module
1191}
1192
Colin Crossbd01e2a2018-10-04 15:21:03 -07001193type AndroidAppCertificate struct {
1194 android.ModuleBase
1195 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001196 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001197}
1198
1199type AndroidAppCertificateProperties struct {
1200 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1201 Certificate *string
1202}
1203
Colin Cross1b16b0e2019-02-12 14:41:32 -08001204// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1205// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001206func AndroidAppCertificateFactory() android.Module {
1207 module := &AndroidAppCertificate{}
1208 module.AddProperties(&module.properties)
1209 android.InitAndroidModule(module)
1210 return module
1211}
1212
Colin Crossbd01e2a2018-10-04 15:21:03 -07001213func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1214 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001215 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001216 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1217 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001218 }
1219}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001220
1221type OverrideAndroidApp struct {
1222 android.ModuleBase
1223 android.OverrideModuleBase
1224}
1225
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001226func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -08001227 // All the overrides happen in the base module.
1228 // TODO(jungjw): Check the base module type.
1229}
1230
1231// override_android_app is used to create an android_app module based on another android_app by overriding
1232// some of its properties.
1233func OverrideAndroidAppModuleFactory() android.Module {
1234 m := &OverrideAndroidApp{}
1235 m.AddProperties(&overridableAppProperties{})
1236
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001237 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001238 android.InitOverrideModule(m)
1239 return m
1240}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001241
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001242type OverrideAndroidTest struct {
1243 android.ModuleBase
1244 android.OverrideModuleBase
1245}
1246
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001247func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001248 // All the overrides happen in the base module.
1249 // TODO(jungjw): Check the base module type.
1250}
1251
1252// override_android_test is used to create an android_app module based on another android_test by overriding
1253// some of its properties.
1254func OverrideAndroidTestModuleFactory() android.Module {
1255 m := &OverrideAndroidTest{}
1256 m.AddProperties(&overridableAppProperties{})
1257 m.AddProperties(&appTestProperties{})
1258
1259 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1260 android.InitOverrideModule(m)
1261 return m
1262}
1263
Roshan Piusb8307962020-04-27 09:42:27 -07001264type OverrideRuntimeResourceOverlay struct {
1265 android.ModuleBase
1266 android.OverrideModuleBase
1267}
1268
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001269func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) {
Roshan Piusb8307962020-04-27 09:42:27 -07001270 // All the overrides happen in the base module.
1271 // TODO(jungjw): Check the base module type.
1272}
1273
1274// override_runtime_resource_overlay is used to create a module based on another
1275// runtime_resource_overlay module by overriding some of its properties.
1276func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1277 m := &OverrideRuntimeResourceOverlay{}
1278 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1279
1280 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1281 android.InitOverrideModule(m)
1282 return m
1283}
1284
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001285type AndroidAppImport struct {
1286 android.ModuleBase
1287 android.DefaultableModuleBase
1288 prebuilt android.Prebuilt
1289
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001290 properties AndroidAppImportProperties
1291 dpiVariants interface{}
1292 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001293
1294 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001295 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001296
1297 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001298
1299 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001300
Liz Kammer7e20dda2020-05-20 14:36:30 -07001301 preprocessed bool
1302
Colin Cross70dda7e2019-10-01 22:05:35 -07001303 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001304}
1305
1306type AndroidAppImportProperties struct {
1307 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001308 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001309
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001310 // The name of a certificate in the default certificate directory or an android_app_certificate
1311 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001312 Certificate *string
1313
1314 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1315 // be set for presigned modules.
1316 Presigned *bool
1317
Liz Kammer2bc57f62020-05-13 15:49:21 -07001318 // Name of the signing certificate lineage file.
1319 Lineage *string
1320
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001321 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1322 // need to either specify a specific certificate or be presigned.
1323 Default_dev_cert *bool
1324
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001325 // Specifies that this app should be installed to the priv-app directory,
1326 // where the system will grant it additional privileges not available to
1327 // normal apps.
1328 Privileged *bool
1329
1330 // Names of modules to be overridden. Listed modules can only be other binaries
1331 // (in Make or Soong).
1332 // This does not completely prevent installation of the overridden binaries, but if both
1333 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1334 // from PRODUCT_PACKAGES.
1335 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001336
1337 // Optional name for the installed app. If unspecified, it is derived from the module name.
1338 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001339}
1340
Martin Stjernholm6d415272020-01-31 17:10:36 +00001341func (a *AndroidAppImport) IsInstallable() bool {
1342 return true
1343}
1344
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001345// Updates properties with variant-specific values.
1346func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001347 config := ctx.Config()
1348
1349 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1350 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1351 // overwrites everything else.
1352 // TODO(jungjw): Can we optimize this by making it priority order?
1353 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001354 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001355 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001356 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001357 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001358 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001359
1360 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1361 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1362 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001363}
1364
Colin Cross1184b642019-12-30 18:43:07 -08001365func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001366 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001367 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1368 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001369 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001370 }
1371
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001372 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1373 if err != nil {
1374 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1375 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1376 } else {
1377 panic(err)
1378 }
1379 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001380}
1381
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001382func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1383 cert := android.SrcIsModule(String(a.properties.Certificate))
1384 if cert != "" {
1385 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1386 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001387
Paul Duffin250e6192019-06-07 10:44:37 +01001388 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001389}
1390
1391func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1392 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001393 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1394 // with them may invalidate pre-existing signature data.
Liz Kammer7e20dda2020-05-20 14:36:30 -07001395 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001396 ctx.Build(pctx, android.BuildParams{
1397 Rule: android.Cp,
1398 Output: outputPath,
1399 Input: inputPath,
1400 })
1401 return
1402 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001403 rule := android.NewRuleBuilder()
1404 rule.Command().
1405 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001406 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001407 FlagWithInput("-i ", inputPath).
1408 FlagWithOutput("-o ", outputPath).
1409 FlagWithArg("-0 ", "'lib/**/*.so'").
1410 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1411 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1412}
1413
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001414// Returns whether this module should have the dex file stored uncompressed in the APK.
1415func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer7e20dda2020-05-20 14:36:30 -07001416 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001417 return false
1418 }
1419
1420 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001421 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001422 return true
1423 }
1424
1425 return shouldUncompressDex(ctx, &a.dexpreopter)
1426}
1427
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001428func (a *AndroidAppImport) uncompressDex(
1429 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1430 rule := android.NewRuleBuilder()
1431 rule.Command().
1432 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001433 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001434 FlagWithInput("-i ", inputPath).
1435 FlagWithOutput("-o ", outputPath).
1436 FlagWithArg("-0 ", "'classes*.dex'").
1437 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1438 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1439}
1440
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001441func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001442 a.generateAndroidBuildActions(ctx)
1443}
1444
Jooyung Han65cd0f02020-03-23 20:21:11 +09001445func (a *AndroidAppImport) InstallApkName() string {
1446 return a.BaseModuleName()
1447}
1448
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001449func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001450 numCertPropsSet := 0
1451 if String(a.properties.Certificate) != "" {
1452 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001453 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001454 if Bool(a.properties.Presigned) {
1455 numCertPropsSet++
1456 }
1457 if Bool(a.properties.Default_dev_cert) {
1458 numCertPropsSet++
1459 }
1460 if numCertPropsSet != 1 {
1461 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001462 }
1463
Colin Crosseb032962020-05-13 11:05:02 -07001464 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001465
1466 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001467 // TODO: LOCAL_PACKAGE_SPLITS
1468
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001469 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001470
1471 if a.usesLibrary.enforceUsesLibraries() {
1472 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1473 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001474
1475 // TODO: Install or embed JNI libraries
1476
1477 // Uncompress JNI libraries in the apk
1478 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1479 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1480
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001481 var installDir android.InstallPath
1482 if Bool(a.properties.Privileged) {
1483 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001484 } else if ctx.InstallInTestcases() {
1485 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001486 } else {
1487 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1488 }
1489
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001490 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001491 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001492 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001493
1494 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1495 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1496 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1497 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1498
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001499 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001500 if a.dexpreopter.uncompressedDex {
1501 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1502 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1503 dexOutput = dexUncompressed
1504 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001505
Jooyung Han65cd0f02020-03-23 20:21:11 +09001506 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1507
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001508 // TODO: Handle EXTERNAL
Liz Kammer7e20dda2020-05-20 14:36:30 -07001509
1510 // Sign or align the package if package has not been preprocessed
1511 if a.preprocessed {
1512 a.outputFile = srcApk
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001513 a.certificate = PresignedCertificate
Liz Kammer7e20dda2020-05-20 14:36:30 -07001514 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001515 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1516 // Which makes processMainCert's behavior for the empty cert string WAI.
1517 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001518 if len(certificates) != 1 {
1519 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1520 }
Colin Cross503c1d02020-01-28 14:00:53 -08001521 a.certificate = certificates[0]
Jooyung Han65cd0f02020-03-23 20:21:11 +09001522 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer2bc57f62020-05-13 15:49:21 -07001523 var lineageFile android.Path
1524 if lineage := String(a.properties.Lineage); lineage != "" {
1525 lineageFile = android.PathForModuleSrc(ctx, lineage)
1526 }
1527 SignAppPackage(ctx, signed, dexOutput, certificates, nil, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001528 a.outputFile = signed
1529 } else {
Jooyung Han65cd0f02020-03-23 20:21:11 +09001530 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001531 TransformZipAlign(ctx, alignedApk, dexOutput)
1532 a.outputFile = alignedApk
Sasha Smundakc4f0ff12020-05-27 16:36:07 -07001533 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001534 }
1535
1536 // TODO: Optionally compress the output apk.
1537
Jooyung Han65cd0f02020-03-23 20:21:11 +09001538 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001539
1540 // TODO: androidmk converter jni libs
1541}
1542
1543func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1544 return &a.prebuilt
1545}
1546
1547func (a *AndroidAppImport) Name() string {
1548 return a.prebuilt.Name(a.ModuleBase.Name())
1549}
1550
Dario Frenicde2a032019-10-27 00:29:22 +01001551func (a *AndroidAppImport) OutputFile() android.Path {
1552 return a.outputFile
1553}
1554
Jiyong Park618922e2020-01-08 13:35:43 +09001555func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1556 return nil
1557}
1558
Colin Cross503c1d02020-01-28 14:00:53 -08001559func (a *AndroidAppImport) Certificate() Certificate {
1560 return a.certificate
1561}
1562
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001563var dpiVariantGroupType reflect.Type
1564var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001565
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001566func initAndroidAppImportVariantGroupTypes() {
1567 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1568
1569 archNames := make([]string, len(android.ArchTypeList()))
1570 for i, archType := range android.ArchTypeList() {
1571 archNames[i] = archType.Name
1572 }
1573 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1574}
1575
1576// Populates all variant struct properties at creation time.
1577func (a *AndroidAppImport) populateAllVariantStructs() {
1578 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1579 a.AddProperties(a.dpiVariants)
1580
1581 a.archVariants = reflect.New(archVariantGroupType).Interface()
1582 a.AddProperties(a.archVariants)
1583}
1584
Jiyong Parkf7487312019-10-17 12:54:30 +09001585func (a *AndroidAppImport) Privileged() bool {
1586 return Bool(a.properties.Privileged)
1587}
1588
Colin Crosseb032962020-05-13 11:05:02 -07001589func (a *AndroidAppImport) sdkVersion() sdkSpec {
1590 return sdkSpecFrom("")
1591}
1592
1593func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1594 return sdkSpecFrom("")
1595}
1596
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001597func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1598 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1599
1600 variantFields := make([]reflect.StructField, len(variants))
1601 for i, variant := range variants {
1602 variantFields[i] = reflect.StructField{
1603 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001604 Type: props,
1605 }
1606 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001607
1608 variantGroupStruct := reflect.StructOf(variantFields)
1609 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001610 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001611 Name: variantGroupName,
1612 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001613 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001614 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001615}
1616
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001617// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001618// DPI-specific apk source files can be specified using dpi_variants. Example:
1619//
1620// android_app_import {
1621// name: "example_import",
1622// apk: "prebuilts/example.apk",
1623// dpi_variants: {
1624// mdpi: {
1625// apk: "prebuilts/example_mdpi.apk",
1626// },
1627// xhdpi: {
1628// apk: "prebuilts/example_xhdpi.apk",
1629// },
1630// },
1631// certificate: "PRESIGNED",
1632// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001633func AndroidAppImportFactory() android.Module {
1634 module := &AndroidAppImport{}
1635 module.AddProperties(&module.properties)
1636 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001637 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001638 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001639 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001640 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001641 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001642
Jaewoong Jung0feed892020-05-26 20:10:08 -07001643 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1644 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001645 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001646
1647 return module
1648}
Colin Cross50ddcc42019-05-16 12:28:22 -07001649
Liz Kammer7e20dda2020-05-20 14:36:30 -07001650type androidTestImportProperties struct {
1651 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1652 Preprocessed *bool
1653}
1654
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001655type AndroidTestImport struct {
1656 AndroidAppImport
1657
1658 testProperties testProperties
1659
Liz Kammer7e20dda2020-05-20 14:36:30 -07001660 testImportProperties androidTestImportProperties
1661
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001662 data android.Paths
1663}
1664
1665func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer7e20dda2020-05-20 14:36:30 -07001666 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1667
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001668 a.generateAndroidBuildActions(ctx)
1669
1670 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1671}
1672
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001673func (a *AndroidTestImport) InstallInTestcases() bool {
1674 return true
1675}
1676
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001677// android_test_import imports a prebuilt test apk with additional processing specified in the
1678// module. DPI or arch variant configurations can be made as with android_app_import.
1679func AndroidTestImportFactory() android.Module {
1680 module := &AndroidTestImport{}
1681 module.AddProperties(&module.properties)
1682 module.AddProperties(&module.dexpreoptProperties)
1683 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1684 module.AddProperties(&module.testProperties)
Liz Kammer7e20dda2020-05-20 14:36:30 -07001685 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001686 module.populateAllVariantStructs()
1687 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1688 module.processVariants(ctx)
1689 })
1690
Colin Crossf30c4532020-05-06 22:29:10 -07001691 module.dexpreopter.isTest = true
1692
Jaewoong Junga689ffe2020-05-01 15:50:08 -07001693 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1694 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001695 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1696
1697 return module
1698}
1699
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001700type RuntimeResourceOverlay struct {
1701 android.ModuleBase
1702 android.DefaultableModuleBase
Roshan Piusb8307962020-04-27 09:42:27 -07001703 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001704 aapt
1705
Roshan Piusb8307962020-04-27 09:42:27 -07001706 properties RuntimeResourceOverlayProperties
1707 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001708
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001709 certificate Certificate
1710
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001711 outputFile android.Path
1712 installDir android.InstallPath
1713}
1714
1715type RuntimeResourceOverlayProperties struct {
1716 // the name of a certificate in the default certificate directory or an android_app_certificate
1717 // module name in the form ":module".
1718 Certificate *string
1719
Liz Kammer7fe241f2020-05-19 16:15:25 -07001720 // Name of the signing certificate lineage file.
1721 Lineage *string
1722
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001723 // optional theme name. If specified, the overlay package will be applied
1724 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1725 Theme *string
1726
1727 // if not blank, set to the version of the sdk to compile against.
1728 // Defaults to compiling against the current platform.
1729 Sdk_version *string
1730
1731 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1732 // Defaults to sdk_version if not set.
1733 Min_sdk_version *string
Jaewoong Jungca095d72020-04-09 16:15:30 -07001734
1735 // list of android_library modules whose resources are extracted and linked against statically
1736 Static_libs []string
1737
1738 // list of android_app modules whose resources are extracted and linked against
1739 Resource_libs []string
Jaewoong Jungbfc6ac02020-04-24 15:22:40 -07001740
1741 // Names of modules to be overridden. Listed modules can only be other overlays
1742 // (in Make or Soong).
1743 // This does not completely prevent installation of the overridden overlays, but if both
1744 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1745 // from PRODUCT_PACKAGES.
1746 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001747}
1748
1749func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1750 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1751 if sdkDep.hasFrameworkLibs() {
1752 r.aapt.deps(ctx, sdkDep)
1753 }
1754
1755 cert := android.SrcIsModule(String(r.properties.Certificate))
1756 if cert != "" {
1757 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1758 }
Jaewoong Jungca095d72020-04-09 16:15:30 -07001759
1760 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1761 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001762}
1763
1764func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1765 // Compile and link resources
1766 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001767 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Piusb8307962020-04-27 09:42:27 -07001768 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1769 // Allow the override of "package name" and "overlay target package name"
1770 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1771 if overridden || r.overridableProperties.Package_name != nil {
1772 // The product override variable has a priority over the package_name property.
1773 if !overridden {
1774 manifestPackageName = *r.overridableProperties.Package_name
1775 }
1776 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
1777 }
1778 if r.overridableProperties.Target_package_name != nil {
1779 aaptLinkFlags = append(aaptLinkFlags,
1780 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1781 }
1782 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001783
1784 // Sign the built package
Colin Crosseb032962020-05-13 11:05:02 -07001785 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001786 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1787 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer7fe241f2020-05-19 16:15:25 -07001788 var lineageFile android.Path
1789 if lineage := String(r.properties.Lineage); lineage != "" {
1790 lineageFile = android.PathForModuleSrc(ctx, lineage)
1791 }
1792 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001793 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001794
1795 r.outputFile = signed
1796 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1797 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1798}
1799
Jiyong Park6a927c42020-01-21 02:03:43 +09001800func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1801 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001802}
1803
1804func (r *RuntimeResourceOverlay) systemModules() string {
1805 return ""
1806}
1807
Jiyong Park6a927c42020-01-21 02:03:43 +09001808func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001809 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001810 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001811 }
1812 return r.sdkVersion()
1813}
1814
Jiyong Park6a927c42020-01-21 02:03:43 +09001815func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001816 return r.sdkVersion()
1817}
1818
1819// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1820// system resources at run time.
1821func RuntimeResourceOverlayFactory() android.Module {
1822 module := &RuntimeResourceOverlay{}
1823 module.AddProperties(
1824 &module.properties,
Roshan Piusb8307962020-04-27 09:42:27 -07001825 &module.aaptProperties,
1826 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001827
Roshan Piusb8307962020-04-27 09:42:27 -07001828 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1829 android.InitDefaultableModule(module)
1830 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001831 return module
1832}
1833
Colin Cross50ddcc42019-05-16 12:28:22 -07001834type UsesLibraryProperties struct {
1835 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1836 Uses_libs []string
1837
1838 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1839 // required=false.
1840 Optional_uses_libs []string
1841
1842 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1843 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1844 Enforce_uses_libs *bool
1845}
1846
1847// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1848// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1849// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1850// with knowledge of their shared libraries.
1851type usesLibrary struct {
1852 usesLibraryProperties UsesLibraryProperties
1853}
1854
Paul Duffin250e6192019-06-07 10:44:37 +01001855func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001856 if !ctx.Config().UnbundledBuild() {
1857 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1858 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001859 // Only add these extra dependencies if the module depends on framework libs. This avoids
1860 // creating a cyclic dependency:
1861 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1862 if hasFrameworkLibs {
Colin Cross3245b2c2019-06-07 13:18:09 -07001863 // dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
1864 // to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
1865 // library to dexpreopt.
1866 ctx.AddVariationDependencies(nil, usesLibTag,
1867 "org.apache.http.legacy",
1868 "android.hidl.base-V1.0-java",
1869 "android.hidl.manager-V1.0-java")
1870 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001871 }
1872}
1873
1874// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1875// build.
1876func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1877 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1878 return optionalUsesLibs
1879}
1880
1881// usesLibraryPaths returns a map of module names of shared library dependencies to the paths to their dex jars.
1882func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) map[string]android.Path {
1883 usesLibPaths := make(map[string]android.Path)
1884
1885 if !ctx.Config().UnbundledBuild() {
1886 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
1887 if lib, ok := m.(Dependency); ok {
1888 if dexJar := lib.DexJar(); dexJar != nil {
1889 usesLibPaths[ctx.OtherModuleName(m)] = dexJar
1890 } else {
1891 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must produce a dex jar, does it have installable: true?",
1892 ctx.OtherModuleName(m))
1893 }
1894 } else if ctx.Config().AllowMissingDependencies() {
1895 ctx.AddMissingDependencies([]string{ctx.OtherModuleName(m)})
1896 } else {
1897 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library",
1898 ctx.OtherModuleName(m))
1899 }
1900 })
1901 }
1902
1903 return usesLibPaths
1904}
1905
1906// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1907// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1908// unconditionally in the future.
1909func (u *usesLibrary) enforceUsesLibraries() bool {
1910 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1911 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1912 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1913}
1914
1915// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1916// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1917func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1918 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1919
1920 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001921 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001922 Flag("--enforce-uses-libraries").
1923 Input(manifest).
1924 FlagWithOutput("-o ", outputFile)
1925
1926 for _, lib := range u.usesLibraryProperties.Uses_libs {
1927 cmd.FlagWithArg("--uses-library ", lib)
1928 }
1929
1930 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1931 cmd.FlagWithArg("--optional-uses-library ", lib)
1932 }
1933
1934 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1935
1936 return outputFile
1937}
1938
1939// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1940// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1941func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1942 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1943
1944 rule := android.NewRuleBuilder()
1945 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1946 rule.Command().
1947 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1948 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1949 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1950 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1951 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
1952
1953 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1954
1955 return outputFile
1956}