blob: 517ffbf2d6b8bb3bcebf1008e76624ebd0a52639 [file] [log] [blame]
Colin Cross30e076a2015-04-13 13:58:27 -07001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package java
16
17// This file contains the module types for compiling Android apps.
18
19import (
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070020 "path/filepath"
21 "reflect"
Jaewoong Jung5b425e22019-06-17 17:40:56 -070022 "sort"
Sasha Smundaka7856c02020-04-23 09:49:59 -070023 "strconv"
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070024 "strings"
Colin Cross30e076a2015-04-13 13:58:27 -070025
Colin Cross50ddcc42019-05-16 12:28:22 -070026 "github.com/google/blueprint"
27 "github.com/google/blueprint/proptools"
28
Colin Cross635c3b02016-05-18 15:37:25 -070029 "android/soong/android"
Colin Crossa4f08812018-10-02 22:03:40 -070030 "android/soong/cc"
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +010031 "android/soong/dexpreopt"
Colin Cross303e21f2018-08-07 16:49:25 -070032 "android/soong/tradefed"
Colin Cross30e076a2015-04-13 13:58:27 -070033)
34
Jaewoong Jung3e18b192019-06-11 12:25:34 -070035var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"}
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070036
Colin Cross3bc7ffa2017-11-22 16:19:37 -080037func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000038 RegisterAppBuildComponents(android.InitRegistrationContext)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -070039
40 initAndroidAppImportVariantGroupTypes()
Colin Cross3bc7ffa2017-11-22 16:19:37 -080041}
42
Paul Duffinf9b1da02019-12-18 19:51:55 +000043func RegisterAppBuildComponents(ctx android.RegistrationContext) {
44 ctx.RegisterModuleType("android_app", AndroidAppFactory)
45 ctx.RegisterModuleType("android_test", AndroidTestFactory)
46 ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
47 ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
48 ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
49 ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory)
Roshan Piusb8307962020-04-27 09:42:27 -070050 ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000051 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
52 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080053 ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory)
Sasha Smundaka7856c02020-04-23 09:49:59 -070054 ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory)
55}
56
57type AndroidAppSetProperties struct {
58 // APK Set path
59 Set *string
60
61 // Specifies that this app should be installed to the priv-app directory,
62 // where the system will grant it additional privileges not available to
63 // normal apps.
64 Privileged *bool
65
66 // APKs in this set use prerelease SDK version
67 Prerelease *bool
68
69 // Names of modules to be overridden. Listed modules can only be other apps
70 // (in Make or Soong).
71 Overrides []string
72}
73
74type AndroidAppSet struct {
75 android.ModuleBase
76 android.DefaultableModuleBase
77 prebuilt android.Prebuilt
78
79 properties AndroidAppSetProperties
80 packedOutput android.WritablePath
81 masterFile string
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
105func (as *AndroidAppSet) MasterFile() string {
106 return as.masterFile
107}
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")
Sasha Smundaka7856c02020-04-23 09:49:59 -0700139 // We are assuming here that the master file in the APK
140 // set has `.apk` suffix. If it doesn't the build will fail.
141 // APK sets containing APEX files are handled elsewhere.
Sasha Smundak57f0ee12020-06-15 18:25:27 -0700142 as.masterFile = 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".
Sasha Smundak613cbb12020-06-05 10:27:23 -0700170// The extracted set always contains 'master' APK whose name is
171// _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
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700298 installJniLibs []jniLib
299 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700300
301 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800302
303 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
304 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800305
Colin Cross70dda7e2019-10-01 22:05:35 -0700306 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700307
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700308 onDeviceDir string
309
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800310 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700311
312 noticeOutputs android.NoticeOutputs
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900313
314 overriddenManifestPackageName string
Artur Satayev1111b842020-04-27 19:05:28 +0100315
316 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800317}
318
Martin Stjernholm6d415272020-01-31 17:10:36 +0000319func (a *AndroidApp) IsInstallable() bool {
320 return Bool(a.properties.Installable)
321}
322
Colin Cross89c31582018-04-30 15:55:11 -0700323func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
324 return nil
325}
326
Colin Cross66f78822018-05-02 12:58:28 -0700327func (a *AndroidApp) ExportedStaticPackages() android.Paths {
328 return nil
329}
330
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900331func (a *AndroidApp) OutputFile() android.Path {
332 return a.outputFile
333}
334
Colin Cross503c1d02020-01-28 14:00:53 -0800335func (a *AndroidApp) Certificate() Certificate {
336 return a.certificate
337}
338
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700339func (a *AndroidApp) JniCoverageOutputs() android.Paths {
340 return a.jniCoverageOutputs
341}
342
Colin Crossa97c5d32018-03-28 14:58:31 -0700343var _ AndroidLibraryDependency = (*AndroidApp)(nil)
344
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900345type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800346 Pem, Key android.Path
347 presigned bool
348}
349
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700350var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800351
352func (c Certificate) AndroidMkString() string {
353 if c.presigned {
354 return "PRESIGNED"
355 } else {
356 return c.Pem.String()
357 }
Colin Cross30e076a2015-04-13 13:58:27 -0700358}
359
Colin Cross46c9b8b2017-06-22 16:51:17 -0700360func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
361 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700362
Jiyong Park6a927c42020-01-21 02:03:43 +0900363 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700364 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
365 }
366
Paul Duffin250e6192019-06-07 10:44:37 +0100367 sdkDep := decodeSdkDep(ctx, sdkContext(a))
368 if sdkDep.hasFrameworkLibs() {
369 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700370 }
Colin Crossa4f08812018-10-02 22:03:40 -0700371
Colin Cross3c007702020-05-08 11:20:24 -0700372 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
373
374 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
375 ctx.PropertyErrorf("jni_uses_sdk_apis",
376 "can only be set for modules that do not set sdk_version")
377 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
378 ctx.PropertyErrorf("jni_uses_platform_apis",
379 "can only be set for modules that set sdk_version")
380 }
381
Peter Collingbournead84f972019-12-17 16:46:18 -0800382 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700383 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700384 variation := append(jniTarget.Variations(),
385 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossc511bc52020-04-07 16:50:32 +0000386
387 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
388 // unless jni_uses_platform_apis is set.
Colin Crossc2d24052020-05-13 11:05:02 -0700389 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
390 // have stable APIs through the VNDK.
391 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
392 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross76583a42020-05-06 17:51:39 -0700393 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Crossc511bc52020-04-07 16:50:32 +0000394 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
395 }
Colin Crossa4f08812018-10-02 22:03:40 -0700396 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
397 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700398
Paul Duffin250e6192019-06-07 10:44:37 +0100399 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700400}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700401
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700402func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800403 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700404 if cert != "" {
405 ctx.AddDependency(ctx.Module(), certificateTag, cert)
406 }
407
408 for _, cert := range a.appProperties.Additional_certificates {
409 cert = android.SrcIsModule(cert)
410 if cert != "" {
411 ctx.AddDependency(ctx.Module(), certificateTag, cert)
412 } else {
413 ctx.PropertyErrorf("additional_certificates",
414 `must be names of android_app_certificate modules in the form ":module"`)
415 }
416 }
Colin Cross30e076a2015-04-13 13:58:27 -0700417}
418
Jeongik Cha538c0d02019-07-11 15:54:27 +0900419func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
420 a.generateAndroidBuildActions(ctx)
421}
422
Colin Cross46c9b8b2017-06-22 16:51:17 -0700423func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100424 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700425 a.generateAndroidBuildActions(ctx)
426}
427
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100428func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev849f8442020-04-28 14:57:42 +0100429 if a.Updatable() {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100430 if !a.sdkVersion().stable() {
431 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
432 }
Artur Satayevf40fc852020-04-16 13:43:02 +0100433 if String(a.deviceProperties.Min_sdk_version) == "" {
434 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
435 }
Jooyung Han749dc692020-04-15 11:03:39 +0900436
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900437 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
438 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
Jooyung Han749dc692020-04-15 11:03:39 +0900439 android.CheckMinSdkVersion(a, ctx, int(minSdkVersion))
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900440 } else {
441 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
442 }
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100443 }
444
445 a.checkPlatformAPI(ctx)
446 a.checkSdkVersions(ctx)
447}
448
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900449// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
450// This check is enforced for "updatable" APKs (including APK-in-APEX).
451// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
452// because, sdk_version is overridden by min_sdk_version (if set as smaller)
453// and linkType is checked with dependencies so we can be sure that the whole dependency tree
454// will meet the requirements.
455func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
456 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
457 ctx.VisitDirectDeps(func(m android.Module) {
458 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
459 return
460 }
461 dep, _ := m.(*cc.Module)
Jooyung Han9d2c0f72020-05-20 17:12:13 +0900462 // The domain of cc.sdk_version is "current" and <number>
463 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
464 // properly regardless of sdk finalization.
465 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
466 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900467 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
468 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
469 return
470 }
471
472 })
473}
474
Sasha Smundak6ad77252019-05-01 13:16:22 -0700475// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800476// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700477func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900478 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800479 if err != nil {
480 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
481 }
482
Jiyong Park52cd06f2019-11-11 10:14:32 +0900483 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
484 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800485}
486
Colin Cross43f08db2018-11-12 10:13:39 -0800487// Returns whether this module should have the dex file stored uncompressed in the APK.
488func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800489 if Bool(a.appProperties.Use_embedded_dex) {
490 return true
491 }
492
Colin Cross53a87f52019-06-25 13:35:30 -0700493 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
494 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900495 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000496 return true
497 }
498
Colin Cross53a87f52019-06-25 13:35:30 -0700499 if ctx.Config().UnbundledBuild() {
500 return false
501 }
502
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700503 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700504}
505
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700506func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
507 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900508 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700509}
510
Liz Kammer9f9fd022020-06-18 19:44:06 +0000511func generateAaptRenamePackageFlags(packageName string, renameResourcesPackage bool) []string {
512 aaptFlags := []string{"--rename-manifest-package " + packageName}
513 if renameResourcesPackage {
514 // Required to rename the package name in the resources table.
515 aaptFlags = append(aaptFlags, "--rename-resources-package "+packageName)
516 }
517 return aaptFlags
518}
519
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900520func (a *AndroidApp) OverriddenManifestPackageName() string {
521 return a.overriddenManifestPackageName
522}
523
Liz Kammer9f9fd022020-06-18 19:44:06 +0000524func (a *AndroidApp) renameResourcesPackage() bool {
525 return proptools.BoolDefault(a.overridableAppProperties.Rename_resources_package, true)
526}
527
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800528func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000529 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
530
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700531 // Ask manifest_fixer to add or update the application element indicating this app has no code.
532 a.aapt.hasNoCode = !a.hasCode(ctx)
533
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800534 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800535
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800536 // 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 -0800537 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700538 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800539 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700540 }
541
Dan Willemsen72be5902018-10-24 20:24:57 -0700542 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
543 // Product AAPT config
544 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800545 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700546 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700547
Dan Willemsen72be5902018-10-24 20:24:57 -0700548 // Product AAPT preferred config
549 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800550 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700551 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700552 }
553
Jiyong Park7f67f482019-01-05 12:57:48 +0900554 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700555 if overridden || a.overridableAppProperties.Package_name != nil {
556 // The product override variable has a priority over the package_name property.
557 if !overridden {
558 manifestPackageName = *a.overridableAppProperties.Package_name
559 }
Liz Kammer9f9fd022020-06-18 19:44:06 +0000560 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, a.renameResourcesPackage())...)
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900561 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900562 }
563
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800564 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
565
Colin Crosse560c4a2019-03-19 16:03:11 -0700566 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700567 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800568 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800569 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700570
Colin Cross46c9b8b2017-06-22 16:51:17 -0700571 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700572 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800573}
Colin Cross30e076a2015-04-13 13:58:27 -0700574
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800575func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700576 var staticLibProguardFlagFiles android.Paths
577 ctx.VisitDirectDeps(func(m android.Module) {
578 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
579 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
580 }
581 })
582
583 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
584
585 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
586 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800587}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800588
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800589func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
Colin Cross43f08db2018-11-12 10:13:39 -0800590
591 var installDir string
592 if ctx.ModuleName() == "framework-res" {
593 // framework-res.apk is installed as system/framework/framework-res.apk
594 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900595 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800596 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800597 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800598 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800599 }
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800600 a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
David Srbecky98c71222020-05-20 22:20:28 +0100601 if a.deviceProperties.Uncompress_dex == nil {
602 // If the value was not force-set by the user, use reasonable default based on the module.
603 a.deviceProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
604 }
605 a.dexpreopter.uncompressedDex = *a.deviceProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700606 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
607 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
608 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
609 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
610 a.dexpreopter.manifestFile = a.mergedManifestFile
611
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800612 if ctx.ModuleName() != "framework-res" {
613 a.Module.compile(ctx, a.aaptSrcJar)
614 }
Colin Cross30e076a2015-04-13 13:58:27 -0700615
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800616 return a.maybeStrippedDexJarFile
617}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800618
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800619func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700620 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700621 if len(jniLibs) > 0 {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700622 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700623 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Sasha Smundak6ad77252019-05-01 13:16:22 -0700624 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700625 for _, jni := range jniLibs {
626 if jni.coverageFile.Valid() {
Jaewoong Jung46984ee2020-04-07 13:07:55 -0700627 // Only collect coverage for the first target arch if this is a multilib target.
628 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
629 // data file path collisions since the current coverage file path format doesn't contain
630 // arch-related strings. This is fine for now though; the code coverage team doesn't use
631 // multi-arch targets such as test_suite_* for coverage collections yet.
632 //
633 // Work with the team to come up with a new format that handles multilib modules properly
634 // and change this.
635 if len(ctx.Config().Targets[android.Android]) == 1 ||
636 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
637 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
638 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700639 }
640 }
Colin Crossa4f08812018-10-02 22:03:40 -0700641 } else {
642 a.installJniLibs = jniLibs
643 }
644 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800645 return jniJarFile
646}
Colin Crossa4f08812018-10-02 22:03:40 -0700647
Jaewoong Jung0949f312019-09-11 10:25:18 -0700648func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700649 // Collect NOTICE files from all dependencies.
650 seenModules := make(map[android.Module]bool)
651 noticePathSet := make(map[android.Path]bool)
652
653 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
654 // Have we already seen this?
655 if _, ok := seenModules[child]; ok {
656 return false
657 }
658 seenModules[child] = true
659
660 // Skip host modules.
661 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
662 return false
663 }
664
Bob Badoura75b0572020-02-18 20:21:55 -0800665 paths := child.(android.Module).NoticeFiles()
666 if len(paths) > 0 {
667 for _, path := range paths {
668 noticePathSet[path] = true
669 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700670 }
671 return true
672 })
673
674 // If the app has one, add it too.
Bob Badoura75b0572020-02-18 20:21:55 -0800675 if len(a.NoticeFiles()) > 0 {
676 for _, path := range a.NoticeFiles() {
677 noticePathSet[path] = true
678 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700679 }
680
681 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700682 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700683 }
684 var noticePaths []android.Path
685 for path := range noticePathSet {
686 noticePaths = append(noticePaths, path)
687 }
688 sort.Slice(noticePaths, func(i, j int) bool {
689 return noticePaths[i].String() < noticePaths[j].String()
690 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700691
Jaewoong Jung0949f312019-09-11 10:25:18 -0700692 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700693}
694
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700695// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
696// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
697func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
698 if android.SrcIsModule(certPropValue) == "" {
699 var mainCert Certificate
700 if certPropValue != "" {
701 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
702 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800703 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
704 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700705 }
706 } else {
707 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800708 mainCert = Certificate{
709 Pem: pem,
710 Key: key,
711 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700712 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700713 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700714 }
715
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700716 if !m.Platform() {
717 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900718 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
719 if strings.HasPrefix(certPath, systemCertPath) {
720 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
Colin Cross440e0d02020-06-11 11:32:11 -0700721 allowed := ctx.Config().EnforceSystemCertificateAllowList()
Jeongik Chac9464142019-01-07 12:07:27 +0900722
Colin Cross440e0d02020-06-11 11:32:11 -0700723 if enforceSystemCert && !inList(m.Name(), allowed) {
Jeongik Chac9464142019-01-07 12:07:27 +0900724 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
725 }
726 }
727 }
728
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700729 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800730}
731
Jooyung Han39ee1192020-03-23 20:21:11 +0900732func (a *AndroidApp) InstallApkName() string {
733 return a.installApkName
734}
735
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800736func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700737 var apkDeps android.Paths
738
Jeongik Cha538c0d02019-07-11 15:54:27 +0900739 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
740 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
741
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800742 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800743 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800744
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700745 if ctx.ModuleName() == "framework-res" {
746 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700747 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900748 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700749 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
750 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800751 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700752 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700753 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700754 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700755 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700756
Jaewoong Jung0949f312019-09-11 10:25:18 -0700757 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700758 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
759 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
760 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700761
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800762 // Process all building blocks, from AAPT to certificates.
763 a.aaptBuildActions(ctx)
764
Colin Cross50ddcc42019-05-16 12:28:22 -0700765 if a.usesLibrary.enforceUsesLibraries() {
766 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
767 apkDeps = append(apkDeps, manifestCheckFile)
768 }
769
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800770 a.proguardBuildActions(ctx)
771
Colin Cross014489c2020-06-02 20:09:13 -0700772 a.linter.mergedManifest = a.aapt.mergedManifestFile
773 a.linter.manifest = a.aapt.manifestPath
774 a.linter.resources = a.aapt.resourceFiles
775
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800776 dexJarFile := a.dexBuildActions(ctx)
777
Colin Crossc2d24052020-05-13 11:05:02 -0700778 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800779 jniJarFile := a.jniBuildActions(jniLibs, ctx)
780
781 if ctx.Failed() {
782 return
783 }
784
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700785 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
786 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800787
788 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800789 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700790 v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature)
791 var v4SignatureFile android.WritablePath = nil
792 if v4SigningRequested {
793 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig")
794 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700795 var lineageFile android.Path
796 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
797 lineageFile = android.PathForModuleSrc(ctx, lineage)
798 }
799 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800800 a.outputFile = packageFile
Songchun Fan17d69e32020-03-24 20:32:24 -0700801 if v4SigningRequested {
802 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
803 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800804
Colin Crosse560c4a2019-03-19 16:03:11 -0700805 for _, split := range a.aapt.splits {
806 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800807 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Songchun Fan17d69e32020-03-24 20:32:24 -0700808 if v4SigningRequested {
809 v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig")
810 }
Liz Kammer70dd74d2020-05-07 13:24:05 -0700811 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700812 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
Songchun Fan17d69e32020-03-24 20:32:24 -0700813 if v4SigningRequested {
814 a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile)
815 }
Colin Crosse560c4a2019-03-19 16:03:11 -0700816 }
817
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800818 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700819 bundleFile := android.PathForModuleOut(ctx, "base.zip")
820 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
821 a.bundleFile = bundleFile
822
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800823 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900824 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
825 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
826 for _, extra := range a.extraOutputFiles {
827 ctx.InstallFile(a.installDir, extra.Base(), extra)
828 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800829 }
Artur Satayev1111b842020-04-27 19:05:28 +0100830
831 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700832}
833
Colin Crossc2d24052020-05-13 11:05:02 -0700834type appDepsInterface interface {
835 sdkVersion() sdkSpec
836 minSdkVersion() sdkSpec
837 RequiresStableAPIs(ctx android.BaseModuleContext) bool
838}
839
840func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
841 shouldCollectRecursiveNativeDeps bool,
Colin Cross094cde42020-02-15 10:38:00 -0800842 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crossc2d24052020-05-13 11:05:02 -0700843
Colin Crossa4f08812018-10-02 22:03:40 -0700844 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900845 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800846 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700847
Colin Crossc2d24052020-05-13 11:05:02 -0700848 if checkNativeSdkVersion {
849 checkNativeSdkVersion = app.sdkVersion().specified() &&
850 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
851 }
852
Peter Collingbournead84f972019-12-17 16:46:18 -0800853 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700854 otherName := ctx.OtherModuleName(module)
855 tag := ctx.OtherModuleDependencyTag(module)
856
Peter Collingbournead84f972019-12-17 16:46:18 -0800857 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700858 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800859 if dep.IsNdk() || dep.IsStubs() {
860 return false
861 }
862
Colin Crossa4f08812018-10-02 22:03:40 -0700863 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800864 path := lib.Path()
865 if seenModulePaths[path.String()] {
866 return false
867 }
868 seenModulePaths[path.String()] = true
869
Colin Crossc2d24052020-05-13 11:05:02 -0700870 if checkNativeSdkVersion && dep.SdkVersion() == "" {
871 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
872 otherName)
Colin Cross094cde42020-02-15 10:38:00 -0800873 }
874
Colin Crossa4f08812018-10-02 22:03:40 -0700875 if lib.Valid() {
876 jniLibs = append(jniLibs, jniLib{
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700877 name: ctx.OtherModuleName(module),
878 path: path,
879 target: module.Target(),
880 coverageFile: dep.CoverageOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700881 })
882 } else {
883 ctx.ModuleErrorf("dependency %q missing output file", otherName)
884 }
885 } else {
886 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700887 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800888
889 return shouldCollectRecursiveNativeDeps
890 }
891
892 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700893 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900894 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700895 } else {
896 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
897 }
Colin Crossa4f08812018-10-02 22:03:40 -0700898 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800899
900 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700901 })
902
Colin Crossbd01e2a2018-10-04 15:21:03 -0700903 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700904}
905
Jooyung Han749dc692020-04-15 11:03:39 +0900906func (a *AndroidApp) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) {
Artur Satayev1111b842020-04-27 19:05:28 +0100907 ctx.WalkDeps(func(child, parent android.Module) bool {
908 isExternal := !a.DepIsInSameApex(ctx, child)
909 if am, ok := child.(android.ApexModule); ok {
Jooyung Han749dc692020-04-15 11:03:39 +0900910 if !do(ctx, parent, am, isExternal) {
911 return false
912 }
Artur Satayev1111b842020-04-27 19:05:28 +0100913 }
914 return !isExternal
915 })
916}
917
918func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
919 if ctx.Host() {
920 return
921 }
922
923 depsInfo := android.DepNameToDepInfoMap{}
Jooyung Han749dc692020-04-15 11:03:39 +0900924 a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
Artur Satayev1111b842020-04-27 19:05:28 +0100925 depName := to.Name()
926 if info, exist := depsInfo[depName]; exist {
927 info.From = append(info.From, from.Name())
928 info.IsExternal = info.IsExternal && externalDep
929 depsInfo[depName] = info
930 } else {
931 toMinSdkVersion := "(no version)"
932 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
933 if v := m.MinSdkVersion(); v != "" {
934 toMinSdkVersion = v
935 }
936 }
937 depsInfo[depName] = android.ApexModuleDepInfo{
938 To: depName,
939 From: []string{from.Name()},
940 IsExternal: externalDep,
941 MinSdkVersion: toMinSdkVersion,
942 }
943 }
Jooyung Han749dc692020-04-15 11:03:39 +0900944 return true
Artur Satayev1111b842020-04-27 19:05:28 +0100945 })
946
947 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
948}
949
Artur Satayev849f8442020-04-28 14:57:42 +0100950func (a *AndroidApp) Updatable() bool {
951 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
952}
953
Colin Cross0ea8ba82019-06-06 14:33:29 -0700954func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800955 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
956 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000957 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800958 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800959 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800960}
961
Jiyong Park0f80c182020-01-31 02:49:53 +0900962func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
963 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
964 return true
965 }
966 return a.Library.DepIsInSameApex(ctx, dep)
967}
968
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900969// For OutputFileProducer interface
970func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
971 switch tag {
972 case ".aapt.srcjar":
973 return []android.Path{a.aaptSrcJar}, nil
974 }
975 return a.Library.OutputFiles(tag)
976}
977
Jiyong Parkf7487312019-10-17 12:54:30 +0900978func (a *AndroidApp) Privileged() bool {
979 return Bool(a.appProperties.Privileged)
980}
981
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700982func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
Colin Cross1a6acd42020-06-16 17:51:46 -0700983 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700984}
985
986func (a *AndroidApp) PreventInstall() {
987 a.appProperties.PreventInstall = true
988}
989
990func (a *AndroidApp) HideFromMake() {
991 a.appProperties.HideFromMake = true
992}
993
994func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
995 a.appProperties.IsCoverageVariant = coverage
996}
997
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400998func (a *AndroidApp) EnableCoverageIfNeeded() {}
999
Jaewoong Jung87a33e72020-03-26 14:01:48 -07001000var _ cc.Coverage = (*AndroidApp)(nil)
1001
Colin Cross1b16b0e2019-02-12 14:41:32 -08001002// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -07001003func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -07001004 module := &AndroidApp{}
1005
Sasha Smundak2057f822019-04-16 17:16:58 -07001006 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross66dbc0b2017-12-28 12:23:20 -08001007 module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
1008
Colin Crossae5caf52018-05-22 11:11:52 -07001009 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001010 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -07001011
Colin Crossce6734e2020-06-15 16:09:53 -07001012 module.addHostAndDeviceProperties()
Colin Cross36242852017-06-23 15:06:31 -07001013 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -07001014 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001015 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001016 &module.overridableAppProperties,
1017 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -07001018
Colin Crossa4f08812018-10-02 22:03:40 -07001019 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1020 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001021 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +09001022 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -07001023
Colin Cross36242852017-06-23 15:06:31 -07001024 return module
Colin Cross30e076a2015-04-13 13:58:27 -07001025}
Colin Crossae5caf52018-05-22 11:11:52 -07001026
1027type appTestProperties struct {
Liz Kammer6b0c5522020-04-28 16:10:55 -07001028 // The name of the android_app module that the tests will run against.
Colin Crossae5caf52018-05-22 11:11:52 -07001029 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001030
1031 // if specified, the instrumentation target package name in the manifest is overwritten by it.
1032 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -07001033}
1034
1035type AndroidTest struct {
1036 AndroidApp
1037
1038 appTestProperties appTestProperties
1039
1040 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07001041
1042 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -07001043 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001044}
1045
Jaewoong Jung0949f312019-09-11 10:25:18 -07001046func (a *AndroidTest) InstallInTestcases() bool {
1047 return true
1048}
1049
Colin Crossae5caf52018-05-22 11:11:52 -07001050func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncylee5bcff5d2020-04-30 14:57:06 +08001051 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001052 if a.appTestProperties.Instrumentation_target_package != nil {
1053 a.additionalAaptFlags = append(a.additionalAaptFlags,
1054 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1055 } else if a.appTestProperties.Instrumentation_for != nil {
1056 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001057 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1058 if overridden {
1059 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1060 }
1061 }
Colin Crossae5caf52018-05-22 11:11:52 -07001062 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001063
easoncylee5bcff5d2020-04-30 14:57:06 +08001064 for _, module := range a.testProperties.Test_mainline_modules {
1065 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1066 }
1067
Jaewoong Jung39982342020-01-14 10:27:18 -08001068 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncylee5bcff5d2020-04-30 14:57:06 +08001069 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001070 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -08001071 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001072}
1073
Jaewoong Jung39982342020-01-14 10:27:18 -08001074func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1075 if testConfig == nil {
1076 return nil
1077 }
1078
1079 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1080 rule := android.NewRuleBuilder()
1081 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1082 fixNeeded := false
1083
1084 if ctx.ModuleName() != a.installApkName {
1085 fixNeeded = true
1086 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1087 }
1088
1089 if a.overridableAppProperties.Package_name != nil {
1090 fixNeeded = true
1091 command.FlagWithInput("--manifest ", a.manifestPath).
1092 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1093 }
1094
1095 if fixNeeded {
1096 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1097 return fixedConfig
1098 }
1099 return testConfig
1100}
1101
Colin Cross303e21f2018-08-07 16:49:25 -07001102func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001103 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001104}
1105
1106func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1107 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001108 if a.appTestProperties.Instrumentation_for != nil {
1109 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1110 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1111 // use instrumentationForTag instead of libTag.
1112 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1113 }
Colin Crossae5caf52018-05-22 11:11:52 -07001114}
1115
Colin Cross1b16b0e2019-02-12 14:41:32 -08001116// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1117// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001118func AndroidTestFactory() android.Module {
1119 module := &AndroidTest{}
1120
Sasha Smundak2057f822019-04-16 17:16:58 -07001121 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001122
1123 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001124 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001125 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001126 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001127 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001128 module.Module.linter.test = true
Colin Crossae5caf52018-05-22 11:11:52 -07001129
Colin Crossce6734e2020-06-15 16:09:53 -07001130 module.addHostAndDeviceProperties()
Colin Crossae5caf52018-05-22 11:11:52 -07001131 module.AddProperties(
Colin Crossae5caf52018-05-22 11:11:52 -07001132 &module.aaptProperties,
1133 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001134 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001135 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001136 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001137 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001138
Colin Crossa4f08812018-10-02 22:03:40 -07001139 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1140 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001141 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001142 return module
1143}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001144
Colin Cross252fc6f2018-10-04 15:22:03 -07001145type appTestHelperAppProperties struct {
1146 // list of compatibility suites (for example "cts", "vts") that the module should be
1147 // installed into.
1148 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001149
1150 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1151 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1152 // explicitly.
1153 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001154}
1155
1156type AndroidTestHelperApp struct {
1157 AndroidApp
1158
1159 appTestHelperAppProperties appTestHelperAppProperties
1160}
1161
Jaewoong Jung326a9412019-11-21 10:41:00 -08001162func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1163 return true
1164}
1165
Colin Cross1b16b0e2019-02-12 14:41:32 -08001166// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1167// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1168// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001169func AndroidTestHelperAppFactory() android.Module {
1170 module := &AndroidTestHelperApp{}
1171
Sasha Smundak2057f822019-04-16 17:16:58 -07001172 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001173
1174 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001175 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001176 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001177 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001178 module.Module.linter.test = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001179
Colin Crossce6734e2020-06-15 16:09:53 -07001180 module.addHostAndDeviceProperties()
Colin Cross252fc6f2018-10-04 15:22:03 -07001181 module.AddProperties(
Colin Cross252fc6f2018-10-04 15:22:03 -07001182 &module.aaptProperties,
1183 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001184 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001185 &module.overridableAppProperties,
1186 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001187
1188 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1189 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001190 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001191 return module
1192}
1193
Colin Crossbd01e2a2018-10-04 15:21:03 -07001194type AndroidAppCertificate struct {
1195 android.ModuleBase
1196 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001197 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001198}
1199
1200type AndroidAppCertificateProperties struct {
1201 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1202 Certificate *string
1203}
1204
Colin Cross1b16b0e2019-02-12 14:41:32 -08001205// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1206// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001207func AndroidAppCertificateFactory() android.Module {
1208 module := &AndroidAppCertificate{}
1209 module.AddProperties(&module.properties)
1210 android.InitAndroidModule(module)
1211 return module
1212}
1213
Colin Crossbd01e2a2018-10-04 15:21:03 -07001214func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1215 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001216 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001217 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1218 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001219 }
1220}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001221
1222type OverrideAndroidApp struct {
1223 android.ModuleBase
1224 android.OverrideModuleBase
1225}
1226
Sasha Smundak613cbb12020-06-05 10:27:23 -07001227func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -08001228 // All the overrides happen in the base module.
1229 // TODO(jungjw): Check the base module type.
1230}
1231
1232// override_android_app is used to create an android_app module based on another android_app by overriding
1233// some of its properties.
1234func OverrideAndroidAppModuleFactory() android.Module {
1235 m := &OverrideAndroidApp{}
1236 m.AddProperties(&overridableAppProperties{})
1237
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001238 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001239 android.InitOverrideModule(m)
1240 return m
1241}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001242
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001243type OverrideAndroidTest struct {
1244 android.ModuleBase
1245 android.OverrideModuleBase
1246}
1247
Sasha Smundak613cbb12020-06-05 10:27:23 -07001248func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001249 // All the overrides happen in the base module.
1250 // TODO(jungjw): Check the base module type.
1251}
1252
1253// override_android_test is used to create an android_app module based on another android_test by overriding
1254// some of its properties.
1255func OverrideAndroidTestModuleFactory() android.Module {
1256 m := &OverrideAndroidTest{}
1257 m.AddProperties(&overridableAppProperties{})
1258 m.AddProperties(&appTestProperties{})
1259
1260 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1261 android.InitOverrideModule(m)
1262 return m
1263}
1264
Roshan Piusb8307962020-04-27 09:42:27 -07001265type OverrideRuntimeResourceOverlay struct {
1266 android.ModuleBase
1267 android.OverrideModuleBase
1268}
1269
Sasha Smundak613cbb12020-06-05 10:27:23 -07001270func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) {
Roshan Piusb8307962020-04-27 09:42:27 -07001271 // All the overrides happen in the base module.
1272 // TODO(jungjw): Check the base module type.
1273}
1274
1275// override_runtime_resource_overlay is used to create a module based on another
1276// runtime_resource_overlay module by overriding some of its properties.
1277func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1278 m := &OverrideRuntimeResourceOverlay{}
1279 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1280
1281 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1282 android.InitOverrideModule(m)
1283 return m
1284}
1285
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001286type AndroidAppImport struct {
1287 android.ModuleBase
1288 android.DefaultableModuleBase
Jiyong Park592a6a42020-04-21 22:34:28 +09001289 android.ApexModuleBase
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001290 prebuilt android.Prebuilt
1291
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001292 properties AndroidAppImportProperties
1293 dpiVariants interface{}
1294 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001295
1296 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001297 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001298
1299 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001300
1301 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001302
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001303 preprocessed bool
1304
Colin Cross70dda7e2019-10-01 22:05:35 -07001305 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001306}
1307
1308type AndroidAppImportProperties struct {
1309 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001310 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001311
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001312 // The name of a certificate in the default certificate directory or an android_app_certificate
1313 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001314 Certificate *string
1315
1316 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1317 // be set for presigned modules.
1318 Presigned *bool
1319
Liz Kammer2bc57f62020-05-13 15:49:21 -07001320 // Name of the signing certificate lineage file.
1321 Lineage *string
1322
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001323 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1324 // need to either specify a specific certificate or be presigned.
1325 Default_dev_cert *bool
1326
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001327 // Specifies that this app should be installed to the priv-app directory,
1328 // where the system will grant it additional privileges not available to
1329 // normal apps.
1330 Privileged *bool
1331
1332 // Names of modules to be overridden. Listed modules can only be other binaries
1333 // (in Make or Soong).
1334 // This does not completely prevent installation of the overridden binaries, but if both
1335 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1336 // from PRODUCT_PACKAGES.
1337 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001338
1339 // Optional name for the installed app. If unspecified, it is derived from the module name.
1340 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001341}
1342
Martin Stjernholm6d415272020-01-31 17:10:36 +00001343func (a *AndroidAppImport) IsInstallable() bool {
1344 return true
1345}
1346
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001347// Updates properties with variant-specific values.
1348func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001349 config := ctx.Config()
1350
1351 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1352 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1353 // overwrites everything else.
1354 // TODO(jungjw): Can we optimize this by making it priority order?
1355 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001356 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001357 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001358 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001359 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001360 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001361
1362 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1363 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1364 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001365}
1366
Colin Cross1184b642019-12-30 18:43:07 -08001367func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001368 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001369 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1370 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001371 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001372 }
1373
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001374 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1375 if err != nil {
1376 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1377 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1378 } else {
1379 panic(err)
1380 }
1381 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001382}
1383
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001384func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1385 cert := android.SrcIsModule(String(a.properties.Certificate))
1386 if cert != "" {
1387 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1388 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001389
Paul Duffin250e6192019-06-07 10:44:37 +01001390 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001391}
1392
1393func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1394 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001395 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1396 // with them may invalidate pre-existing signature data.
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001397 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001398 ctx.Build(pctx, android.BuildParams{
1399 Rule: android.Cp,
1400 Output: outputPath,
1401 Input: inputPath,
1402 })
1403 return
1404 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001405 rule := android.NewRuleBuilder()
1406 rule.Command().
1407 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001408 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001409 FlagWithInput("-i ", inputPath).
1410 FlagWithOutput("-o ", outputPath).
1411 FlagWithArg("-0 ", "'lib/**/*.so'").
1412 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1413 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1414}
1415
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001416// Returns whether this module should have the dex file stored uncompressed in the APK.
1417func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001418 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001419 return false
1420 }
1421
1422 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001423 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001424 return true
1425 }
1426
1427 return shouldUncompressDex(ctx, &a.dexpreopter)
1428}
1429
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001430func (a *AndroidAppImport) uncompressDex(
1431 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1432 rule := android.NewRuleBuilder()
1433 rule.Command().
1434 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001435 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001436 FlagWithInput("-i ", inputPath).
1437 FlagWithOutput("-o ", outputPath).
1438 FlagWithArg("-0 ", "'classes*.dex'").
1439 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1440 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1441}
1442
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001443func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001444 a.generateAndroidBuildActions(ctx)
1445}
1446
Jooyung Han39ee1192020-03-23 20:21:11 +09001447func (a *AndroidAppImport) InstallApkName() string {
1448 return a.BaseModuleName()
1449}
1450
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001451func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001452 numCertPropsSet := 0
1453 if String(a.properties.Certificate) != "" {
1454 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001455 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001456 if Bool(a.properties.Presigned) {
1457 numCertPropsSet++
1458 }
1459 if Bool(a.properties.Default_dev_cert) {
1460 numCertPropsSet++
1461 }
1462 if numCertPropsSet != 1 {
1463 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001464 }
1465
Colin Crossc2d24052020-05-13 11:05:02 -07001466 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001467
1468 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001469 // TODO: LOCAL_PACKAGE_SPLITS
1470
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001471 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001472
1473 if a.usesLibrary.enforceUsesLibraries() {
1474 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1475 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001476
1477 // TODO: Install or embed JNI libraries
1478
1479 // Uncompress JNI libraries in the apk
1480 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1481 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1482
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001483 var installDir android.InstallPath
1484 if Bool(a.properties.Privileged) {
1485 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001486 } else if ctx.InstallInTestcases() {
1487 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001488 } else {
1489 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1490 }
1491
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001492 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001493 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001494 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001495
1496 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1497 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1498 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1499 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1500
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001501 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001502 if a.dexpreopter.uncompressedDex {
1503 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1504 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1505 dexOutput = dexUncompressed
1506 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001507
Jooyung Han39ee1192020-03-23 20:21:11 +09001508 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1509
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001510 // TODO: Handle EXTERNAL
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001511
1512 // Sign or align the package if package has not been preprocessed
1513 if a.preprocessed {
1514 a.outputFile = srcApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001515 a.certificate = PresignedCertificate
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001516 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001517 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1518 // Which makes processMainCert's behavior for the empty cert string WAI.
1519 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001520 if len(certificates) != 1 {
1521 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1522 }
Colin Cross503c1d02020-01-28 14:00:53 -08001523 a.certificate = certificates[0]
Jooyung Han39ee1192020-03-23 20:21:11 +09001524 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer2bc57f62020-05-13 15:49:21 -07001525 var lineageFile android.Path
1526 if lineage := String(a.properties.Lineage); lineage != "" {
1527 lineageFile = android.PathForModuleSrc(ctx, lineage)
1528 }
1529 SignAppPackage(ctx, signed, dexOutput, certificates, nil, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001530 a.outputFile = signed
1531 } else {
Jooyung Han39ee1192020-03-23 20:21:11 +09001532 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001533 TransformZipAlign(ctx, alignedApk, dexOutput)
1534 a.outputFile = alignedApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001535 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001536 }
1537
1538 // TODO: Optionally compress the output apk.
1539
Jiyong Park592a6a42020-04-21 22:34:28 +09001540 if a.IsForPlatform() {
1541 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
1542 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001543
1544 // TODO: androidmk converter jni libs
1545}
1546
1547func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1548 return &a.prebuilt
1549}
1550
1551func (a *AndroidAppImport) Name() string {
1552 return a.prebuilt.Name(a.ModuleBase.Name())
1553}
1554
Dario Frenicde2a032019-10-27 00:29:22 +01001555func (a *AndroidAppImport) OutputFile() android.Path {
1556 return a.outputFile
1557}
1558
Jiyong Park618922e2020-01-08 13:35:43 +09001559func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1560 return nil
1561}
1562
Colin Cross503c1d02020-01-28 14:00:53 -08001563func (a *AndroidAppImport) Certificate() Certificate {
1564 return a.certificate
1565}
1566
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001567var dpiVariantGroupType reflect.Type
1568var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001569
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001570func initAndroidAppImportVariantGroupTypes() {
1571 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1572
1573 archNames := make([]string, len(android.ArchTypeList()))
1574 for i, archType := range android.ArchTypeList() {
1575 archNames[i] = archType.Name
1576 }
1577 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1578}
1579
1580// Populates all variant struct properties at creation time.
1581func (a *AndroidAppImport) populateAllVariantStructs() {
1582 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1583 a.AddProperties(a.dpiVariants)
1584
1585 a.archVariants = reflect.New(archVariantGroupType).Interface()
1586 a.AddProperties(a.archVariants)
1587}
1588
Jiyong Parkf7487312019-10-17 12:54:30 +09001589func (a *AndroidAppImport) Privileged() bool {
1590 return Bool(a.properties.Privileged)
1591}
1592
Sasha Smundak613cbb12020-06-05 10:27:23 -07001593func (a *AndroidAppImport) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool {
Jiyong Park592a6a42020-04-21 22:34:28 +09001594 // android_app_import might have extra dependencies via uses_libs property.
1595 // Don't track the dependency as we don't automatically add those libraries
1596 // to the classpath. It should be explicitly added to java_libs property of APEX
1597 return false
1598}
1599
Colin Crossc2d24052020-05-13 11:05:02 -07001600func (a *AndroidAppImport) sdkVersion() sdkSpec {
1601 return sdkSpecFrom("")
1602}
1603
1604func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1605 return sdkSpecFrom("")
1606}
1607
Jooyung Han749dc692020-04-15 11:03:39 +09001608func (j *AndroidAppImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion int) error {
1609 // Do not check for prebuilts against the min_sdk_version of enclosing APEX
1610 return nil
1611}
1612
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001613func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1614 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1615
1616 variantFields := make([]reflect.StructField, len(variants))
1617 for i, variant := range variants {
1618 variantFields[i] = reflect.StructField{
1619 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001620 Type: props,
1621 }
1622 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001623
1624 variantGroupStruct := reflect.StructOf(variantFields)
1625 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001626 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001627 Name: variantGroupName,
1628 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001629 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001630 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001631}
1632
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001633// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001634// DPI-specific apk source files can be specified using dpi_variants. Example:
1635//
1636// android_app_import {
1637// name: "example_import",
1638// apk: "prebuilts/example.apk",
1639// dpi_variants: {
1640// mdpi: {
1641// apk: "prebuilts/example_mdpi.apk",
1642// },
1643// xhdpi: {
1644// apk: "prebuilts/example_xhdpi.apk",
1645// },
1646// },
1647// certificate: "PRESIGNED",
1648// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001649func AndroidAppImportFactory() android.Module {
1650 module := &AndroidAppImport{}
1651 module.AddProperties(&module.properties)
1652 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001653 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001654 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001655 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001656 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001657 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001658
Jiyong Park592a6a42020-04-21 22:34:28 +09001659 android.InitApexModule(module)
Jaewoong Jung6abfbf72020-05-26 20:10:08 -07001660 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1661 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001662 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001663
1664 return module
1665}
Colin Cross50ddcc42019-05-16 12:28:22 -07001666
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001667type androidTestImportProperties struct {
1668 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1669 Preprocessed *bool
1670}
1671
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001672type AndroidTestImport struct {
1673 AndroidAppImport
1674
1675 testProperties testProperties
1676
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001677 testImportProperties androidTestImportProperties
1678
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001679 data android.Paths
1680}
1681
1682func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001683 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1684
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001685 a.generateAndroidBuildActions(ctx)
1686
1687 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1688}
1689
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001690func (a *AndroidTestImport) InstallInTestcases() bool {
1691 return true
1692}
1693
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001694// android_test_import imports a prebuilt test apk with additional processing specified in the
1695// module. DPI or arch variant configurations can be made as with android_app_import.
1696func AndroidTestImportFactory() android.Module {
1697 module := &AndroidTestImport{}
1698 module.AddProperties(&module.properties)
1699 module.AddProperties(&module.dexpreoptProperties)
1700 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1701 module.AddProperties(&module.testProperties)
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001702 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001703 module.populateAllVariantStructs()
1704 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1705 module.processVariants(ctx)
1706 })
1707
Colin Crossc80828d2020-05-06 22:29:10 -07001708 module.dexpreopter.isTest = true
1709
Jiyong Park592a6a42020-04-21 22:34:28 +09001710 android.InitApexModule(module)
Jaewoong Jung243688e2020-05-01 15:50:08 -07001711 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1712 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001713 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1714
1715 return module
1716}
1717
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001718type RuntimeResourceOverlay struct {
1719 android.ModuleBase
1720 android.DefaultableModuleBase
Roshan Piusb8307962020-04-27 09:42:27 -07001721 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001722 aapt
1723
Roshan Piusb8307962020-04-27 09:42:27 -07001724 properties RuntimeResourceOverlayProperties
1725 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001726
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001727 certificate Certificate
1728
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001729 outputFile android.Path
1730 installDir android.InstallPath
1731}
1732
1733type RuntimeResourceOverlayProperties struct {
1734 // the name of a certificate in the default certificate directory or an android_app_certificate
1735 // module name in the form ":module".
1736 Certificate *string
1737
Liz Kammer7fe241f2020-05-19 16:15:25 -07001738 // Name of the signing certificate lineage file.
1739 Lineage *string
1740
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001741 // optional theme name. If specified, the overlay package will be applied
1742 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1743 Theme *string
1744
1745 // if not blank, set to the version of the sdk to compile against.
1746 // Defaults to compiling against the current platform.
1747 Sdk_version *string
1748
1749 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1750 // Defaults to sdk_version if not set.
1751 Min_sdk_version *string
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001752
1753 // list of android_library modules whose resources are extracted and linked against statically
1754 Static_libs []string
1755
1756 // list of android_app modules whose resources are extracted and linked against
1757 Resource_libs []string
Jaewoong Jungad0177b2020-04-24 15:22:40 -07001758
1759 // Names of modules to be overridden. Listed modules can only be other overlays
1760 // (in Make or Soong).
1761 // This does not completely prevent installation of the overridden overlays, but if both
1762 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1763 // from PRODUCT_PACKAGES.
1764 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001765}
1766
Jiyong Park69aeba92020-04-24 21:16:36 +09001767// RuntimeResourceOverlayModule interface is used by the apex package to gather information from
1768// a RuntimeResourceOverlay module.
1769type RuntimeResourceOverlayModule interface {
1770 android.Module
1771 OutputFile() android.Path
1772 Certificate() Certificate
1773 Theme() string
1774}
1775
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001776func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1777 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1778 if sdkDep.hasFrameworkLibs() {
1779 r.aapt.deps(ctx, sdkDep)
1780 }
1781
1782 cert := android.SrcIsModule(String(r.properties.Certificate))
1783 if cert != "" {
1784 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1785 }
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001786
1787 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1788 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001789}
1790
1791func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1792 // Compile and link resources
1793 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001794 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Piusb8307962020-04-27 09:42:27 -07001795 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1796 // Allow the override of "package name" and "overlay target package name"
1797 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1798 if overridden || r.overridableProperties.Package_name != nil {
1799 // The product override variable has a priority over the package_name property.
1800 if !overridden {
1801 manifestPackageName = *r.overridableProperties.Package_name
1802 }
Liz Kammer9f9fd022020-06-18 19:44:06 +00001803 aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, false)...)
Roshan Piusb8307962020-04-27 09:42:27 -07001804 }
1805 if r.overridableProperties.Target_package_name != nil {
1806 aaptLinkFlags = append(aaptLinkFlags,
1807 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1808 }
1809 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001810
1811 // Sign the built package
Colin Crossc2d24052020-05-13 11:05:02 -07001812 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001813 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1814 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer7fe241f2020-05-19 16:15:25 -07001815 var lineageFile android.Path
1816 if lineage := String(r.properties.Lineage); lineage != "" {
1817 lineageFile = android.PathForModuleSrc(ctx, lineage)
1818 }
1819 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001820 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001821
1822 r.outputFile = signed
1823 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1824 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1825}
1826
Jiyong Park6a927c42020-01-21 02:03:43 +09001827func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1828 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001829}
1830
1831func (r *RuntimeResourceOverlay) systemModules() string {
1832 return ""
1833}
1834
Jiyong Park6a927c42020-01-21 02:03:43 +09001835func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001836 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001837 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001838 }
1839 return r.sdkVersion()
1840}
1841
Jiyong Park6a927c42020-01-21 02:03:43 +09001842func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001843 return r.sdkVersion()
1844}
1845
Jiyong Park69aeba92020-04-24 21:16:36 +09001846func (r *RuntimeResourceOverlay) Certificate() Certificate {
1847 return r.certificate
1848}
1849
1850func (r *RuntimeResourceOverlay) OutputFile() android.Path {
1851 return r.outputFile
1852}
1853
1854func (r *RuntimeResourceOverlay) Theme() string {
1855 return String(r.properties.Theme)
1856}
1857
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001858// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1859// system resources at run time.
1860func RuntimeResourceOverlayFactory() android.Module {
1861 module := &RuntimeResourceOverlay{}
1862 module.AddProperties(
1863 &module.properties,
Roshan Piusb8307962020-04-27 09:42:27 -07001864 &module.aaptProperties,
1865 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001866
Roshan Piusb8307962020-04-27 09:42:27 -07001867 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1868 android.InitDefaultableModule(module)
1869 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001870 return module
1871}
1872
Colin Cross50ddcc42019-05-16 12:28:22 -07001873type UsesLibraryProperties struct {
1874 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1875 Uses_libs []string
1876
1877 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1878 // required=false.
1879 Optional_uses_libs []string
1880
1881 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1882 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1883 Enforce_uses_libs *bool
1884}
1885
1886// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1887// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1888// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1889// with knowledge of their shared libraries.
1890type usesLibrary struct {
1891 usesLibraryProperties UsesLibraryProperties
1892}
1893
Paul Duffin250e6192019-06-07 10:44:37 +01001894func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001895 if !ctx.Config().UnbundledBuild() {
1896 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1897 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001898 // Only add these extra dependencies if the module depends on framework libs. This avoids
1899 // creating a cyclic dependency:
1900 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1901 if hasFrameworkLibs {
Ulya Trafimovich5f364b62020-06-30 12:39:01 +01001902 // Dexpreopt needs paths to the dex jars of these libraries in order to construct
1903 // class loader context for dex2oat. Add them as a dependency with a special tag.
Colin Cross3245b2c2019-06-07 13:18:09 -07001904 ctx.AddVariationDependencies(nil, usesLibTag,
1905 "org.apache.http.legacy",
1906 "android.hidl.base-V1.0-java",
1907 "android.hidl.manager-V1.0-java")
Ulya Trafimovichc9af5382020-05-29 15:35:06 +01001908 ctx.AddVariationDependencies(nil, usesLibTag, optionalUsesLibs...)
Colin Cross3245b2c2019-06-07 13:18:09 -07001909 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001910 }
1911}
1912
1913// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1914// build.
1915func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1916 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1917 return optionalUsesLibs
1918}
1919
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001920// usesLibraryPaths returns a map of module names of shared library dependencies to the paths
1921// to their dex jars on host and on device.
1922func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) dexpreopt.LibraryPaths {
1923 usesLibPaths := make(dexpreopt.LibraryPaths)
Colin Cross50ddcc42019-05-16 12:28:22 -07001924
1925 if !ctx.Config().UnbundledBuild() {
1926 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001927 dep := ctx.OtherModuleName(m)
Colin Cross50ddcc42019-05-16 12:28:22 -07001928 if lib, ok := m.(Dependency); ok {
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001929 buildPath := lib.DexJarBuildPath()
1930 if buildPath == nil {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001931 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must"+
1932 " produce a dex jar, does it have installable: true?", dep)
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001933 return
Colin Cross50ddcc42019-05-16 12:28:22 -07001934 }
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001935
1936 var devicePath string
1937 installPath := lib.DexJarInstallPath()
1938 if installPath == nil {
1939 devicePath = filepath.Join("/system/framework", dep+".jar")
1940 } else {
1941 devicePath = android.InstallPathToOnDevicePath(ctx, installPath.(android.InstallPath))
1942 }
1943
1944 usesLibPaths[dep] = &dexpreopt.LibraryPath{buildPath, devicePath}
Colin Cross50ddcc42019-05-16 12:28:22 -07001945 } else if ctx.Config().AllowMissingDependencies() {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001946 ctx.AddMissingDependencies([]string{dep})
Colin Cross50ddcc42019-05-16 12:28:22 -07001947 } else {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001948 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be "+
1949 "a java library", dep)
Colin Cross50ddcc42019-05-16 12:28:22 -07001950 }
1951 })
1952 }
1953
1954 return usesLibPaths
1955}
1956
1957// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1958// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1959// unconditionally in the future.
1960func (u *usesLibrary) enforceUsesLibraries() bool {
1961 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1962 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1963 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1964}
1965
1966// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1967// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1968func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1969 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1970
1971 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001972 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001973 Flag("--enforce-uses-libraries").
1974 Input(manifest).
1975 FlagWithOutput("-o ", outputFile)
1976
1977 for _, lib := range u.usesLibraryProperties.Uses_libs {
1978 cmd.FlagWithArg("--uses-library ", lib)
1979 }
1980
1981 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1982 cmd.FlagWithArg("--optional-uses-library ", lib)
1983 }
1984
1985 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1986
1987 return outputFile
1988}
1989
1990// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1991// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1992func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1993 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1994
1995 rule := android.NewRuleBuilder()
1996 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1997 rule.Command().
1998 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1999 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
2000 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
2001 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
2002 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
2003
2004 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
2005
2006 return outputFile
2007}