blob: 3969b82d052c640117322a878a44a3ae5976bbab [file] [log] [blame]
Colin Cross30e076a2015-04-13 13:58:27 -07001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package java
16
17// This file contains the module types for compiling Android apps.
18
19import (
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070020 "path/filepath"
21 "reflect"
Jaewoong Jung5b425e22019-06-17 17:40:56 -070022 "sort"
Sasha Smundaka7856c02020-04-23 09:49:59 -070023 "strconv"
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070024 "strings"
Colin Cross30e076a2015-04-13 13:58:27 -070025
Colin Cross50ddcc42019-05-16 12:28:22 -070026 "github.com/google/blueprint"
27 "github.com/google/blueprint/proptools"
28
Colin Cross635c3b02016-05-18 15:37:25 -070029 "android/soong/android"
Colin Crossa4f08812018-10-02 22:03:40 -070030 "android/soong/cc"
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +010031 "android/soong/dexpreopt"
Colin Cross303e21f2018-08-07 16:49:25 -070032 "android/soong/tradefed"
Colin Cross30e076a2015-04-13 13:58:27 -070033)
34
Jaewoong Jung3e18b192019-06-11 12:25:34 -070035var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"}
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070036
Colin Cross3bc7ffa2017-11-22 16:19:37 -080037func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000038 RegisterAppBuildComponents(android.InitRegistrationContext)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -070039
40 initAndroidAppImportVariantGroupTypes()
Colin Cross3bc7ffa2017-11-22 16:19:37 -080041}
42
Paul Duffinf9b1da02019-12-18 19:51:55 +000043func RegisterAppBuildComponents(ctx android.RegistrationContext) {
44 ctx.RegisterModuleType("android_app", AndroidAppFactory)
45 ctx.RegisterModuleType("android_test", AndroidTestFactory)
46 ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
47 ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
48 ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
49 ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory)
Roshan Piusb8307962020-04-27 09:42:27 -070050 ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000051 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
52 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080053 ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory)
Sasha Smundaka7856c02020-04-23 09:49:59 -070054 ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory)
55}
56
57type AndroidAppSetProperties struct {
58 // APK Set path
59 Set *string
60
61 // Specifies that this app should be installed to the priv-app directory,
62 // where the system will grant it additional privileges not available to
63 // normal apps.
64 Privileged *bool
65
66 // APKs in this set use prerelease SDK version
67 Prerelease *bool
68
69 // Names of modules to be overridden. Listed modules can only be other apps
70 // (in Make or Soong).
71 Overrides []string
72}
73
74type AndroidAppSet struct {
75 android.ModuleBase
76 android.DefaultableModuleBase
77 prebuilt android.Prebuilt
78
79 properties AndroidAppSetProperties
80 packedOutput android.WritablePath
81 masterFile string
82}
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 Smundak18d98bc2020-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
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700108var TargetCpuAbi = map[string]string{
Sasha Smundaka7856c02020-04-23 09:49:59 -0700109 "arm": "ARMEABI_V7A",
110 "arm64": "ARM64_V8A",
111 "x86": "X86",
112 "x86_64": "X86_64",
113}
114
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700115func SupportedAbis(ctx android.ModuleContext) []string {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700116 abiName := func(archVar string, deviceArch string) string {
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700117 if abi, found := TargetCpuAbi[deviceArch]; found {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700118 return abi
119 }
120 ctx.ModuleErrorf("Invalid %s: %s", archVar, deviceArch)
121 return "BAD_ABI"
122 }
123
124 result := []string{abiName("TARGET_ARCH", ctx.DeviceConfig().DeviceArch())}
125 if s := ctx.DeviceConfig().DeviceSecondaryArch(); s != "" {
126 result = append(result, abiName("TARGET_2ND_ARCH", s))
127 }
128 return result
129}
130
131func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700132 as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip")
Sasha Smundaka7856c02020-04-23 09:49:59 -0700133 // We are assuming here that the master file in the APK
134 // set has `.apk` suffix. If it doesn't the build will fail.
135 // APK sets containing APEX files are handled elsewhere.
136 as.masterFile = ctx.ModuleName() + ".apk"
137 screenDensities := "all"
138 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
139 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
140 }
141 // TODO(asmundak): handle locales.
142 // TODO(asmundak): do we support device features
143 ctx.Build(pctx,
144 android.BuildParams{
145 Rule: extractMatchingApks,
146 Description: "Extract APKs from APK set",
147 Output: as.packedOutput,
148 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
149 Args: map[string]string{
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700150 "abis": strings.Join(SupportedAbis(ctx), ","),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700151 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
152 "screen-densities": screenDensities,
153 "sdk-version": ctx.Config().PlatformSdkVersion(),
154 "stem": ctx.ModuleName(),
155 },
156 })
Sasha Smundaka7856c02020-04-23 09:49:59 -0700157}
158
159// android_app_set extracts a set of APKs based on the target device
160// configuration and installs this set as "split APKs".
Sasha Smundak613cbb12020-06-05 10:27:23 -0700161// The extracted set always contains 'master' APK whose name is
162// _module_name_.apk and every split APK matching target device.
163// The extraction of the density-specific splits depends on
164// PRODUCT_AAPT_PREBUILT_DPI variable. If present (its value should
165// be a list density names: LDPI, MDPI, HDPI, etc.), only listed
166// splits will be extracted. Otherwise all density-specific splits
167// will be extracted.
Sasha Smundaka7856c02020-04-23 09:49:59 -0700168func AndroidApkSetFactory() android.Module {
169 module := &AndroidAppSet{}
170 module.AddProperties(&module.properties)
171 InitJavaModule(module, android.DeviceSupported)
172 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
173 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000174}
175
Colin Cross30e076a2015-04-13 13:58:27 -0700176// AndroidManifest.xml merging
177// package splits
178
Colin Crossfabb6082018-02-20 17:22:23 -0800179type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700180 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700181 Additional_certificates []string
182
183 // If set, create package-export.apk, which other packages can
184 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800185 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700186
Colin Cross16056062017-12-13 22:46:28 -0800187 // Specifies that this app should be installed to the priv-app directory,
188 // where the system will grant it additional privileges not available to
189 // normal apps.
190 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700191
192 // list of resource labels to generate individual resource packages
193 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400194
195 // Names of modules to be overridden. Listed modules can only be other binaries
196 // (in Make or Soong).
197 // This does not completely prevent installation of the overridden binaries, but if both
198 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
199 // from PRODUCT_PACKAGES.
200 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700201
202 // list of native libraries that will be provided in or alongside the resulting jar
203 Jni_libs []string `android:"arch_variant"`
204
Colin Cross76583a42020-05-06 17:51:39 -0700205 // if true, use JNI libraries that link against platform APIs even if this module sets
Colin Crossee87c602020-02-19 16:57:15 -0800206 // sdk_version.
207 Jni_uses_platform_apis *bool
208
Colin Cross76583a42020-05-06 17:51:39 -0700209 // if true, use JNI libraries that link against SDK APIs even if this module does not set
210 // sdk_version.
211 Jni_uses_sdk_apis *bool
212
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700213 // STL library to use for JNI libraries.
214 Stl *string `android:"arch_variant"`
215
Colin Crosse4246ab2019-02-05 21:55:21 -0800216 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
217 // flag so that they are used from inside the APK at runtime. Defaults to true for android_test modules unless
Jiyong Park52cd06f2019-11-11 10:14:32 +0900218 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
219 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
220 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -0800221 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -0800222
223 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
224 // they are used from inside the APK at runtime.
225 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -0700226
227 // Forces native libraries to always be packaged into the APK,
228 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
229 // True for android_test* modules.
230 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700231
232 // If set, find and merge all NOTICE files that this module and its dependencies have and store
233 // it in the APK as an asset.
234 Embed_notices *bool
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700235
236 // cc.Coverage related properties
237 PreventInstall bool `blueprint:"mutated"`
238 HideFromMake bool `blueprint:"mutated"`
239 IsCoverageVariant bool `blueprint:"mutated"`
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100240
241 // Whether this app is considered mainline updatable or not. When set to true, this will enforce
Artur Satayevf40fc852020-04-16 13:43:02 +0100242 // additional rules to make sure an app can safely be updated. Default is false.
243 // Prefer using other specific properties if build behaviour must be changed; avoid using this
244 // flag for anything but neverallow rules (unless the behaviour change is invisible to owners).
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100245 Updatable *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700246}
247
Jaewoong Jung525443a2019-02-28 15:35:54 -0800248// android_app properties that can be overridden by override_android_app
249type overridableAppProperties struct {
250 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
251 // or an android_app_certificate module name in the form ":module".
252 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700253
Liz Kammer70dd74d2020-05-07 13:24:05 -0700254 // Name of the signing certificate lineage file.
255 Lineage *string
256
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700257 // the package name of this app. The package name in the manifest file is used if one was not given.
258 Package_name *string
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800259
260 // the logging parent of this app.
261 Logging_parent *string
Jaewoong Jung525443a2019-02-28 15:35:54 -0800262}
263
Roshan Piusb8307962020-04-27 09:42:27 -0700264// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
265type OverridableRuntimeResourceOverlayProperties struct {
266 // the package name of this app. The package name in the manifest file is used if one was not given.
267 Package_name *string
268
269 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
270 Target_package_name *string
271}
272
Colin Cross30e076a2015-04-13 13:58:27 -0700273type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700274 Library
275 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800276 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700277
Colin Cross50ddcc42019-05-16 12:28:22 -0700278 usesLibrary usesLibrary
279
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900280 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700281
Colin Crossfabb6082018-02-20 17:22:23 -0800282 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700283
Jaewoong Jung525443a2019-02-28 15:35:54 -0800284 overridableAppProperties overridableAppProperties
285
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700286 installJniLibs []jniLib
287 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700288
289 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800290
291 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
292 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800293
Colin Cross70dda7e2019-10-01 22:05:35 -0700294 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700295
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700296 onDeviceDir string
297
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800298 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700299
300 noticeOutputs android.NoticeOutputs
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900301
302 overriddenManifestPackageName string
Artur Satayev1111b842020-04-27 19:05:28 +0100303
304 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800305}
306
Martin Stjernholm6d415272020-01-31 17:10:36 +0000307func (a *AndroidApp) IsInstallable() bool {
308 return Bool(a.properties.Installable)
309}
310
Colin Cross89c31582018-04-30 15:55:11 -0700311func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
312 return nil
313}
314
Colin Cross66f78822018-05-02 12:58:28 -0700315func (a *AndroidApp) ExportedStaticPackages() android.Paths {
316 return nil
317}
318
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900319func (a *AndroidApp) OutputFile() android.Path {
320 return a.outputFile
321}
322
Colin Cross503c1d02020-01-28 14:00:53 -0800323func (a *AndroidApp) Certificate() Certificate {
324 return a.certificate
325}
326
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700327func (a *AndroidApp) JniCoverageOutputs() android.Paths {
328 return a.jniCoverageOutputs
329}
330
Colin Crossa97c5d32018-03-28 14:58:31 -0700331var _ AndroidLibraryDependency = (*AndroidApp)(nil)
332
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900333type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800334 Pem, Key android.Path
335 presigned bool
336}
337
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700338var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800339
340func (c Certificate) AndroidMkString() string {
341 if c.presigned {
342 return "PRESIGNED"
343 } else {
344 return c.Pem.String()
345 }
Colin Cross30e076a2015-04-13 13:58:27 -0700346}
347
Colin Cross46c9b8b2017-06-22 16:51:17 -0700348func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
349 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700350
Jiyong Park6a927c42020-01-21 02:03:43 +0900351 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700352 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
353 }
354
Paul Duffin250e6192019-06-07 10:44:37 +0100355 sdkDep := decodeSdkDep(ctx, sdkContext(a))
356 if sdkDep.hasFrameworkLibs() {
357 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700358 }
Colin Crossa4f08812018-10-02 22:03:40 -0700359
Colin Cross3c007702020-05-08 11:20:24 -0700360 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
361
362 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
363 ctx.PropertyErrorf("jni_uses_sdk_apis",
364 "can only be set for modules that do not set sdk_version")
365 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
366 ctx.PropertyErrorf("jni_uses_platform_apis",
367 "can only be set for modules that set sdk_version")
368 }
369
Peter Collingbournead84f972019-12-17 16:46:18 -0800370 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700371 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700372 variation := append(jniTarget.Variations(),
373 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossc511bc52020-04-07 16:50:32 +0000374
375 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
376 // unless jni_uses_platform_apis is set.
Colin Crossc2d24052020-05-13 11:05:02 -0700377 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
378 // have stable APIs through the VNDK.
379 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
380 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross76583a42020-05-06 17:51:39 -0700381 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Crossc511bc52020-04-07 16:50:32 +0000382 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
383 }
Colin Crossa4f08812018-10-02 22:03:40 -0700384 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
385 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700386
Paul Duffin250e6192019-06-07 10:44:37 +0100387 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700388}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700389
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700390func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800391 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700392 if cert != "" {
393 ctx.AddDependency(ctx.Module(), certificateTag, cert)
394 }
395
396 for _, cert := range a.appProperties.Additional_certificates {
397 cert = android.SrcIsModule(cert)
398 if cert != "" {
399 ctx.AddDependency(ctx.Module(), certificateTag, cert)
400 } else {
401 ctx.PropertyErrorf("additional_certificates",
402 `must be names of android_app_certificate modules in the form ":module"`)
403 }
404 }
Colin Cross30e076a2015-04-13 13:58:27 -0700405}
406
Jeongik Cha538c0d02019-07-11 15:54:27 +0900407func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
408 a.generateAndroidBuildActions(ctx)
409}
410
Colin Cross46c9b8b2017-06-22 16:51:17 -0700411func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100412 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700413 a.generateAndroidBuildActions(ctx)
414}
415
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100416func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev849f8442020-04-28 14:57:42 +0100417 if a.Updatable() {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100418 if !a.sdkVersion().stable() {
419 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
420 }
Artur Satayevf40fc852020-04-16 13:43:02 +0100421 if String(a.deviceProperties.Min_sdk_version) == "" {
422 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
423 }
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900424 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
425 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
426 } else {
427 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
428 }
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100429 }
430
431 a.checkPlatformAPI(ctx)
432 a.checkSdkVersions(ctx)
433}
434
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900435// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
436// This check is enforced for "updatable" APKs (including APK-in-APEX).
437// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
438// because, sdk_version is overridden by min_sdk_version (if set as smaller)
439// and linkType is checked with dependencies so we can be sure that the whole dependency tree
440// will meet the requirements.
441func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
442 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
443 ctx.VisitDirectDeps(func(m android.Module) {
444 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
445 return
446 }
447 dep, _ := m.(*cc.Module)
Jooyung Han9d2c0f72020-05-20 17:12:13 +0900448 // The domain of cc.sdk_version is "current" and <number>
449 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
450 // properly regardless of sdk finalization.
451 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
452 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900453 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
454 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
455 return
456 }
457
458 })
459}
460
Sasha Smundak6ad77252019-05-01 13:16:22 -0700461// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800462// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700463func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900464 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800465 if err != nil {
466 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
467 }
468
Jiyong Park52cd06f2019-11-11 10:14:32 +0900469 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
470 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800471}
472
Colin Cross43f08db2018-11-12 10:13:39 -0800473// Returns whether this module should have the dex file stored uncompressed in the APK.
474func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800475 if Bool(a.appProperties.Use_embedded_dex) {
476 return true
477 }
478
Colin Cross53a87f52019-06-25 13:35:30 -0700479 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
480 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900481 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000482 return true
483 }
484
Colin Cross53a87f52019-06-25 13:35:30 -0700485 if ctx.Config().UnbundledBuild() {
486 return false
487 }
488
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700489 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700490}
491
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700492func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
493 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900494 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700495}
496
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900497func (a *AndroidApp) OverriddenManifestPackageName() string {
498 return a.overriddenManifestPackageName
499}
500
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800501func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000502 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
503
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700504 // Ask manifest_fixer to add or update the application element indicating this app has no code.
505 a.aapt.hasNoCode = !a.hasCode(ctx)
506
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800507 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800508
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800509 // 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 -0800510 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700511 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800512 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700513 }
514
Dan Willemsen72be5902018-10-24 20:24:57 -0700515 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
516 // Product AAPT config
517 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800518 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700519 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700520
Dan Willemsen72be5902018-10-24 20:24:57 -0700521 // Product AAPT preferred config
522 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800523 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700524 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700525 }
526
Jiyong Park7f67f482019-01-05 12:57:48 +0900527 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700528 if overridden || a.overridableAppProperties.Package_name != nil {
529 // The product override variable has a priority over the package_name property.
530 if !overridden {
531 manifestPackageName = *a.overridableAppProperties.Package_name
532 }
Nate Myren30d1f9e2020-06-08 18:03:17 +0000533 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900534 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900535 }
536
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800537 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
538
Colin Crosse560c4a2019-03-19 16:03:11 -0700539 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700540 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800541 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800542 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700543
Colin Cross46c9b8b2017-06-22 16:51:17 -0700544 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700545 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800546}
Colin Cross30e076a2015-04-13 13:58:27 -0700547
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800548func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700549 var staticLibProguardFlagFiles android.Paths
550 ctx.VisitDirectDeps(func(m android.Module) {
551 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
552 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
553 }
554 })
555
556 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
557
558 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
559 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800560}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800561
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800562func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
Colin Cross43f08db2018-11-12 10:13:39 -0800563
564 var installDir string
565 if ctx.ModuleName() == "framework-res" {
566 // framework-res.apk is installed as system/framework/framework-res.apk
567 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900568 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800569 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800570 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800571 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800572 }
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800573 a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
David Srbecky98c71222020-05-20 22:20:28 +0100574 if a.deviceProperties.Uncompress_dex == nil {
575 // If the value was not force-set by the user, use reasonable default based on the module.
576 a.deviceProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
577 }
578 a.dexpreopter.uncompressedDex = *a.deviceProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700579 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
580 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
581 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
582 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
583 a.dexpreopter.manifestFile = a.mergedManifestFile
584
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800585 if ctx.ModuleName() != "framework-res" {
586 a.Module.compile(ctx, a.aaptSrcJar)
587 }
Colin Cross30e076a2015-04-13 13:58:27 -0700588
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800589 return a.maybeStrippedDexJarFile
590}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800591
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800592func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700593 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700594 if len(jniLibs) > 0 {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700595 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700596 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Sasha Smundak6ad77252019-05-01 13:16:22 -0700597 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700598 for _, jni := range jniLibs {
599 if jni.coverageFile.Valid() {
Jaewoong Jung46984ee2020-04-07 13:07:55 -0700600 // Only collect coverage for the first target arch if this is a multilib target.
601 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
602 // data file path collisions since the current coverage file path format doesn't contain
603 // arch-related strings. This is fine for now though; the code coverage team doesn't use
604 // multi-arch targets such as test_suite_* for coverage collections yet.
605 //
606 // Work with the team to come up with a new format that handles multilib modules properly
607 // and change this.
608 if len(ctx.Config().Targets[android.Android]) == 1 ||
609 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
610 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
611 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700612 }
613 }
Colin Crossa4f08812018-10-02 22:03:40 -0700614 } else {
615 a.installJniLibs = jniLibs
616 }
617 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800618 return jniJarFile
619}
Colin Crossa4f08812018-10-02 22:03:40 -0700620
Jaewoong Jung0949f312019-09-11 10:25:18 -0700621func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700622 // Collect NOTICE files from all dependencies.
623 seenModules := make(map[android.Module]bool)
624 noticePathSet := make(map[android.Path]bool)
625
626 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
627 // Have we already seen this?
628 if _, ok := seenModules[child]; ok {
629 return false
630 }
631 seenModules[child] = true
632
633 // Skip host modules.
634 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
635 return false
636 }
637
Bob Badoura75b0572020-02-18 20:21:55 -0800638 paths := child.(android.Module).NoticeFiles()
639 if len(paths) > 0 {
640 for _, path := range paths {
641 noticePathSet[path] = true
642 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700643 }
644 return true
645 })
646
647 // If the app has one, add it too.
Bob Badoura75b0572020-02-18 20:21:55 -0800648 if len(a.NoticeFiles()) > 0 {
649 for _, path := range a.NoticeFiles() {
650 noticePathSet[path] = true
651 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700652 }
653
654 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700655 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700656 }
657 var noticePaths []android.Path
658 for path := range noticePathSet {
659 noticePaths = append(noticePaths, path)
660 }
661 sort.Slice(noticePaths, func(i, j int) bool {
662 return noticePaths[i].String() < noticePaths[j].String()
663 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700664
Jaewoong Jung0949f312019-09-11 10:25:18 -0700665 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700666}
667
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700668// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
669// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
670func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
671 if android.SrcIsModule(certPropValue) == "" {
672 var mainCert Certificate
673 if certPropValue != "" {
674 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
675 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800676 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
677 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700678 }
679 } else {
680 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800681 mainCert = Certificate{
682 Pem: pem,
683 Key: key,
684 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700685 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700686 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700687 }
688
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700689 if !m.Platform() {
690 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900691 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
692 if strings.HasPrefix(certPath, systemCertPath) {
693 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
694 whitelist := ctx.Config().EnforceSystemCertificateWhitelist()
695
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700696 if enforceSystemCert && !inList(m.Name(), whitelist) {
Jeongik Chac9464142019-01-07 12:07:27 +0900697 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
698 }
699 }
700 }
701
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700702 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800703}
704
Jooyung Han39ee1192020-03-23 20:21:11 +0900705func (a *AndroidApp) InstallApkName() string {
706 return a.installApkName
707}
708
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800709func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700710 var apkDeps android.Paths
711
Jeongik Cha538c0d02019-07-11 15:54:27 +0900712 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
713 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
714
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800715 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800716 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800717
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700718 if ctx.ModuleName() == "framework-res" {
719 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700720 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900721 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700722 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
723 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800724 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700725 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700726 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700727 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700728 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700729
Jaewoong Jung0949f312019-09-11 10:25:18 -0700730 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700731 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
732 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
733 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700734
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800735 // Process all building blocks, from AAPT to certificates.
736 a.aaptBuildActions(ctx)
737
Colin Cross50ddcc42019-05-16 12:28:22 -0700738 if a.usesLibrary.enforceUsesLibraries() {
739 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
740 apkDeps = append(apkDeps, manifestCheckFile)
741 }
742
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800743 a.proguardBuildActions(ctx)
744
745 dexJarFile := a.dexBuildActions(ctx)
746
Colin Crossc2d24052020-05-13 11:05:02 -0700747 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800748 jniJarFile := a.jniBuildActions(jniLibs, ctx)
749
750 if ctx.Failed() {
751 return
752 }
753
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700754 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
755 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800756
757 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800758 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700759 v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature)
760 var v4SignatureFile android.WritablePath = nil
761 if v4SigningRequested {
762 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig")
763 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700764 var lineageFile android.Path
765 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
766 lineageFile = android.PathForModuleSrc(ctx, lineage)
767 }
768 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800769 a.outputFile = packageFile
Songchun Fan17d69e32020-03-24 20:32:24 -0700770 if v4SigningRequested {
771 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
772 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800773
Colin Crosse560c4a2019-03-19 16:03:11 -0700774 for _, split := range a.aapt.splits {
775 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800776 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700777 if v4SigningRequested {
778 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig")
779 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700780 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700781 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
Songchun Fan17d69e32020-03-24 20:32:24 -0700782 if v4SigningRequested {
783 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
784 }
Colin Crosse560c4a2019-03-19 16:03:11 -0700785 }
786
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800787 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700788 bundleFile := android.PathForModuleOut(ctx, "base.zip")
789 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
790 a.bundleFile = bundleFile
791
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800792 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900793 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
794 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
795 for _, extra := range a.extraOutputFiles {
796 ctx.InstallFile(a.installDir, extra.Base(), extra)
797 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800798 }
Artur Satayev1111b842020-04-27 19:05:28 +0100799
800 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700801}
802
Colin Crossc2d24052020-05-13 11:05:02 -0700803type appDepsInterface interface {
804 sdkVersion() sdkSpec
805 minSdkVersion() sdkSpec
806 RequiresStableAPIs(ctx android.BaseModuleContext) bool
807}
808
809func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
810 shouldCollectRecursiveNativeDeps bool,
Colin Cross094cde42020-02-15 10:38:00 -0800811 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crossc2d24052020-05-13 11:05:02 -0700812
Colin Crossa4f08812018-10-02 22:03:40 -0700813 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900814 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800815 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700816
Colin Crossc2d24052020-05-13 11:05:02 -0700817 if checkNativeSdkVersion {
818 checkNativeSdkVersion = app.sdkVersion().specified() &&
819 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
820 }
821
Peter Collingbournead84f972019-12-17 16:46:18 -0800822 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700823 otherName := ctx.OtherModuleName(module)
824 tag := ctx.OtherModuleDependencyTag(module)
825
Peter Collingbournead84f972019-12-17 16:46:18 -0800826 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700827 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800828 if dep.IsNdk() || dep.IsStubs() {
829 return false
830 }
831
Colin Crossa4f08812018-10-02 22:03:40 -0700832 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800833 path := lib.Path()
834 if seenModulePaths[path.String()] {
835 return false
836 }
837 seenModulePaths[path.String()] = true
838
Colin Crossc2d24052020-05-13 11:05:02 -0700839 if checkNativeSdkVersion && dep.SdkVersion() == "" {
840 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
841 otherName)
Colin Cross094cde42020-02-15 10:38:00 -0800842 }
843
Colin Crossa4f08812018-10-02 22:03:40 -0700844 if lib.Valid() {
845 jniLibs = append(jniLibs, jniLib{
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700846 name: ctx.OtherModuleName(module),
847 path: path,
848 target: module.Target(),
849 coverageFile: dep.CoverageOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700850 })
851 } else {
852 ctx.ModuleErrorf("dependency %q missing output file", otherName)
853 }
854 } else {
855 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700856 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800857
858 return shouldCollectRecursiveNativeDeps
859 }
860
861 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700862 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900863 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700864 } else {
865 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
866 }
Colin Crossa4f08812018-10-02 22:03:40 -0700867 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800868
869 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700870 })
871
Colin Crossbd01e2a2018-10-04 15:21:03 -0700872 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700873}
874
Artur Satayev1111b842020-04-27 19:05:28 +0100875func (a *AndroidApp) walkPayloadDeps(ctx android.ModuleContext,
876 do func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool)) {
877
878 ctx.WalkDeps(func(child, parent android.Module) bool {
879 isExternal := !a.DepIsInSameApex(ctx, child)
880 if am, ok := child.(android.ApexModule); ok {
881 do(ctx, parent, am, isExternal)
882 }
883 return !isExternal
884 })
885}
886
887func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
888 if ctx.Host() {
889 return
890 }
891
892 depsInfo := android.DepNameToDepInfoMap{}
893 a.walkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) {
894 depName := to.Name()
895 if info, exist := depsInfo[depName]; exist {
896 info.From = append(info.From, from.Name())
897 info.IsExternal = info.IsExternal && externalDep
898 depsInfo[depName] = info
899 } else {
900 toMinSdkVersion := "(no version)"
901 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
902 if v := m.MinSdkVersion(); v != "" {
903 toMinSdkVersion = v
904 }
905 }
906 depsInfo[depName] = android.ApexModuleDepInfo{
907 To: depName,
908 From: []string{from.Name()},
909 IsExternal: externalDep,
910 MinSdkVersion: toMinSdkVersion,
911 }
912 }
913 })
914
915 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
916}
917
Artur Satayev849f8442020-04-28 14:57:42 +0100918func (a *AndroidApp) Updatable() bool {
919 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
920}
921
Colin Cross0ea8ba82019-06-06 14:33:29 -0700922func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800923 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
924 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000925 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800926 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800927 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800928}
929
Jiyong Park0f80c182020-01-31 02:49:53 +0900930func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
931 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
932 return true
933 }
934 return a.Library.DepIsInSameApex(ctx, dep)
935}
936
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900937// For OutputFileProducer interface
938func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
939 switch tag {
940 case ".aapt.srcjar":
941 return []android.Path{a.aaptSrcJar}, nil
942 }
943 return a.Library.OutputFiles(tag)
944}
945
Jiyong Parkf7487312019-10-17 12:54:30 +0900946func (a *AndroidApp) Privileged() bool {
947 return Bool(a.appProperties.Privileged)
948}
949
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700950func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
951 return ctx.Device() && (ctx.DeviceConfig().NativeCoverageEnabled() || ctx.DeviceConfig().ClangCoverageEnabled())
952}
953
954func (a *AndroidApp) PreventInstall() {
955 a.appProperties.PreventInstall = true
956}
957
958func (a *AndroidApp) HideFromMake() {
959 a.appProperties.HideFromMake = true
960}
961
962func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
963 a.appProperties.IsCoverageVariant = coverage
964}
965
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400966func (a *AndroidApp) EnableCoverageIfNeeded() {}
967
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700968var _ cc.Coverage = (*AndroidApp)(nil)
969
Colin Cross1b16b0e2019-02-12 14:41:32 -0800970// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -0700971func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -0700972 module := &AndroidApp{}
973
Sasha Smundak2057f822019-04-16 17:16:58 -0700974 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross66dbc0b2017-12-28 12:23:20 -0800975 module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
976
Colin Crossae5caf52018-05-22 11:11:52 -0700977 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -0700978 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -0700979
Colin Cross36242852017-06-23 15:06:31 -0700980 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -0700981 &module.Module.properties,
982 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -0800983 &module.Module.dexpreoptProperties,
Colin Crossa97c5d32018-03-28 14:58:31 -0700984 &module.Module.protoProperties,
985 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -0800986 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -0700987 &module.overridableAppProperties,
988 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -0700989
Colin Crossa9d8bee2018-10-02 13:59:46 -0700990 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
991 return class == android.Device && ctx.Config().DevicePrefer32BitApps()
992 })
993
Colin Crossa4f08812018-10-02 22:03:40 -0700994 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
995 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800996 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +0900997 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -0700998
Colin Cross36242852017-06-23 15:06:31 -0700999 return module
Colin Cross30e076a2015-04-13 13:58:27 -07001000}
Colin Crossae5caf52018-05-22 11:11:52 -07001001
1002type appTestProperties struct {
Liz Kammer6b0c5522020-04-28 16:10:55 -07001003 // The name of the android_app module that the tests will run against.
Colin Crossae5caf52018-05-22 11:11:52 -07001004 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001005
1006 // if specified, the instrumentation target package name in the manifest is overwritten by it.
1007 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -07001008}
1009
1010type AndroidTest struct {
1011 AndroidApp
1012
1013 appTestProperties appTestProperties
1014
1015 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07001016
1017 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -07001018 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001019}
1020
Jaewoong Jung0949f312019-09-11 10:25:18 -07001021func (a *AndroidTest) InstallInTestcases() bool {
1022 return true
1023}
1024
Colin Crossae5caf52018-05-22 11:11:52 -07001025func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncylee5bcff5d2020-04-30 14:57:06 +08001026 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001027 if a.appTestProperties.Instrumentation_target_package != nil {
1028 a.additionalAaptFlags = append(a.additionalAaptFlags,
1029 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1030 } else if a.appTestProperties.Instrumentation_for != nil {
1031 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001032 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1033 if overridden {
1034 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1035 }
1036 }
Colin Crossae5caf52018-05-22 11:11:52 -07001037 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001038
easoncylee5bcff5d2020-04-30 14:57:06 +08001039 for _, module := range a.testProperties.Test_mainline_modules {
1040 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1041 }
1042
Jaewoong Jung39982342020-01-14 10:27:18 -08001043 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncylee5bcff5d2020-04-30 14:57:06 +08001044 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001045 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001046 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001047}
1048
Jaewoong Jung39982342020-01-14 10:27:18 -08001049func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1050 if testConfig == nil {
1051 return nil
1052 }
1053
1054 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1055 rule := android.NewRuleBuilder()
1056 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1057 fixNeeded := false
1058
1059 if ctx.ModuleName() != a.installApkName {
1060 fixNeeded = true
1061 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1062 }
1063
1064 if a.overridableAppProperties.Package_name != nil {
1065 fixNeeded = true
1066 command.FlagWithInput("--manifest ", a.manifestPath).
1067 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1068 }
1069
1070 if fixNeeded {
1071 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1072 return fixedConfig
1073 }
1074 return testConfig
1075}
1076
Colin Cross303e21f2018-08-07 16:49:25 -07001077func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001078 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001079}
1080
1081func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1082 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001083 if a.appTestProperties.Instrumentation_for != nil {
1084 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1085 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1086 // use instrumentationForTag instead of libTag.
1087 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1088 }
Colin Crossae5caf52018-05-22 11:11:52 -07001089}
1090
Colin Cross1b16b0e2019-02-12 14:41:32 -08001091// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1092// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001093func AndroidTestFactory() android.Module {
1094 module := &AndroidTest{}
1095
Sasha Smundak2057f822019-04-16 17:16:58 -07001096 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001097
1098 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001099 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001100 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001101 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001102 module.Module.dexpreopter.isTest = true
Colin Crossae5caf52018-05-22 11:11:52 -07001103
1104 module.AddProperties(
1105 &module.Module.properties,
1106 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001107 &module.Module.dexpreoptProperties,
Colin Crossae5caf52018-05-22 11:11:52 -07001108 &module.Module.protoProperties,
1109 &module.aaptProperties,
1110 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001111 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001112 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001113 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001114 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001115
Colin Crossa4f08812018-10-02 22:03:40 -07001116 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1117 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001118 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001119 return module
1120}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001121
Colin Cross252fc6f2018-10-04 15:22:03 -07001122type appTestHelperAppProperties struct {
1123 // list of compatibility suites (for example "cts", "vts") that the module should be
1124 // installed into.
1125 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001126
1127 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1128 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1129 // explicitly.
1130 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001131}
1132
1133type AndroidTestHelperApp struct {
1134 AndroidApp
1135
1136 appTestHelperAppProperties appTestHelperAppProperties
1137}
1138
Jaewoong Jung326a9412019-11-21 10:41:00 -08001139func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1140 return true
1141}
1142
Colin Cross1b16b0e2019-02-12 14:41:32 -08001143// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1144// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1145// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001146func AndroidTestHelperAppFactory() android.Module {
1147 module := &AndroidTestHelperApp{}
1148
Sasha Smundak2057f822019-04-16 17:16:58 -07001149 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001150
1151 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001152 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001153 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001154 module.Module.dexpreopter.isTest = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001155
1156 module.AddProperties(
1157 &module.Module.properties,
1158 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001159 &module.Module.dexpreoptProperties,
Colin Cross252fc6f2018-10-04 15:22:03 -07001160 &module.Module.protoProperties,
1161 &module.aaptProperties,
1162 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001163 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001164 &module.overridableAppProperties,
1165 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001166
1167 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1168 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001169 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001170 return module
1171}
1172
Colin Crossbd01e2a2018-10-04 15:21:03 -07001173type AndroidAppCertificate struct {
1174 android.ModuleBase
1175 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001176 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001177}
1178
1179type AndroidAppCertificateProperties struct {
1180 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1181 Certificate *string
1182}
1183
Colin Cross1b16b0e2019-02-12 14:41:32 -08001184// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1185// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001186func AndroidAppCertificateFactory() android.Module {
1187 module := &AndroidAppCertificate{}
1188 module.AddProperties(&module.properties)
1189 android.InitAndroidModule(module)
1190 return module
1191}
1192
Colin Crossbd01e2a2018-10-04 15:21:03 -07001193func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1194 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001195 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001196 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1197 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001198 }
1199}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001200
1201type OverrideAndroidApp struct {
1202 android.ModuleBase
1203 android.OverrideModuleBase
1204}
1205
Sasha Smundak613cbb12020-06-05 10:27:23 -07001206func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -08001207 // All the overrides happen in the base module.
1208 // TODO(jungjw): Check the base module type.
1209}
1210
1211// override_android_app is used to create an android_app module based on another android_app by overriding
1212// some of its properties.
1213func OverrideAndroidAppModuleFactory() android.Module {
1214 m := &OverrideAndroidApp{}
1215 m.AddProperties(&overridableAppProperties{})
1216
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001217 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001218 android.InitOverrideModule(m)
1219 return m
1220}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001221
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001222type OverrideAndroidTest struct {
1223 android.ModuleBase
1224 android.OverrideModuleBase
1225}
1226
Sasha Smundak613cbb12020-06-05 10:27:23 -07001227func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001228 // All the overrides happen in the base module.
1229 // TODO(jungjw): Check the base module type.
1230}
1231
1232// override_android_test is used to create an android_app module based on another android_test by overriding
1233// some of its properties.
1234func OverrideAndroidTestModuleFactory() android.Module {
1235 m := &OverrideAndroidTest{}
1236 m.AddProperties(&overridableAppProperties{})
1237 m.AddProperties(&appTestProperties{})
1238
1239 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1240 android.InitOverrideModule(m)
1241 return m
1242}
1243
Roshan Piusb8307962020-04-27 09:42:27 -07001244type OverrideRuntimeResourceOverlay struct {
1245 android.ModuleBase
1246 android.OverrideModuleBase
1247}
1248
Sasha Smundak613cbb12020-06-05 10:27:23 -07001249func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) {
Roshan Piusb8307962020-04-27 09:42:27 -07001250 // All the overrides happen in the base module.
1251 // TODO(jungjw): Check the base module type.
1252}
1253
1254// override_runtime_resource_overlay is used to create a module based on another
1255// runtime_resource_overlay module by overriding some of its properties.
1256func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1257 m := &OverrideRuntimeResourceOverlay{}
1258 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1259
1260 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1261 android.InitOverrideModule(m)
1262 return m
1263}
1264
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001265type AndroidAppImport struct {
1266 android.ModuleBase
1267 android.DefaultableModuleBase
Jiyong Park592a6a42020-04-21 22:34:28 +09001268 android.ApexModuleBase
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001269 prebuilt android.Prebuilt
1270
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001271 properties AndroidAppImportProperties
1272 dpiVariants interface{}
1273 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001274
1275 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001276 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001277
1278 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001279
1280 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001281
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001282 preprocessed bool
1283
Colin Cross70dda7e2019-10-01 22:05:35 -07001284 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001285}
1286
1287type AndroidAppImportProperties struct {
1288 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001289 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001290
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001291 // The name of a certificate in the default certificate directory or an android_app_certificate
1292 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001293 Certificate *string
1294
1295 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1296 // be set for presigned modules.
1297 Presigned *bool
1298
Liz Kammer2bc57f62020-05-13 15:49:21 -07001299 // Name of the signing certificate lineage file.
1300 Lineage *string
1301
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001302 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1303 // need to either specify a specific certificate or be presigned.
1304 Default_dev_cert *bool
1305
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001306 // Specifies that this app should be installed to the priv-app directory,
1307 // where the system will grant it additional privileges not available to
1308 // normal apps.
1309 Privileged *bool
1310
1311 // Names of modules to be overridden. Listed modules can only be other binaries
1312 // (in Make or Soong).
1313 // This does not completely prevent installation of the overridden binaries, but if both
1314 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1315 // from PRODUCT_PACKAGES.
1316 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001317
1318 // Optional name for the installed app. If unspecified, it is derived from the module name.
1319 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001320}
1321
Martin Stjernholm6d415272020-01-31 17:10:36 +00001322func (a *AndroidAppImport) IsInstallable() bool {
1323 return true
1324}
1325
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001326// Updates properties with variant-specific values.
1327func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001328 config := ctx.Config()
1329
1330 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1331 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1332 // overwrites everything else.
1333 // TODO(jungjw): Can we optimize this by making it priority order?
1334 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001335 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001336 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001337 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001338 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001339 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001340
1341 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1342 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1343 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001344}
1345
Colin Cross1184b642019-12-30 18:43:07 -08001346func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001347 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001348 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1349 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001350 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001351 }
1352
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001353 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1354 if err != nil {
1355 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1356 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1357 } else {
1358 panic(err)
1359 }
1360 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001361}
1362
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001363func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1364 cert := android.SrcIsModule(String(a.properties.Certificate))
1365 if cert != "" {
1366 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1367 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001368
Paul Duffin250e6192019-06-07 10:44:37 +01001369 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001370}
1371
1372func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1373 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001374 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1375 // with them may invalidate pre-existing signature data.
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001376 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001377 ctx.Build(pctx, android.BuildParams{
1378 Rule: android.Cp,
1379 Output: outputPath,
1380 Input: inputPath,
1381 })
1382 return
1383 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001384 rule := android.NewRuleBuilder()
1385 rule.Command().
1386 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001387 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001388 FlagWithInput("-i ", inputPath).
1389 FlagWithOutput("-o ", outputPath).
1390 FlagWithArg("-0 ", "'lib/**/*.so'").
1391 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1392 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1393}
1394
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001395// Returns whether this module should have the dex file stored uncompressed in the APK.
1396func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001397 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001398 return false
1399 }
1400
1401 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001402 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001403 return true
1404 }
1405
1406 return shouldUncompressDex(ctx, &a.dexpreopter)
1407}
1408
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001409func (a *AndroidAppImport) uncompressDex(
1410 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1411 rule := android.NewRuleBuilder()
1412 rule.Command().
1413 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001414 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001415 FlagWithInput("-i ", inputPath).
1416 FlagWithOutput("-o ", outputPath).
1417 FlagWithArg("-0 ", "'classes*.dex'").
1418 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1419 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1420}
1421
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001422func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001423 a.generateAndroidBuildActions(ctx)
1424}
1425
Jooyung Han39ee1192020-03-23 20:21:11 +09001426func (a *AndroidAppImport) InstallApkName() string {
1427 return a.BaseModuleName()
1428}
1429
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001430func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001431 numCertPropsSet := 0
1432 if String(a.properties.Certificate) != "" {
1433 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001434 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001435 if Bool(a.properties.Presigned) {
1436 numCertPropsSet++
1437 }
1438 if Bool(a.properties.Default_dev_cert) {
1439 numCertPropsSet++
1440 }
1441 if numCertPropsSet != 1 {
1442 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001443 }
1444
Colin Crossc2d24052020-05-13 11:05:02 -07001445 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001446
1447 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001448 // TODO: LOCAL_PACKAGE_SPLITS
1449
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001450 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001451
1452 if a.usesLibrary.enforceUsesLibraries() {
1453 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1454 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001455
1456 // TODO: Install or embed JNI libraries
1457
1458 // Uncompress JNI libraries in the apk
1459 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1460 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1461
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001462 var installDir android.InstallPath
1463 if Bool(a.properties.Privileged) {
1464 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001465 } else if ctx.InstallInTestcases() {
1466 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001467 } else {
1468 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1469 }
1470
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001471 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001472 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001473 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001474
1475 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1476 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1477 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1478 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1479
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001480 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001481 if a.dexpreopter.uncompressedDex {
1482 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1483 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1484 dexOutput = dexUncompressed
1485 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001486
Jooyung Han39ee1192020-03-23 20:21:11 +09001487 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1488
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001489 // TODO: Handle EXTERNAL
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001490
1491 // Sign or align the package if package has not been preprocessed
1492 if a.preprocessed {
1493 a.outputFile = srcApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001494 a.certificate = PresignedCertificate
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001495 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001496 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1497 // Which makes processMainCert's behavior for the empty cert string WAI.
1498 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001499 if len(certificates) != 1 {
1500 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1501 }
Colin Cross503c1d02020-01-28 14:00:53 -08001502 a.certificate = certificates[0]
Jooyung Han39ee1192020-03-23 20:21:11 +09001503 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer2bc57f62020-05-13 15:49:21 -07001504 var lineageFile android.Path
1505 if lineage := String(a.properties.Lineage); lineage != "" {
1506 lineageFile = android.PathForModuleSrc(ctx, lineage)
1507 }
1508 SignAppPackage(ctx, signed, dexOutput, certificates, nil, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001509 a.outputFile = signed
1510 } else {
Jooyung Han39ee1192020-03-23 20:21:11 +09001511 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001512 TransformZipAlign(ctx, alignedApk, dexOutput)
1513 a.outputFile = alignedApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001514 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001515 }
1516
1517 // TODO: Optionally compress the output apk.
1518
Jiyong Park592a6a42020-04-21 22:34:28 +09001519 if a.IsForPlatform() {
1520 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
1521 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001522
1523 // TODO: androidmk converter jni libs
1524}
1525
1526func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1527 return &a.prebuilt
1528}
1529
1530func (a *AndroidAppImport) Name() string {
1531 return a.prebuilt.Name(a.ModuleBase.Name())
1532}
1533
Dario Frenicde2a032019-10-27 00:29:22 +01001534func (a *AndroidAppImport) OutputFile() android.Path {
1535 return a.outputFile
1536}
1537
Jiyong Park618922e2020-01-08 13:35:43 +09001538func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1539 return nil
1540}
1541
Colin Cross503c1d02020-01-28 14:00:53 -08001542func (a *AndroidAppImport) Certificate() Certificate {
1543 return a.certificate
1544}
1545
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001546var dpiVariantGroupType reflect.Type
1547var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001548
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001549func initAndroidAppImportVariantGroupTypes() {
1550 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1551
1552 archNames := make([]string, len(android.ArchTypeList()))
1553 for i, archType := range android.ArchTypeList() {
1554 archNames[i] = archType.Name
1555 }
1556 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1557}
1558
1559// Populates all variant struct properties at creation time.
1560func (a *AndroidAppImport) populateAllVariantStructs() {
1561 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1562 a.AddProperties(a.dpiVariants)
1563
1564 a.archVariants = reflect.New(archVariantGroupType).Interface()
1565 a.AddProperties(a.archVariants)
1566}
1567
Jiyong Parkf7487312019-10-17 12:54:30 +09001568func (a *AndroidAppImport) Privileged() bool {
1569 return Bool(a.properties.Privileged)
1570}
1571
Sasha Smundak613cbb12020-06-05 10:27:23 -07001572func (a *AndroidAppImport) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool {
Jiyong Park592a6a42020-04-21 22:34:28 +09001573 // android_app_import might have extra dependencies via uses_libs property.
1574 // Don't track the dependency as we don't automatically add those libraries
1575 // to the classpath. It should be explicitly added to java_libs property of APEX
1576 return false
1577}
1578
Colin Crossc2d24052020-05-13 11:05:02 -07001579func (a *AndroidAppImport) sdkVersion() sdkSpec {
1580 return sdkSpecFrom("")
1581}
1582
1583func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1584 return sdkSpecFrom("")
1585}
1586
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001587func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1588 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1589
1590 variantFields := make([]reflect.StructField, len(variants))
1591 for i, variant := range variants {
1592 variantFields[i] = reflect.StructField{
1593 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001594 Type: props,
1595 }
1596 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001597
1598 variantGroupStruct := reflect.StructOf(variantFields)
1599 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001600 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001601 Name: variantGroupName,
1602 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001603 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001604 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001605}
1606
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001607// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001608// DPI-specific apk source files can be specified using dpi_variants. Example:
1609//
1610// android_app_import {
1611// name: "example_import",
1612// apk: "prebuilts/example.apk",
1613// dpi_variants: {
1614// mdpi: {
1615// apk: "prebuilts/example_mdpi.apk",
1616// },
1617// xhdpi: {
1618// apk: "prebuilts/example_xhdpi.apk",
1619// },
1620// },
1621// certificate: "PRESIGNED",
1622// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001623func AndroidAppImportFactory() android.Module {
1624 module := &AndroidAppImport{}
1625 module.AddProperties(&module.properties)
1626 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001627 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001628 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001629 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001630 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001631 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001632
Jiyong Park592a6a42020-04-21 22:34:28 +09001633 android.InitApexModule(module)
Jaewoong Jung6abfbf72020-05-26 20:10:08 -07001634 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1635 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001636 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001637
1638 return module
1639}
Colin Cross50ddcc42019-05-16 12:28:22 -07001640
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001641type androidTestImportProperties struct {
1642 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1643 Preprocessed *bool
1644}
1645
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001646type AndroidTestImport struct {
1647 AndroidAppImport
1648
1649 testProperties testProperties
1650
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001651 testImportProperties androidTestImportProperties
1652
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001653 data android.Paths
1654}
1655
1656func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001657 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1658
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001659 a.generateAndroidBuildActions(ctx)
1660
1661 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1662}
1663
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001664func (a *AndroidTestImport) InstallInTestcases() bool {
1665 return true
1666}
1667
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001668// android_test_import imports a prebuilt test apk with additional processing specified in the
1669// module. DPI or arch variant configurations can be made as with android_app_import.
1670func AndroidTestImportFactory() android.Module {
1671 module := &AndroidTestImport{}
1672 module.AddProperties(&module.properties)
1673 module.AddProperties(&module.dexpreoptProperties)
1674 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1675 module.AddProperties(&module.testProperties)
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001676 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001677 module.populateAllVariantStructs()
1678 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1679 module.processVariants(ctx)
1680 })
1681
Colin Crossc80828d2020-05-06 22:29:10 -07001682 module.dexpreopter.isTest = true
1683
Jiyong Park592a6a42020-04-21 22:34:28 +09001684 android.InitApexModule(module)
Jaewoong Jung243688e2020-05-01 15:50:08 -07001685 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1686 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001687 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1688
1689 return module
1690}
1691
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001692type RuntimeResourceOverlay struct {
1693 android.ModuleBase
1694 android.DefaultableModuleBase
Roshan Piusb8307962020-04-27 09:42:27 -07001695 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001696 aapt
1697
Roshan Piusb8307962020-04-27 09:42:27 -07001698 properties RuntimeResourceOverlayProperties
1699 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001700
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001701 certificate Certificate
1702
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001703 outputFile android.Path
1704 installDir android.InstallPath
1705}
1706
1707type RuntimeResourceOverlayProperties struct {
1708 // the name of a certificate in the default certificate directory or an android_app_certificate
1709 // module name in the form ":module".
1710 Certificate *string
1711
Liz Kammer7fe241f2020-05-19 16:15:25 -07001712 // Name of the signing certificate lineage file.
1713 Lineage *string
1714
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001715 // optional theme name. If specified, the overlay package will be applied
1716 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1717 Theme *string
1718
1719 // if not blank, set to the version of the sdk to compile against.
1720 // Defaults to compiling against the current platform.
1721 Sdk_version *string
1722
1723 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1724 // Defaults to sdk_version if not set.
1725 Min_sdk_version *string
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001726
1727 // list of android_library modules whose resources are extracted and linked against statically
1728 Static_libs []string
1729
1730 // list of android_app modules whose resources are extracted and linked against
1731 Resource_libs []string
Jaewoong Jungad0177b2020-04-24 15:22:40 -07001732
1733 // Names of modules to be overridden. Listed modules can only be other overlays
1734 // (in Make or Soong).
1735 // This does not completely prevent installation of the overridden overlays, but if both
1736 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1737 // from PRODUCT_PACKAGES.
1738 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001739}
1740
Jiyong Park69aeba92020-04-24 21:16:36 +09001741// RuntimeResourceOverlayModule interface is used by the apex package to gather information from
1742// a RuntimeResourceOverlay module.
1743type RuntimeResourceOverlayModule interface {
1744 android.Module
1745 OutputFile() android.Path
1746 Certificate() Certificate
1747 Theme() string
1748}
1749
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001750func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1751 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1752 if sdkDep.hasFrameworkLibs() {
1753 r.aapt.deps(ctx, sdkDep)
1754 }
1755
1756 cert := android.SrcIsModule(String(r.properties.Certificate))
1757 if cert != "" {
1758 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1759 }
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001760
1761 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1762 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001763}
1764
1765func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1766 // Compile and link resources
1767 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001768 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Piusb8307962020-04-27 09:42:27 -07001769 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1770 // Allow the override of "package name" and "overlay target package name"
1771 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1772 if overridden || r.overridableProperties.Package_name != nil {
1773 // The product override variable has a priority over the package_name property.
1774 if !overridden {
1775 manifestPackageName = *r.overridableProperties.Package_name
1776 }
1777 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
1778 }
1779 if r.overridableProperties.Target_package_name != nil {
1780 aaptLinkFlags = append(aaptLinkFlags,
1781 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1782 }
1783 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001784
1785 // Sign the built package
Colin Crossc2d24052020-05-13 11:05:02 -07001786 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001787 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1788 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer7fe241f2020-05-19 16:15:25 -07001789 var lineageFile android.Path
1790 if lineage := String(r.properties.Lineage); lineage != "" {
1791 lineageFile = android.PathForModuleSrc(ctx, lineage)
1792 }
1793 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001794 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001795
1796 r.outputFile = signed
1797 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1798 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1799}
1800
Jiyong Park6a927c42020-01-21 02:03:43 +09001801func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1802 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001803}
1804
1805func (r *RuntimeResourceOverlay) systemModules() string {
1806 return ""
1807}
1808
Jiyong Park6a927c42020-01-21 02:03:43 +09001809func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001810 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001811 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001812 }
1813 return r.sdkVersion()
1814}
1815
Jiyong Park6a927c42020-01-21 02:03:43 +09001816func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001817 return r.sdkVersion()
1818}
1819
Jiyong Park69aeba92020-04-24 21:16:36 +09001820func (r *RuntimeResourceOverlay) Certificate() Certificate {
1821 return r.certificate
1822}
1823
1824func (r *RuntimeResourceOverlay) OutputFile() android.Path {
1825 return r.outputFile
1826}
1827
1828func (r *RuntimeResourceOverlay) Theme() string {
1829 return String(r.properties.Theme)
1830}
1831
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001832// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1833// system resources at run time.
1834func RuntimeResourceOverlayFactory() android.Module {
1835 module := &RuntimeResourceOverlay{}
1836 module.AddProperties(
1837 &module.properties,
Roshan Piusb8307962020-04-27 09:42:27 -07001838 &module.aaptProperties,
1839 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001840
Roshan Piusb8307962020-04-27 09:42:27 -07001841 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1842 android.InitDefaultableModule(module)
1843 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001844 return module
1845}
1846
Colin Cross50ddcc42019-05-16 12:28:22 -07001847type UsesLibraryProperties struct {
1848 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1849 Uses_libs []string
1850
1851 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1852 // required=false.
1853 Optional_uses_libs []string
1854
1855 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1856 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1857 Enforce_uses_libs *bool
1858}
1859
1860// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1861// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1862// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1863// with knowledge of their shared libraries.
1864type usesLibrary struct {
1865 usesLibraryProperties UsesLibraryProperties
1866}
1867
Paul Duffin250e6192019-06-07 10:44:37 +01001868func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001869 if !ctx.Config().UnbundledBuild() {
1870 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1871 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001872 // Only add these extra dependencies if the module depends on framework libs. This avoids
1873 // creating a cyclic dependency:
1874 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1875 if hasFrameworkLibs {
Colin Cross3245b2c2019-06-07 13:18:09 -07001876 // dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
1877 // to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
1878 // library to dexpreopt.
1879 ctx.AddVariationDependencies(nil, usesLibTag,
1880 "org.apache.http.legacy",
1881 "android.hidl.base-V1.0-java",
1882 "android.hidl.manager-V1.0-java")
Ulya Trafimovichc9af5382020-05-29 15:35:06 +01001883 ctx.AddVariationDependencies(nil, usesLibTag, optionalUsesLibs...)
Colin Cross3245b2c2019-06-07 13:18:09 -07001884 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001885 }
1886}
1887
1888// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1889// build.
1890func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1891 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1892 return optionalUsesLibs
1893}
1894
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001895// usesLibraryPaths returns a map of module names of shared library dependencies to the paths
1896// to their dex jars on host and on device.
1897func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) dexpreopt.LibraryPaths {
1898 usesLibPaths := make(dexpreopt.LibraryPaths)
Colin Cross50ddcc42019-05-16 12:28:22 -07001899
1900 if !ctx.Config().UnbundledBuild() {
1901 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001902 dep := ctx.OtherModuleName(m)
Colin Cross50ddcc42019-05-16 12:28:22 -07001903 if lib, ok := m.(Dependency); ok {
Ulyana Trafimovich5539e7b2020-06-04 14:08:17 +00001904 if dexJar := lib.DexJarBuildPath(); dexJar != nil {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001905 usesLibPaths[dep] = &dexpreopt.LibraryPath{
1906 dexJar,
1907 // TODO(b/132357300): propagate actual install paths here.
1908 filepath.Join("/system/framework", dep+".jar"),
1909 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001910 } else {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001911 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must"+
1912 " produce a dex jar, does it have installable: true?", dep)
Colin Cross50ddcc42019-05-16 12:28:22 -07001913 }
1914 } else if ctx.Config().AllowMissingDependencies() {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001915 ctx.AddMissingDependencies([]string{dep})
Colin Cross50ddcc42019-05-16 12:28:22 -07001916 } else {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001917 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be "+
1918 "a java library", dep)
Colin Cross50ddcc42019-05-16 12:28:22 -07001919 }
1920 })
1921 }
1922
1923 return usesLibPaths
1924}
1925
1926// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1927// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1928// unconditionally in the future.
1929func (u *usesLibrary) enforceUsesLibraries() bool {
1930 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1931 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1932 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1933}
1934
1935// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1936// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1937func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1938 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1939
1940 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001941 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001942 Flag("--enforce-uses-libraries").
1943 Input(manifest).
1944 FlagWithOutput("-o ", outputFile)
1945
1946 for _, lib := range u.usesLibraryProperties.Uses_libs {
1947 cmd.FlagWithArg("--uses-library ", lib)
1948 }
1949
1950 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1951 cmd.FlagWithArg("--optional-uses-library ", lib)
1952 }
1953
1954 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1955
1956 return outputFile
1957}
1958
1959// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1960// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1961func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1962 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1963
1964 rule := android.NewRuleBuilder()
1965 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1966 rule.Command().
1967 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1968 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1969 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1970 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1971 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
1972
1973 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1974
1975 return outputFile
1976}