blob: e13009a4c0b426a6955713aa8d88df9e8920aff0 [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
Liz Kammercada8072020-07-28 15:47:38 -070081 installFile string
Jaewoong Jung8bec0262020-06-29 19:18:44 -070082 apkcertsFile android.ModuleOutPath
Sasha Smundaka7856c02020-04-23 09:49:59 -070083}
84
85func (as *AndroidAppSet) Name() string {
86 return as.prebuilt.Name(as.ModuleBase.Name())
87}
88
89func (as *AndroidAppSet) IsInstallable() bool {
90 return true
91}
92
93func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
94 return &as.prebuilt
95}
96
97func (as *AndroidAppSet) Privileged() bool {
98 return Bool(as.properties.Privileged)
99}
100
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700101func (as *AndroidAppSet) OutputFile() android.Path {
102 return as.packedOutput
103}
104
Liz Kammercada8072020-07-28 15:47:38 -0700105func (as *AndroidAppSet) InstallFile() string {
106 return as.installFile
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700107}
108
Colin Cross7e2b36c2020-07-09 19:05:35 -0700109func (as *AndroidAppSet) APKCertsFile() android.Path {
110 return as.apkcertsFile
111}
112
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700113var TargetCpuAbi = map[string]string{
Sasha Smundaka7856c02020-04-23 09:49:59 -0700114 "arm": "ARMEABI_V7A",
115 "arm64": "ARM64_V8A",
116 "x86": "X86",
117 "x86_64": "X86_64",
118}
119
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700120func SupportedAbis(ctx android.ModuleContext) []string {
Jaewoong Jung829b7132020-06-10 12:23:32 -0700121 abiName := func(targetIdx int, deviceArch string) string {
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700122 if abi, found := TargetCpuAbi[deviceArch]; found {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700123 return abi
124 }
Jaewoong Jung829b7132020-06-10 12:23:32 -0700125 ctx.ModuleErrorf("Target %d has invalid Arch: %s", targetIdx, deviceArch)
Sasha Smundaka7856c02020-04-23 09:49:59 -0700126 return "BAD_ABI"
127 }
128
Jaewoong Jung829b7132020-06-10 12:23:32 -0700129 var result []string
130 for i, target := range ctx.Config().Targets[android.Android] {
131 result = append(result, abiName(i, target.Arch.ArchType.String()))
Sasha Smundaka7856c02020-04-23 09:49:59 -0700132 }
133 return result
134}
135
136func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700137 as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip")
Jaewoong Jung8bec0262020-06-29 19:18:44 -0700138 as.apkcertsFile = android.PathForModuleOut(ctx, "apkcerts.txt")
Liz Kammercada8072020-07-28 15:47:38 -0700139 // We are assuming here that the install file in the APK
Sasha Smundaka7856c02020-04-23 09:49:59 -0700140 // set has `.apk` suffix. If it doesn't the build will fail.
141 // APK sets containing APEX files are handled elsewhere.
Liz Kammercada8072020-07-28 15:47:38 -0700142 as.installFile = as.BaseModuleName() + ".apk"
Sasha Smundaka7856c02020-04-23 09:49:59 -0700143 screenDensities := "all"
144 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
145 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
146 }
147 // TODO(asmundak): handle locales.
148 // TODO(asmundak): do we support device features
149 ctx.Build(pctx,
150 android.BuildParams{
Jaewoong Jung8bec0262020-06-29 19:18:44 -0700151 Rule: extractMatchingApks,
152 Description: "Extract APKs from APK set",
153 Output: as.packedOutput,
154 ImplicitOutput: as.apkcertsFile,
155 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
Sasha Smundaka7856c02020-04-23 09:49:59 -0700156 Args: map[string]string{
Jaewoong Jungfa00c062020-05-14 14:15:24 -0700157 "abis": strings.Join(SupportedAbis(ctx), ","),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700158 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
159 "screen-densities": screenDensities,
160 "sdk-version": ctx.Config().PlatformSdkVersion(),
Sasha Smundake88b4362020-06-22 16:53:33 -0700161 "stem": as.BaseModuleName(),
Jaewoong Jung8bec0262020-06-29 19:18:44 -0700162 "apkcerts": as.apkcertsFile.String(),
163 "partition": as.PartitionTag(ctx.DeviceConfig()),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700164 },
165 })
Sasha Smundaka7856c02020-04-23 09:49:59 -0700166}
167
168// android_app_set extracts a set of APKs based on the target device
169// configuration and installs this set as "split APKs".
Liz Kammercada8072020-07-28 15:47:38 -0700170// The extracted set always contains an APK whose name is
Sasha Smundak613cbb12020-06-05 10:27:23 -0700171// _module_name_.apk and every split APK matching target device.
172// The extraction of the density-specific splits depends on
173// PRODUCT_AAPT_PREBUILT_DPI variable. If present (its value should
174// be a list density names: LDPI, MDPI, HDPI, etc.), only listed
175// splits will be extracted. Otherwise all density-specific splits
176// will be extracted.
Sasha Smundaka7856c02020-04-23 09:49:59 -0700177func AndroidApkSetFactory() android.Module {
178 module := &AndroidAppSet{}
179 module.AddProperties(&module.properties)
180 InitJavaModule(module, android.DeviceSupported)
181 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
182 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000183}
184
Colin Cross30e076a2015-04-13 13:58:27 -0700185// AndroidManifest.xml merging
186// package splits
187
Colin Crossfabb6082018-02-20 17:22:23 -0800188type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700189 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700190 Additional_certificates []string
191
192 // If set, create package-export.apk, which other packages can
193 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800194 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700195
Colin Cross16056062017-12-13 22:46:28 -0800196 // Specifies that this app should be installed to the priv-app directory,
197 // where the system will grant it additional privileges not available to
198 // normal apps.
199 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700200
201 // list of resource labels to generate individual resource packages
202 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400203
204 // Names of modules to be overridden. Listed modules can only be other binaries
205 // (in Make or Soong).
206 // This does not completely prevent installation of the overridden binaries, but if both
207 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
208 // from PRODUCT_PACKAGES.
209 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700210
211 // list of native libraries that will be provided in or alongside the resulting jar
212 Jni_libs []string `android:"arch_variant"`
213
Colin Cross76583a42020-05-06 17:51:39 -0700214 // if true, use JNI libraries that link against platform APIs even if this module sets
Colin Crossee87c602020-02-19 16:57:15 -0800215 // sdk_version.
216 Jni_uses_platform_apis *bool
217
Colin Cross76583a42020-05-06 17:51:39 -0700218 // if true, use JNI libraries that link against SDK APIs even if this module does not set
219 // sdk_version.
220 Jni_uses_sdk_apis *bool
221
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700222 // STL library to use for JNI libraries.
223 Stl *string `android:"arch_variant"`
224
Colin Crosse4246ab2019-02-05 21:55:21 -0800225 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
226 // flag so that they are used from inside the APK at runtime. Defaults to true for android_test modules unless
Jiyong Park52cd06f2019-11-11 10:14:32 +0900227 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
228 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
229 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -0800230 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -0800231
232 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
233 // they are used from inside the APK at runtime.
234 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -0700235
236 // Forces native libraries to always be packaged into the APK,
237 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
238 // True for android_test* modules.
239 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700240
241 // If set, find and merge all NOTICE files that this module and its dependencies have and store
242 // it in the APK as an asset.
243 Embed_notices *bool
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700244
245 // cc.Coverage related properties
246 PreventInstall bool `blueprint:"mutated"`
247 HideFromMake bool `blueprint:"mutated"`
248 IsCoverageVariant bool `blueprint:"mutated"`
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100249
250 // Whether this app is considered mainline updatable or not. When set to true, this will enforce
Artur Satayevf40fc852020-04-16 13:43:02 +0100251 // additional rules to make sure an app can safely be updated. Default is false.
252 // Prefer using other specific properties if build behaviour must be changed; avoid using this
253 // flag for anything but neverallow rules (unless the behaviour change is invisible to owners).
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100254 Updatable *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700255}
256
Jaewoong Jung525443a2019-02-28 15:35:54 -0800257// android_app properties that can be overridden by override_android_app
258type overridableAppProperties struct {
259 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
260 // or an android_app_certificate module name in the form ":module".
261 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700262
Liz Kammer70dd74d2020-05-07 13:24:05 -0700263 // Name of the signing certificate lineage file.
264 Lineage *string
265
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700266 // the package name of this app. The package name in the manifest file is used if one was not given.
267 Package_name *string
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800268
269 // the logging parent of this app.
270 Logging_parent *string
Liz Kammer9f9fd022020-06-18 19:44:06 +0000271
272 // Whether to rename the package in resources to the override name rather than the base name. Defaults to true.
273 Rename_resources_package *bool
Jaewoong Jung525443a2019-02-28 15:35:54 -0800274}
275
Roshan Piusb8307962020-04-27 09:42:27 -0700276// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
277type OverridableRuntimeResourceOverlayProperties struct {
278 // the package name of this app. The package name in the manifest file is used if one was not given.
279 Package_name *string
280
281 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
282 Target_package_name *string
283}
284
Colin Cross30e076a2015-04-13 13:58:27 -0700285type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700286 Library
287 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800288 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700289
Colin Cross50ddcc42019-05-16 12:28:22 -0700290 usesLibrary usesLibrary
291
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900292 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700293
Colin Crossfabb6082018-02-20 17:22:23 -0800294 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700295
Jaewoong Jung525443a2019-02-28 15:35:54 -0800296 overridableAppProperties overridableAppProperties
297
Colin Cross403cc152020-07-06 14:15:24 -0700298 jniLibs []jniLib
299 installPathForJNISymbols android.Path
300 embeddedJniLibs bool
301 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700302
303 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800304
305 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
306 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800307
Colin Cross70dda7e2019-10-01 22:05:35 -0700308 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700309
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700310 onDeviceDir string
311
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800312 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700313
314 noticeOutputs android.NoticeOutputs
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900315
316 overriddenManifestPackageName string
Artur Satayev1111b842020-04-27 19:05:28 +0100317
318 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800319}
320
Martin Stjernholm6d415272020-01-31 17:10:36 +0000321func (a *AndroidApp) IsInstallable() bool {
322 return Bool(a.properties.Installable)
323}
324
Colin Cross89c31582018-04-30 15:55:11 -0700325func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
326 return nil
327}
328
Colin Cross66f78822018-05-02 12:58:28 -0700329func (a *AndroidApp) ExportedStaticPackages() android.Paths {
330 return nil
331}
332
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900333func (a *AndroidApp) OutputFile() android.Path {
334 return a.outputFile
335}
336
Colin Cross503c1d02020-01-28 14:00:53 -0800337func (a *AndroidApp) Certificate() Certificate {
338 return a.certificate
339}
340
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700341func (a *AndroidApp) JniCoverageOutputs() android.Paths {
342 return a.jniCoverageOutputs
343}
344
Colin Crossa97c5d32018-03-28 14:58:31 -0700345var _ AndroidLibraryDependency = (*AndroidApp)(nil)
346
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900347type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800348 Pem, Key android.Path
349 presigned bool
350}
351
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700352var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800353
354func (c Certificate) AndroidMkString() string {
355 if c.presigned {
356 return "PRESIGNED"
357 } else {
358 return c.Pem.String()
359 }
Colin Cross30e076a2015-04-13 13:58:27 -0700360}
361
Colin Cross46c9b8b2017-06-22 16:51:17 -0700362func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
363 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700364
Jiyong Park6a927c42020-01-21 02:03:43 +0900365 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700366 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
367 }
368
Paul Duffin250e6192019-06-07 10:44:37 +0100369 sdkDep := decodeSdkDep(ctx, sdkContext(a))
370 if sdkDep.hasFrameworkLibs() {
371 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700372 }
Colin Crossa4f08812018-10-02 22:03:40 -0700373
Colin Cross3c007702020-05-08 11:20:24 -0700374 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
375
376 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
377 ctx.PropertyErrorf("jni_uses_sdk_apis",
378 "can only be set for modules that do not set sdk_version")
379 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
380 ctx.PropertyErrorf("jni_uses_platform_apis",
381 "can only be set for modules that set sdk_version")
382 }
383
Peter Collingbournead84f972019-12-17 16:46:18 -0800384 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700385 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700386 variation := append(jniTarget.Variations(),
387 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossc511bc52020-04-07 16:50:32 +0000388
389 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
390 // unless jni_uses_platform_apis is set.
Colin Crossc2d24052020-05-13 11:05:02 -0700391 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
392 // have stable APIs through the VNDK.
393 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
394 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross76583a42020-05-06 17:51:39 -0700395 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Crossc511bc52020-04-07 16:50:32 +0000396 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
397 }
Colin Crossa4f08812018-10-02 22:03:40 -0700398 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
399 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700400
Paul Duffin250e6192019-06-07 10:44:37 +0100401 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700402}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700403
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700404func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800405 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700406 if cert != "" {
407 ctx.AddDependency(ctx.Module(), certificateTag, cert)
408 }
409
410 for _, cert := range a.appProperties.Additional_certificates {
411 cert = android.SrcIsModule(cert)
412 if cert != "" {
413 ctx.AddDependency(ctx.Module(), certificateTag, cert)
414 } else {
415 ctx.PropertyErrorf("additional_certificates",
416 `must be names of android_app_certificate modules in the form ":module"`)
417 }
418 }
Colin Cross30e076a2015-04-13 13:58:27 -0700419}
420
Jeongik Cha538c0d02019-07-11 15:54:27 +0900421func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
422 a.generateAndroidBuildActions(ctx)
423}
424
Colin Cross46c9b8b2017-06-22 16:51:17 -0700425func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100426 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700427 a.generateAndroidBuildActions(ctx)
428}
429
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100430func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev849f8442020-04-28 14:57:42 +0100431 if a.Updatable() {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100432 if !a.sdkVersion().stable() {
433 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
434 }
Artur Satayevf40fc852020-04-16 13:43:02 +0100435 if String(a.deviceProperties.Min_sdk_version) == "" {
436 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
437 }
Jooyung Han749dc692020-04-15 11:03:39 +0900438
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900439 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
440 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
Jooyung Han749dc692020-04-15 11:03:39 +0900441 android.CheckMinSdkVersion(a, ctx, int(minSdkVersion))
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900442 } else {
443 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
444 }
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100445 }
446
447 a.checkPlatformAPI(ctx)
448 a.checkSdkVersions(ctx)
449}
450
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900451// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
452// This check is enforced for "updatable" APKs (including APK-in-APEX).
453// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
454// because, sdk_version is overridden by min_sdk_version (if set as smaller)
455// and linkType is checked with dependencies so we can be sure that the whole dependency tree
456// will meet the requirements.
457func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
458 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
459 ctx.VisitDirectDeps(func(m android.Module) {
460 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
461 return
462 }
463 dep, _ := m.(*cc.Module)
Jooyung Han9d2c0f72020-05-20 17:12:13 +0900464 // The domain of cc.sdk_version is "current" and <number>
465 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
466 // properly regardless of sdk finalization.
467 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
468 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900469 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
470 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
471 return
472 }
473
474 })
475}
476
Sasha Smundak6ad77252019-05-01 13:16:22 -0700477// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800478// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700479func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900480 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800481 if err != nil {
482 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
483 }
484
Jiyong Park52cd06f2019-11-11 10:14:32 +0900485 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
486 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800487}
488
Colin Cross43f08db2018-11-12 10:13:39 -0800489// Returns whether this module should have the dex file stored uncompressed in the APK.
490func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800491 if Bool(a.appProperties.Use_embedded_dex) {
492 return true
493 }
494
Colin Cross53a87f52019-06-25 13:35:30 -0700495 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
496 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900497 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000498 return true
499 }
500
Colin Cross53a87f52019-06-25 13:35:30 -0700501 if ctx.Config().UnbundledBuild() {
502 return false
503 }
504
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700505 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700506}
507
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700508func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
509 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900510 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700511}
512
Liz Kammer9f9fd022020-06-18 19:44:06 +0000513func generateAaptRenamePackageFlags(packageName string, renameResourcesPackage bool) []string {
514 aaptFlags := []string{"--rename-manifest-package " + packageName}
515 if renameResourcesPackage {
516 // Required to rename the package name in the resources table.
517 aaptFlags = append(aaptFlags, "--rename-resources-package "+packageName)
518 }
519 return aaptFlags
520}
521
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900522func (a *AndroidApp) OverriddenManifestPackageName() string {
523 return a.overriddenManifestPackageName
524}
525
Liz Kammer9f9fd022020-06-18 19:44:06 +0000526func (a *AndroidApp) renameResourcesPackage() bool {
527 return proptools.BoolDefault(a.overridableAppProperties.Rename_resources_package, true)
528}
529
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800530func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000531 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
532
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700533 // Ask manifest_fixer to add or update the application element indicating this app has no code.
534 a.aapt.hasNoCode = !a.hasCode(ctx)
535
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800536 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800537
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800538 // Add TARGET_AAPT_CHARACTERISTICS values to AAPT link flags if they exist and --product flags were not provided.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800539 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700540 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800541 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700542 }
543
Dan Willemsen72be5902018-10-24 20:24:57 -0700544 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
545 // Product AAPT config
546 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800547 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700548 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700549
Dan Willemsen72be5902018-10-24 20:24:57 -0700550 // Product AAPT preferred config
551 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800552 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700553 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700554 }
555
Jiyong Park7f67f482019-01-05 12:57:48 +0900556 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700557 if overridden || a.overridableAppProperties.Package_name != nil {
558 // The product override variable has a priority over the package_name property.
559 if !overridden {
560 manifestPackageName = *a.overridableAppProperties.Package_name
561 }
Liz Kammer9f9fd022020-06-18 19:44:06 +0000562 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, a.renameResourcesPackage())...)
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900563 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900564 }
565
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800566 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
567
Colin Crosse560c4a2019-03-19 16:03:11 -0700568 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700569 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800570 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800571 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700572
Colin Cross46c9b8b2017-06-22 16:51:17 -0700573 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700574 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800575}
Colin Cross30e076a2015-04-13 13:58:27 -0700576
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800577func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700578 var staticLibProguardFlagFiles android.Paths
579 ctx.VisitDirectDeps(func(m android.Module) {
580 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
581 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
582 }
583 })
584
585 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
586
587 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
588 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800589}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800590
Colin Cross403cc152020-07-06 14:15:24 -0700591func (a *AndroidApp) installPath(ctx android.ModuleContext) android.InstallPath {
Colin Cross43f08db2018-11-12 10:13:39 -0800592 var installDir string
593 if ctx.ModuleName() == "framework-res" {
594 // framework-res.apk is installed as system/framework/framework-res.apk
595 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900596 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800597 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800598 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800599 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800600 }
Colin Cross403cc152020-07-06 14:15:24 -0700601
602 return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
603}
604
605func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
606 a.dexpreopter.installPath = a.installPath(ctx)
David Srbecky98c71222020-05-20 22:20:28 +0100607 if a.deviceProperties.Uncompress_dex == nil {
608 // If the value was not force-set by the user, use reasonable default based on the module.
609 a.deviceProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
610 }
611 a.dexpreopter.uncompressedDex = *a.deviceProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700612 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
613 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
614 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
615 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
616 a.dexpreopter.manifestFile = a.mergedManifestFile
617
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800618 if ctx.ModuleName() != "framework-res" {
619 a.Module.compile(ctx, a.aaptSrcJar)
620 }
Colin Cross30e076a2015-04-13 13:58:27 -0700621
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800622 return a.maybeStrippedDexJarFile
623}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800624
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800625func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700626 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700627 if len(jniLibs) > 0 {
Colin Cross403cc152020-07-06 14:15:24 -0700628 a.jniLibs = jniLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700629 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700630 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Colin Cross403cc152020-07-06 14:15:24 -0700631 a.installPathForJNISymbols = a.installPath(ctx).ToMakePath()
Sasha Smundak6ad77252019-05-01 13:16:22 -0700632 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700633 for _, jni := range jniLibs {
634 if jni.coverageFile.Valid() {
Jaewoong Jung46984ee2020-04-07 13:07:55 -0700635 // Only collect coverage for the first target arch if this is a multilib target.
636 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
637 // data file path collisions since the current coverage file path format doesn't contain
638 // arch-related strings. This is fine for now though; the code coverage team doesn't use
639 // multi-arch targets such as test_suite_* for coverage collections yet.
640 //
641 // Work with the team to come up with a new format that handles multilib modules properly
642 // and change this.
643 if len(ctx.Config().Targets[android.Android]) == 1 ||
644 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
645 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
646 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700647 }
648 }
Colin Cross403cc152020-07-06 14:15:24 -0700649 a.embeddedJniLibs = true
Colin Crossa4f08812018-10-02 22:03:40 -0700650 }
651 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800652 return jniJarFile
653}
Colin Crossa4f08812018-10-02 22:03:40 -0700654
Colin Cross403cc152020-07-06 14:15:24 -0700655func (a *AndroidApp) JNISymbolsInstalls(installPath string) android.RuleBuilderInstalls {
656 var jniSymbols android.RuleBuilderInstalls
657 for _, jniLib := range a.jniLibs {
658 if jniLib.unstrippedFile != nil {
659 jniSymbols = append(jniSymbols, android.RuleBuilderInstall{
660 From: jniLib.unstrippedFile,
661 To: filepath.Join(installPath, targetToJniDir(jniLib.target), jniLib.unstrippedFile.Base()),
662 })
663 }
664 }
665 return jniSymbols
666}
667
Jaewoong Jung0949f312019-09-11 10:25:18 -0700668func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700669 // Collect NOTICE files from all dependencies.
670 seenModules := make(map[android.Module]bool)
671 noticePathSet := make(map[android.Path]bool)
672
673 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
674 // Have we already seen this?
675 if _, ok := seenModules[child]; ok {
676 return false
677 }
678 seenModules[child] = true
679
680 // Skip host modules.
681 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
682 return false
683 }
684
Bob Badoura75b0572020-02-18 20:21:55 -0800685 paths := child.(android.Module).NoticeFiles()
686 if len(paths) > 0 {
687 for _, path := range paths {
688 noticePathSet[path] = true
689 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700690 }
691 return true
692 })
693
694 // If the app has one, add it too.
Bob Badoura75b0572020-02-18 20:21:55 -0800695 if len(a.NoticeFiles()) > 0 {
696 for _, path := range a.NoticeFiles() {
697 noticePathSet[path] = true
698 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700699 }
700
701 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700702 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700703 }
704 var noticePaths []android.Path
705 for path := range noticePathSet {
706 noticePaths = append(noticePaths, path)
707 }
708 sort.Slice(noticePaths, func(i, j int) bool {
709 return noticePaths[i].String() < noticePaths[j].String()
710 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700711
Jaewoong Jung0949f312019-09-11 10:25:18 -0700712 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700713}
714
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700715// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
716// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
717func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
718 if android.SrcIsModule(certPropValue) == "" {
719 var mainCert Certificate
720 if certPropValue != "" {
721 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
722 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800723 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
724 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700725 }
726 } else {
727 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800728 mainCert = Certificate{
729 Pem: pem,
730 Key: key,
731 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700732 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700733 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700734 }
735
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700736 if !m.Platform() {
737 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900738 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
739 if strings.HasPrefix(certPath, systemCertPath) {
740 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
Colin Cross440e0d02020-06-11 11:32:11 -0700741 allowed := ctx.Config().EnforceSystemCertificateAllowList()
Jeongik Chac9464142019-01-07 12:07:27 +0900742
Colin Cross440e0d02020-06-11 11:32:11 -0700743 if enforceSystemCert && !inList(m.Name(), allowed) {
Jeongik Chac9464142019-01-07 12:07:27 +0900744 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
745 }
746 }
747 }
748
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700749 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800750}
751
Jooyung Han39ee1192020-03-23 20:21:11 +0900752func (a *AndroidApp) InstallApkName() string {
753 return a.installApkName
754}
755
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800756func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700757 var apkDeps android.Paths
758
Jeongik Cha538c0d02019-07-11 15:54:27 +0900759 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
760 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
761
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800762 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800763 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800764
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700765 if ctx.ModuleName() == "framework-res" {
766 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700767 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900768 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700769 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
770 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800771 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700772 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700773 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700774 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700775 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700776
Jaewoong Jung0949f312019-09-11 10:25:18 -0700777 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700778 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
779 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
780 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700781
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800782 // Process all building blocks, from AAPT to certificates.
783 a.aaptBuildActions(ctx)
784
Colin Cross50ddcc42019-05-16 12:28:22 -0700785 if a.usesLibrary.enforceUsesLibraries() {
786 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
787 apkDeps = append(apkDeps, manifestCheckFile)
788 }
789
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800790 a.proguardBuildActions(ctx)
791
Colin Cross014489c2020-06-02 20:09:13 -0700792 a.linter.mergedManifest = a.aapt.mergedManifestFile
793 a.linter.manifest = a.aapt.manifestPath
794 a.linter.resources = a.aapt.resourceFiles
Colin Crossc0efd1d2020-07-03 11:56:24 -0700795 a.linter.buildModuleReportZip = ctx.Config().UnbundledBuildApps()
Colin Cross014489c2020-06-02 20:09:13 -0700796
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800797 dexJarFile := a.dexBuildActions(ctx)
798
Colin Crossc2d24052020-05-13 11:05:02 -0700799 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800800 jniJarFile := a.jniBuildActions(jniLibs, ctx)
801
802 if ctx.Failed() {
803 return
804 }
805
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700806 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
807 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800808
809 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800810 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700811 v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature)
812 var v4SignatureFile android.WritablePath = nil
813 if v4SigningRequested {
814 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig")
815 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700816 var lineageFile android.Path
817 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
818 lineageFile = android.PathForModuleSrc(ctx, lineage)
819 }
820 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800821 a.outputFile = packageFile
Songchun Fan17d69e32020-03-24 20:32:24 -0700822 if v4SigningRequested {
823 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
824 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800825
Colin Crosse560c4a2019-03-19 16:03:11 -0700826 for _, split := range a.aapt.splits {
827 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800828 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700829 if v4SigningRequested {
830 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig")
831 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700832 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700833 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
Songchun Fan17d69e32020-03-24 20:32:24 -0700834 if v4SigningRequested {
835 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
836 }
Colin Crosse560c4a2019-03-19 16:03:11 -0700837 }
838
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800839 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700840 bundleFile := android.PathForModuleOut(ctx, "base.zip")
841 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
842 a.bundleFile = bundleFile
843
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800844 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900845 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
846 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
847 for _, extra := range a.extraOutputFiles {
848 ctx.InstallFile(a.installDir, extra.Base(), extra)
849 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800850 }
Artur Satayev1111b842020-04-27 19:05:28 +0100851
852 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700853}
854
Colin Crossc2d24052020-05-13 11:05:02 -0700855type appDepsInterface interface {
856 sdkVersion() sdkSpec
857 minSdkVersion() sdkSpec
858 RequiresStableAPIs(ctx android.BaseModuleContext) bool
859}
860
861func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
862 shouldCollectRecursiveNativeDeps bool,
Colin Cross094cde42020-02-15 10:38:00 -0800863 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crossc2d24052020-05-13 11:05:02 -0700864
Colin Crossa4f08812018-10-02 22:03:40 -0700865 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900866 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800867 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700868
Colin Crossc2d24052020-05-13 11:05:02 -0700869 if checkNativeSdkVersion {
870 checkNativeSdkVersion = app.sdkVersion().specified() &&
871 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
872 }
873
Peter Collingbournead84f972019-12-17 16:46:18 -0800874 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700875 otherName := ctx.OtherModuleName(module)
876 tag := ctx.OtherModuleDependencyTag(module)
877
Peter Collingbournead84f972019-12-17 16:46:18 -0800878 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700879 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800880 if dep.IsNdk() || dep.IsStubs() {
881 return false
882 }
883
Colin Crossa4f08812018-10-02 22:03:40 -0700884 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800885 path := lib.Path()
886 if seenModulePaths[path.String()] {
887 return false
888 }
889 seenModulePaths[path.String()] = true
890
Colin Crossc2d24052020-05-13 11:05:02 -0700891 if checkNativeSdkVersion && dep.SdkVersion() == "" {
892 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
893 otherName)
Colin Cross094cde42020-02-15 10:38:00 -0800894 }
895
Colin Crossa4f08812018-10-02 22:03:40 -0700896 if lib.Valid() {
897 jniLibs = append(jniLibs, jniLib{
Colin Cross403cc152020-07-06 14:15:24 -0700898 name: ctx.OtherModuleName(module),
899 path: path,
900 target: module.Target(),
901 coverageFile: dep.CoverageOutputFile(),
902 unstrippedFile: dep.UnstrippedOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700903 })
904 } else {
905 ctx.ModuleErrorf("dependency %q missing output file", otherName)
906 }
907 } else {
908 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700909 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800910
911 return shouldCollectRecursiveNativeDeps
912 }
913
914 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700915 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900916 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700917 } else {
918 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
919 }
Colin Crossa4f08812018-10-02 22:03:40 -0700920 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800921
922 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700923 })
924
Colin Crossbd01e2a2018-10-04 15:21:03 -0700925 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700926}
927
Jooyung Han749dc692020-04-15 11:03:39 +0900928func (a *AndroidApp) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) {
Artur Satayev1111b842020-04-27 19:05:28 +0100929 ctx.WalkDeps(func(child, parent android.Module) bool {
930 isExternal := !a.DepIsInSameApex(ctx, child)
931 if am, ok := child.(android.ApexModule); ok {
Jooyung Han749dc692020-04-15 11:03:39 +0900932 if !do(ctx, parent, am, isExternal) {
933 return false
934 }
Artur Satayev1111b842020-04-27 19:05:28 +0100935 }
936 return !isExternal
937 })
938}
939
940func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
941 if ctx.Host() {
942 return
943 }
944
945 depsInfo := android.DepNameToDepInfoMap{}
Jooyung Han749dc692020-04-15 11:03:39 +0900946 a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
Artur Satayev1111b842020-04-27 19:05:28 +0100947 depName := to.Name()
948 if info, exist := depsInfo[depName]; exist {
949 info.From = append(info.From, from.Name())
950 info.IsExternal = info.IsExternal && externalDep
951 depsInfo[depName] = info
952 } else {
953 toMinSdkVersion := "(no version)"
954 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
955 if v := m.MinSdkVersion(); v != "" {
956 toMinSdkVersion = v
957 }
958 }
959 depsInfo[depName] = android.ApexModuleDepInfo{
960 To: depName,
961 From: []string{from.Name()},
962 IsExternal: externalDep,
963 MinSdkVersion: toMinSdkVersion,
964 }
965 }
Jooyung Han749dc692020-04-15 11:03:39 +0900966 return true
Artur Satayev1111b842020-04-27 19:05:28 +0100967 })
968
969 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
970}
971
Artur Satayev849f8442020-04-28 14:57:42 +0100972func (a *AndroidApp) Updatable() bool {
973 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
974}
975
Colin Cross0ea8ba82019-06-06 14:33:29 -0700976func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800977 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
978 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000979 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800980 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800981 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800982}
983
Jiyong Park0f80c182020-01-31 02:49:53 +0900984func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
985 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
986 return true
987 }
988 return a.Library.DepIsInSameApex(ctx, dep)
989}
990
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900991// For OutputFileProducer interface
992func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
993 switch tag {
994 case ".aapt.srcjar":
995 return []android.Path{a.aaptSrcJar}, nil
996 }
997 return a.Library.OutputFiles(tag)
998}
999
Jiyong Parkf7487312019-10-17 12:54:30 +09001000func (a *AndroidApp) Privileged() bool {
1001 return Bool(a.appProperties.Privileged)
1002}
1003
Jaewoong Jung87a33e72020-03-26 14:01:48 -07001004func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001005 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
Jaewoong Jung87a33e72020-03-26 14:01:48 -07001006}
1007
1008func (a *AndroidApp) PreventInstall() {
1009 a.appProperties.PreventInstall = true
1010}
1011
1012func (a *AndroidApp) HideFromMake() {
1013 a.appProperties.HideFromMake = true
1014}
1015
1016func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
1017 a.appProperties.IsCoverageVariant = coverage
1018}
1019
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -04001020func (a *AndroidApp) EnableCoverageIfNeeded() {}
1021
Jaewoong Jung87a33e72020-03-26 14:01:48 -07001022var _ cc.Coverage = (*AndroidApp)(nil)
1023
Colin Cross1b16b0e2019-02-12 14:41:32 -08001024// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -07001025func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -07001026 module := &AndroidApp{}
1027
Sasha Smundak2057f822019-04-16 17:16:58 -07001028 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross66dbc0b2017-12-28 12:23:20 -08001029 module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
1030
Colin Crossae5caf52018-05-22 11:11:52 -07001031 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001032 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -07001033
Colin Crossce6734e2020-06-15 16:09:53 -07001034 module.addHostAndDeviceProperties()
Colin Cross36242852017-06-23 15:06:31 -07001035 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -07001036 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001037 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001038 &module.overridableAppProperties,
1039 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -07001040
Colin Crossa4f08812018-10-02 22:03:40 -07001041 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1042 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001043 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +09001044 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -07001045
Colin Cross36242852017-06-23 15:06:31 -07001046 return module
Colin Cross30e076a2015-04-13 13:58:27 -07001047}
Colin Crossae5caf52018-05-22 11:11:52 -07001048
1049type appTestProperties struct {
Liz Kammer6b0c5522020-04-28 16:10:55 -07001050 // The name of the android_app module that the tests will run against.
Colin Crossae5caf52018-05-22 11:11:52 -07001051 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001052
1053 // if specified, the instrumentation target package name in the manifest is overwritten by it.
1054 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -07001055}
1056
1057type AndroidTest struct {
1058 AndroidApp
1059
1060 appTestProperties appTestProperties
1061
1062 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07001063
1064 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -07001065 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001066}
1067
Jaewoong Jung0949f312019-09-11 10:25:18 -07001068func (a *AndroidTest) InstallInTestcases() bool {
1069 return true
1070}
1071
Colin Crossae5caf52018-05-22 11:11:52 -07001072func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncylee5bcff5d2020-04-30 14:57:06 +08001073 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001074 if a.appTestProperties.Instrumentation_target_package != nil {
1075 a.additionalAaptFlags = append(a.additionalAaptFlags,
1076 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1077 } else if a.appTestProperties.Instrumentation_for != nil {
1078 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001079 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1080 if overridden {
1081 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1082 }
1083 }
Colin Crossae5caf52018-05-22 11:11:52 -07001084 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001085
easoncylee5bcff5d2020-04-30 14:57:06 +08001086 for _, module := range a.testProperties.Test_mainline_modules {
1087 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1088 }
1089
Jaewoong Jung39982342020-01-14 10:27:18 -08001090 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncylee5bcff5d2020-04-30 14:57:06 +08001091 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001092 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001093 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001094}
1095
Jaewoong Jung39982342020-01-14 10:27:18 -08001096func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1097 if testConfig == nil {
1098 return nil
1099 }
1100
1101 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1102 rule := android.NewRuleBuilder()
1103 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1104 fixNeeded := false
1105
1106 if ctx.ModuleName() != a.installApkName {
1107 fixNeeded = true
1108 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1109 }
1110
1111 if a.overridableAppProperties.Package_name != nil {
1112 fixNeeded = true
1113 command.FlagWithInput("--manifest ", a.manifestPath).
1114 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1115 }
1116
1117 if fixNeeded {
1118 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1119 return fixedConfig
1120 }
1121 return testConfig
1122}
1123
Colin Cross303e21f2018-08-07 16:49:25 -07001124func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001125 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001126}
1127
1128func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1129 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001130 if a.appTestProperties.Instrumentation_for != nil {
1131 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1132 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1133 // use instrumentationForTag instead of libTag.
1134 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1135 }
Colin Crossae5caf52018-05-22 11:11:52 -07001136}
1137
Colin Cross1b16b0e2019-02-12 14:41:32 -08001138// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1139// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001140func AndroidTestFactory() android.Module {
1141 module := &AndroidTest{}
1142
Sasha Smundak2057f822019-04-16 17:16:58 -07001143 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001144
1145 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001146 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001147 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001148 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001149 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001150 module.Module.linter.test = true
Colin Crossae5caf52018-05-22 11:11:52 -07001151
Colin Crossce6734e2020-06-15 16:09:53 -07001152 module.addHostAndDeviceProperties()
Colin Crossae5caf52018-05-22 11:11:52 -07001153 module.AddProperties(
Colin Crossae5caf52018-05-22 11:11:52 -07001154 &module.aaptProperties,
1155 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001156 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001157 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001158 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001159 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001160
Colin Crossa4f08812018-10-02 22:03:40 -07001161 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1162 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001163 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001164 return module
1165}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001166
Colin Cross252fc6f2018-10-04 15:22:03 -07001167type appTestHelperAppProperties struct {
1168 // list of compatibility suites (for example "cts", "vts") that the module should be
1169 // installed into.
1170 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001171
1172 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1173 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1174 // explicitly.
1175 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001176}
1177
1178type AndroidTestHelperApp struct {
1179 AndroidApp
1180
1181 appTestHelperAppProperties appTestHelperAppProperties
1182}
1183
Jaewoong Jung326a9412019-11-21 10:41:00 -08001184func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1185 return true
1186}
1187
Colin Cross1b16b0e2019-02-12 14:41:32 -08001188// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1189// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1190// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001191func AndroidTestHelperAppFactory() android.Module {
1192 module := &AndroidTestHelperApp{}
1193
Sasha Smundak2057f822019-04-16 17:16:58 -07001194 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001195
1196 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001197 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001198 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001199 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001200 module.Module.linter.test = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001201
Colin Crossce6734e2020-06-15 16:09:53 -07001202 module.addHostAndDeviceProperties()
Colin Cross252fc6f2018-10-04 15:22:03 -07001203 module.AddProperties(
Colin Cross252fc6f2018-10-04 15:22:03 -07001204 &module.aaptProperties,
1205 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001206 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001207 &module.overridableAppProperties,
1208 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001209
1210 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1211 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001212 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001213 return module
1214}
1215
Colin Crossbd01e2a2018-10-04 15:21:03 -07001216type AndroidAppCertificate struct {
1217 android.ModuleBase
1218 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001219 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001220}
1221
1222type AndroidAppCertificateProperties struct {
1223 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1224 Certificate *string
1225}
1226
Colin Cross1b16b0e2019-02-12 14:41:32 -08001227// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1228// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001229func AndroidAppCertificateFactory() android.Module {
1230 module := &AndroidAppCertificate{}
1231 module.AddProperties(&module.properties)
1232 android.InitAndroidModule(module)
1233 return module
1234}
1235
Colin Crossbd01e2a2018-10-04 15:21:03 -07001236func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1237 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001238 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001239 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1240 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001241 }
1242}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001243
1244type OverrideAndroidApp struct {
1245 android.ModuleBase
1246 android.OverrideModuleBase
1247}
1248
Sasha Smundak613cbb12020-06-05 10:27:23 -07001249func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -08001250 // All the overrides happen in the base module.
1251 // TODO(jungjw): Check the base module type.
1252}
1253
1254// override_android_app is used to create an android_app module based on another android_app by overriding
1255// some of its properties.
1256func OverrideAndroidAppModuleFactory() android.Module {
1257 m := &OverrideAndroidApp{}
1258 m.AddProperties(&overridableAppProperties{})
1259
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001260 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001261 android.InitOverrideModule(m)
1262 return m
1263}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001264
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001265type OverrideAndroidTest struct {
1266 android.ModuleBase
1267 android.OverrideModuleBase
1268}
1269
Sasha Smundak613cbb12020-06-05 10:27:23 -07001270func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001271 // All the overrides happen in the base module.
1272 // TODO(jungjw): Check the base module type.
1273}
1274
1275// override_android_test is used to create an android_app module based on another android_test by overriding
1276// some of its properties.
1277func OverrideAndroidTestModuleFactory() android.Module {
1278 m := &OverrideAndroidTest{}
1279 m.AddProperties(&overridableAppProperties{})
1280 m.AddProperties(&appTestProperties{})
1281
1282 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1283 android.InitOverrideModule(m)
1284 return m
1285}
1286
Roshan Piusb8307962020-04-27 09:42:27 -07001287type OverrideRuntimeResourceOverlay struct {
1288 android.ModuleBase
1289 android.OverrideModuleBase
1290}
1291
Sasha Smundak613cbb12020-06-05 10:27:23 -07001292func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) {
Roshan Piusb8307962020-04-27 09:42:27 -07001293 // All the overrides happen in the base module.
1294 // TODO(jungjw): Check the base module type.
1295}
1296
1297// override_runtime_resource_overlay is used to create a module based on another
1298// runtime_resource_overlay module by overriding some of its properties.
1299func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1300 m := &OverrideRuntimeResourceOverlay{}
1301 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1302
1303 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1304 android.InitOverrideModule(m)
1305 return m
1306}
1307
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001308type AndroidAppImport struct {
1309 android.ModuleBase
1310 android.DefaultableModuleBase
Jiyong Park592a6a42020-04-21 22:34:28 +09001311 android.ApexModuleBase
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001312 prebuilt android.Prebuilt
1313
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001314 properties AndroidAppImportProperties
1315 dpiVariants interface{}
1316 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001317
1318 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001319 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001320
1321 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001322
1323 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001324
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001325 preprocessed bool
1326
Colin Cross70dda7e2019-10-01 22:05:35 -07001327 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001328}
1329
1330type AndroidAppImportProperties struct {
1331 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001332 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001333
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001334 // The name of a certificate in the default certificate directory or an android_app_certificate
1335 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001336 Certificate *string
1337
1338 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1339 // be set for presigned modules.
1340 Presigned *bool
1341
Liz Kammer2bc57f62020-05-13 15:49:21 -07001342 // Name of the signing certificate lineage file.
1343 Lineage *string
1344
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001345 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1346 // need to either specify a specific certificate or be presigned.
1347 Default_dev_cert *bool
1348
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001349 // Specifies that this app should be installed to the priv-app directory,
1350 // where the system will grant it additional privileges not available to
1351 // normal apps.
1352 Privileged *bool
1353
1354 // Names of modules to be overridden. Listed modules can only be other binaries
1355 // (in Make or Soong).
1356 // This does not completely prevent installation of the overridden binaries, but if both
1357 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1358 // from PRODUCT_PACKAGES.
1359 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001360
1361 // Optional name for the installed app. If unspecified, it is derived from the module name.
1362 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001363}
1364
Martin Stjernholm6d415272020-01-31 17:10:36 +00001365func (a *AndroidAppImport) IsInstallable() bool {
1366 return true
1367}
1368
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001369// Updates properties with variant-specific values.
1370func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001371 config := ctx.Config()
1372
1373 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1374 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1375 // overwrites everything else.
1376 // TODO(jungjw): Can we optimize this by making it priority order?
1377 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001378 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001379 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001380 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001381 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001382 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001383
1384 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1385 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1386 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001387}
1388
Colin Cross1184b642019-12-30 18:43:07 -08001389func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001390 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001391 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1392 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001393 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001394 }
1395
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001396 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1397 if err != nil {
1398 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1399 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1400 } else {
1401 panic(err)
1402 }
1403 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001404}
1405
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001406func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1407 cert := android.SrcIsModule(String(a.properties.Certificate))
1408 if cert != "" {
1409 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1410 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001411
Paul Duffin250e6192019-06-07 10:44:37 +01001412 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001413}
1414
1415func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1416 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001417 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1418 // with them may invalidate pre-existing signature data.
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001419 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001420 ctx.Build(pctx, android.BuildParams{
1421 Rule: android.Cp,
1422 Output: outputPath,
1423 Input: inputPath,
1424 })
1425 return
1426 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001427 rule := android.NewRuleBuilder()
1428 rule.Command().
1429 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001430 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001431 FlagWithInput("-i ", inputPath).
1432 FlagWithOutput("-o ", outputPath).
1433 FlagWithArg("-0 ", "'lib/**/*.so'").
1434 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1435 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1436}
1437
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001438// Returns whether this module should have the dex file stored uncompressed in the APK.
1439func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001440 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001441 return false
1442 }
1443
1444 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001445 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001446 return true
1447 }
1448
1449 return shouldUncompressDex(ctx, &a.dexpreopter)
1450}
1451
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001452func (a *AndroidAppImport) uncompressDex(
1453 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1454 rule := android.NewRuleBuilder()
1455 rule.Command().
1456 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001457 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001458 FlagWithInput("-i ", inputPath).
1459 FlagWithOutput("-o ", outputPath).
1460 FlagWithArg("-0 ", "'classes*.dex'").
1461 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1462 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1463}
1464
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001465func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001466 a.generateAndroidBuildActions(ctx)
1467}
1468
Jooyung Han39ee1192020-03-23 20:21:11 +09001469func (a *AndroidAppImport) InstallApkName() string {
1470 return a.BaseModuleName()
1471}
1472
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001473func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001474 numCertPropsSet := 0
1475 if String(a.properties.Certificate) != "" {
1476 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001477 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001478 if Bool(a.properties.Presigned) {
1479 numCertPropsSet++
1480 }
1481 if Bool(a.properties.Default_dev_cert) {
1482 numCertPropsSet++
1483 }
1484 if numCertPropsSet != 1 {
1485 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001486 }
1487
Colin Crossc2d24052020-05-13 11:05:02 -07001488 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001489
1490 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001491 // TODO: LOCAL_PACKAGE_SPLITS
1492
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001493 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001494
1495 if a.usesLibrary.enforceUsesLibraries() {
1496 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1497 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001498
1499 // TODO: Install or embed JNI libraries
1500
1501 // Uncompress JNI libraries in the apk
1502 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1503 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1504
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001505 var installDir android.InstallPath
1506 if Bool(a.properties.Privileged) {
1507 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001508 } else if ctx.InstallInTestcases() {
1509 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001510 } else {
1511 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1512 }
1513
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001514 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001515 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001516 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001517
1518 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1519 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1520 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1521 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1522
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001523 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001524 if a.dexpreopter.uncompressedDex {
1525 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1526 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1527 dexOutput = dexUncompressed
1528 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001529
Jooyung Han39ee1192020-03-23 20:21:11 +09001530 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1531
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001532 // TODO: Handle EXTERNAL
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001533
1534 // Sign or align the package if package has not been preprocessed
1535 if a.preprocessed {
1536 a.outputFile = srcApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001537 a.certificate = PresignedCertificate
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001538 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001539 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1540 // Which makes processMainCert's behavior for the empty cert string WAI.
1541 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001542 if len(certificates) != 1 {
1543 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1544 }
Colin Cross503c1d02020-01-28 14:00:53 -08001545 a.certificate = certificates[0]
Jooyung Han39ee1192020-03-23 20:21:11 +09001546 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer2bc57f62020-05-13 15:49:21 -07001547 var lineageFile android.Path
1548 if lineage := String(a.properties.Lineage); lineage != "" {
1549 lineageFile = android.PathForModuleSrc(ctx, lineage)
1550 }
1551 SignAppPackage(ctx, signed, dexOutput, certificates, nil, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001552 a.outputFile = signed
1553 } else {
Jooyung Han39ee1192020-03-23 20:21:11 +09001554 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001555 TransformZipAlign(ctx, alignedApk, dexOutput)
1556 a.outputFile = alignedApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001557 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001558 }
1559
1560 // TODO: Optionally compress the output apk.
1561
Jiyong Park592a6a42020-04-21 22:34:28 +09001562 if a.IsForPlatform() {
1563 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
1564 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001565
1566 // TODO: androidmk converter jni libs
1567}
1568
1569func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1570 return &a.prebuilt
1571}
1572
1573func (a *AndroidAppImport) Name() string {
1574 return a.prebuilt.Name(a.ModuleBase.Name())
1575}
1576
Dario Frenicde2a032019-10-27 00:29:22 +01001577func (a *AndroidAppImport) OutputFile() android.Path {
1578 return a.outputFile
1579}
1580
Jiyong Park618922e2020-01-08 13:35:43 +09001581func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1582 return nil
1583}
1584
Colin Cross503c1d02020-01-28 14:00:53 -08001585func (a *AndroidAppImport) Certificate() Certificate {
1586 return a.certificate
1587}
1588
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001589var dpiVariantGroupType reflect.Type
1590var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001591
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001592func initAndroidAppImportVariantGroupTypes() {
1593 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1594
1595 archNames := make([]string, len(android.ArchTypeList()))
1596 for i, archType := range android.ArchTypeList() {
1597 archNames[i] = archType.Name
1598 }
1599 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1600}
1601
1602// Populates all variant struct properties at creation time.
1603func (a *AndroidAppImport) populateAllVariantStructs() {
1604 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1605 a.AddProperties(a.dpiVariants)
1606
1607 a.archVariants = reflect.New(archVariantGroupType).Interface()
1608 a.AddProperties(a.archVariants)
1609}
1610
Jiyong Parkf7487312019-10-17 12:54:30 +09001611func (a *AndroidAppImport) Privileged() bool {
1612 return Bool(a.properties.Privileged)
1613}
1614
Sasha Smundak613cbb12020-06-05 10:27:23 -07001615func (a *AndroidAppImport) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool {
Jiyong Park592a6a42020-04-21 22:34:28 +09001616 // android_app_import might have extra dependencies via uses_libs property.
1617 // Don't track the dependency as we don't automatically add those libraries
1618 // to the classpath. It should be explicitly added to java_libs property of APEX
1619 return false
1620}
1621
Colin Crossc2d24052020-05-13 11:05:02 -07001622func (a *AndroidAppImport) sdkVersion() sdkSpec {
1623 return sdkSpecFrom("")
1624}
1625
1626func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1627 return sdkSpecFrom("")
1628}
1629
Jooyung Han749dc692020-04-15 11:03:39 +09001630func (j *AndroidAppImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion int) error {
1631 // Do not check for prebuilts against the min_sdk_version of enclosing APEX
1632 return nil
1633}
1634
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001635func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1636 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1637
1638 variantFields := make([]reflect.StructField, len(variants))
1639 for i, variant := range variants {
1640 variantFields[i] = reflect.StructField{
1641 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001642 Type: props,
1643 }
1644 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001645
1646 variantGroupStruct := reflect.StructOf(variantFields)
1647 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001648 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001649 Name: variantGroupName,
1650 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001651 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001652 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001653}
1654
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001655// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001656// DPI-specific apk source files can be specified using dpi_variants. Example:
1657//
1658// android_app_import {
1659// name: "example_import",
1660// apk: "prebuilts/example.apk",
1661// dpi_variants: {
1662// mdpi: {
1663// apk: "prebuilts/example_mdpi.apk",
1664// },
1665// xhdpi: {
1666// apk: "prebuilts/example_xhdpi.apk",
1667// },
1668// },
1669// certificate: "PRESIGNED",
1670// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001671func AndroidAppImportFactory() android.Module {
1672 module := &AndroidAppImport{}
1673 module.AddProperties(&module.properties)
1674 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001675 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001676 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001677 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001678 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001679 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001680
Jiyong Park592a6a42020-04-21 22:34:28 +09001681 android.InitApexModule(module)
Jaewoong Jung6abfbf72020-05-26 20:10:08 -07001682 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1683 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001684 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001685
1686 return module
1687}
Colin Cross50ddcc42019-05-16 12:28:22 -07001688
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001689type androidTestImportProperties struct {
1690 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1691 Preprocessed *bool
1692}
1693
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001694type AndroidTestImport struct {
1695 AndroidAppImport
1696
1697 testProperties testProperties
1698
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001699 testImportProperties androidTestImportProperties
1700
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001701 data android.Paths
1702}
1703
1704func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001705 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1706
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001707 a.generateAndroidBuildActions(ctx)
1708
1709 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1710}
1711
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001712func (a *AndroidTestImport) InstallInTestcases() bool {
1713 return true
1714}
1715
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001716// android_test_import imports a prebuilt test apk with additional processing specified in the
1717// module. DPI or arch variant configurations can be made as with android_app_import.
1718func AndroidTestImportFactory() android.Module {
1719 module := &AndroidTestImport{}
1720 module.AddProperties(&module.properties)
1721 module.AddProperties(&module.dexpreoptProperties)
1722 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1723 module.AddProperties(&module.testProperties)
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001724 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001725 module.populateAllVariantStructs()
1726 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1727 module.processVariants(ctx)
1728 })
1729
Colin Crossc80828d2020-05-06 22:29:10 -07001730 module.dexpreopter.isTest = true
1731
Jiyong Park592a6a42020-04-21 22:34:28 +09001732 android.InitApexModule(module)
Jaewoong Jung243688e2020-05-01 15:50:08 -07001733 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1734 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001735 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1736
1737 return module
1738}
1739
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001740type RuntimeResourceOverlay struct {
1741 android.ModuleBase
1742 android.DefaultableModuleBase
Roshan Piusb8307962020-04-27 09:42:27 -07001743 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001744 aapt
1745
Roshan Piusb8307962020-04-27 09:42:27 -07001746 properties RuntimeResourceOverlayProperties
1747 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001748
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001749 certificate Certificate
1750
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001751 outputFile android.Path
1752 installDir android.InstallPath
1753}
1754
1755type RuntimeResourceOverlayProperties struct {
1756 // the name of a certificate in the default certificate directory or an android_app_certificate
1757 // module name in the form ":module".
1758 Certificate *string
1759
Liz Kammer7fe241f2020-05-19 16:15:25 -07001760 // Name of the signing certificate lineage file.
1761 Lineage *string
1762
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001763 // optional theme name. If specified, the overlay package will be applied
1764 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1765 Theme *string
1766
1767 // if not blank, set to the version of the sdk to compile against.
1768 // Defaults to compiling against the current platform.
1769 Sdk_version *string
1770
1771 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1772 // Defaults to sdk_version if not set.
1773 Min_sdk_version *string
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001774
1775 // list of android_library modules whose resources are extracted and linked against statically
1776 Static_libs []string
1777
1778 // list of android_app modules whose resources are extracted and linked against
1779 Resource_libs []string
Jaewoong Jungad0177b2020-04-24 15:22:40 -07001780
1781 // Names of modules to be overridden. Listed modules can only be other overlays
1782 // (in Make or Soong).
1783 // This does not completely prevent installation of the overridden overlays, but if both
1784 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1785 // from PRODUCT_PACKAGES.
1786 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001787}
1788
Jiyong Park69aeba92020-04-24 21:16:36 +09001789// RuntimeResourceOverlayModule interface is used by the apex package to gather information from
1790// a RuntimeResourceOverlay module.
1791type RuntimeResourceOverlayModule interface {
1792 android.Module
1793 OutputFile() android.Path
1794 Certificate() Certificate
1795 Theme() string
1796}
1797
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001798func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1799 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1800 if sdkDep.hasFrameworkLibs() {
1801 r.aapt.deps(ctx, sdkDep)
1802 }
1803
1804 cert := android.SrcIsModule(String(r.properties.Certificate))
1805 if cert != "" {
1806 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1807 }
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001808
1809 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1810 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001811}
1812
1813func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1814 // Compile and link resources
1815 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001816 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Piusb8307962020-04-27 09:42:27 -07001817 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1818 // Allow the override of "package name" and "overlay target package name"
1819 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1820 if overridden || r.overridableProperties.Package_name != nil {
1821 // The product override variable has a priority over the package_name property.
1822 if !overridden {
1823 manifestPackageName = *r.overridableProperties.Package_name
1824 }
Liz Kammer9f9fd022020-06-18 19:44:06 +00001825 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, false)...)
Roshan Piusb8307962020-04-27 09:42:27 -07001826 }
1827 if r.overridableProperties.Target_package_name != nil {
1828 aaptLinkFlags = append(aaptLinkFlags,
1829 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1830 }
1831 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001832
1833 // Sign the built package
Colin Crossc2d24052020-05-13 11:05:02 -07001834 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001835 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1836 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer7fe241f2020-05-19 16:15:25 -07001837 var lineageFile android.Path
1838 if lineage := String(r.properties.Lineage); lineage != "" {
1839 lineageFile = android.PathForModuleSrc(ctx, lineage)
1840 }
1841 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001842 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001843
1844 r.outputFile = signed
1845 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1846 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1847}
1848
Jiyong Park6a927c42020-01-21 02:03:43 +09001849func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1850 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001851}
1852
1853func (r *RuntimeResourceOverlay) systemModules() string {
1854 return ""
1855}
1856
Jiyong Park6a927c42020-01-21 02:03:43 +09001857func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001858 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001859 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001860 }
1861 return r.sdkVersion()
1862}
1863
Jiyong Park6a927c42020-01-21 02:03:43 +09001864func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001865 return r.sdkVersion()
1866}
1867
Jiyong Park69aeba92020-04-24 21:16:36 +09001868func (r *RuntimeResourceOverlay) Certificate() Certificate {
1869 return r.certificate
1870}
1871
1872func (r *RuntimeResourceOverlay) OutputFile() android.Path {
1873 return r.outputFile
1874}
1875
1876func (r *RuntimeResourceOverlay) Theme() string {
1877 return String(r.properties.Theme)
1878}
1879
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001880// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1881// system resources at run time.
1882func RuntimeResourceOverlayFactory() android.Module {
1883 module := &RuntimeResourceOverlay{}
1884 module.AddProperties(
1885 &module.properties,
Roshan Piusb8307962020-04-27 09:42:27 -07001886 &module.aaptProperties,
1887 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001888
Roshan Piusb8307962020-04-27 09:42:27 -07001889 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1890 android.InitDefaultableModule(module)
1891 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001892 return module
1893}
1894
Colin Cross50ddcc42019-05-16 12:28:22 -07001895type UsesLibraryProperties struct {
1896 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1897 Uses_libs []string
1898
1899 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1900 // required=false.
1901 Optional_uses_libs []string
1902
1903 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1904 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1905 Enforce_uses_libs *bool
1906}
1907
1908// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1909// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1910// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1911// with knowledge of their shared libraries.
1912type usesLibrary struct {
1913 usesLibraryProperties UsesLibraryProperties
1914}
1915
Paul Duffin250e6192019-06-07 10:44:37 +01001916func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001917 if !ctx.Config().UnbundledBuild() {
1918 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1919 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001920 // Only add these extra dependencies if the module depends on framework libs. This avoids
1921 // creating a cyclic dependency:
1922 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1923 if hasFrameworkLibs {
Ulya Trafimovich5f364b62020-06-30 12:39:01 +01001924 // Dexpreopt needs paths to the dex jars of these libraries in order to construct
1925 // class loader context for dex2oat. Add them as a dependency with a special tag.
Colin Cross3245b2c2019-06-07 13:18:09 -07001926 ctx.AddVariationDependencies(nil, usesLibTag,
1927 "org.apache.http.legacy",
1928 "android.hidl.base-V1.0-java",
1929 "android.hidl.manager-V1.0-java")
Ulya Trafimovichc9af5382020-05-29 15:35:06 +01001930 ctx.AddVariationDependencies(nil, usesLibTag, optionalUsesLibs...)
Colin Cross3245b2c2019-06-07 13:18:09 -07001931 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001932 }
1933}
1934
1935// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1936// build.
1937func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1938 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1939 return optionalUsesLibs
1940}
1941
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001942// usesLibraryPaths returns a map of module names of shared library dependencies to the paths
1943// to their dex jars on host and on device.
1944func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) dexpreopt.LibraryPaths {
1945 usesLibPaths := make(dexpreopt.LibraryPaths)
Colin Cross50ddcc42019-05-16 12:28:22 -07001946
1947 if !ctx.Config().UnbundledBuild() {
1948 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001949 dep := ctx.OtherModuleName(m)
Colin Cross50ddcc42019-05-16 12:28:22 -07001950 if lib, ok := m.(Dependency); ok {
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001951 buildPath := lib.DexJarBuildPath()
1952 if buildPath == nil {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001953 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must"+
1954 " produce a dex jar, does it have installable: true?", dep)
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001955 return
Colin Cross50ddcc42019-05-16 12:28:22 -07001956 }
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001957
1958 var devicePath string
1959 installPath := lib.DexJarInstallPath()
1960 if installPath == nil {
1961 devicePath = filepath.Join("/system/framework", dep+".jar")
1962 } else {
1963 devicePath = android.InstallPathToOnDevicePath(ctx, installPath.(android.InstallPath))
1964 }
1965
1966 usesLibPaths[dep] = &dexpreopt.LibraryPath{buildPath, devicePath}
Colin Cross50ddcc42019-05-16 12:28:22 -07001967 } else if ctx.Config().AllowMissingDependencies() {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001968 ctx.AddMissingDependencies([]string{dep})
Colin Cross50ddcc42019-05-16 12:28:22 -07001969 } else {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001970 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be "+
1971 "a java library", dep)
Colin Cross50ddcc42019-05-16 12:28:22 -07001972 }
1973 })
1974 }
1975
1976 return usesLibPaths
1977}
1978
1979// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1980// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1981// unconditionally in the future.
1982func (u *usesLibrary) enforceUsesLibraries() bool {
1983 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1984 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1985 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1986}
1987
1988// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1989// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1990func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1991 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1992
1993 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001994 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001995 Flag("--enforce-uses-libraries").
1996 Input(manifest).
1997 FlagWithOutput("-o ", outputFile)
1998
1999 for _, lib := range u.usesLibraryProperties.Uses_libs {
2000 cmd.FlagWithArg("--uses-library ", lib)
2001 }
2002
2003 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
2004 cmd.FlagWithArg("--optional-uses-library ", lib)
2005 }
2006
2007 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
2008
2009 return outputFile
2010}
2011
2012// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
2013// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
2014func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
2015 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
2016
2017 rule := android.NewRuleBuilder()
2018 aapt := ctx.Config().HostToolPath(ctx, "aapt")
2019 rule.Command().
2020 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
2021 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
2022 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
2023 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
2024 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
2025
2026 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
2027
2028 return outputFile
2029}