blob: 5e3a9d9bf4fe8ffd1804300cf61e2aac4c4d699f [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 Pius4df2bc72020-04-27 09:42:27 -070050 ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000051 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
52 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080053 ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory)
Sasha Smundaka7856c02020-04-23 09:49:59 -070054 ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory)
55}
56
57type AndroidAppSetProperties struct {
58 // APK Set path
59 Set *string
60
61 // Specifies that this app should be installed to the priv-app directory,
62 // where the system will grant it additional privileges not available to
63 // normal apps.
64 Privileged *bool
65
66 // APKs in this set use prerelease SDK version
67 Prerelease *bool
68
69 // Names of modules to be overridden. Listed modules can only be other apps
70 // (in Make or Soong).
71 Overrides []string
72}
73
74type AndroidAppSet struct {
75 android.ModuleBase
76 android.DefaultableModuleBase
77 prebuilt android.Prebuilt
78
79 properties AndroidAppSetProperties
80 packedOutput android.WritablePath
Liz Kammercada8072020-07-28 15:47:38 -070081 installFile string
Jaewoong Jung11c1e0f2020-06-29 19:18:44 -070082 apkcertsFile android.ModuleOutPath
Sasha Smundaka7856c02020-04-23 09:49:59 -070083}
84
85func (as *AndroidAppSet) Name() string {
86 return as.prebuilt.Name(as.ModuleBase.Name())
87}
88
89func (as *AndroidAppSet) IsInstallable() bool {
90 return true
91}
92
93func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
94 return &as.prebuilt
95}
96
97func (as *AndroidAppSet) Privileged() bool {
98 return Bool(as.properties.Privileged)
99}
100
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700101func (as *AndroidAppSet) OutputFile() android.Path {
102 return as.packedOutput
103}
104
Liz Kammercada8072020-07-28 15:47:38 -0700105func (as *AndroidAppSet) InstallFile() string {
106 return as.installFile
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700107}
108
Colin Cross4fb652d2020-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 {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700121 abiName := func(archVar string, 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 }
125 ctx.ModuleErrorf("Invalid %s: %s", archVar, deviceArch)
126 return "BAD_ABI"
127 }
128
129 result := []string{abiName("TARGET_ARCH", ctx.DeviceConfig().DeviceArch())}
130 if s := ctx.DeviceConfig().DeviceSecondaryArch(); s != "" {
131 result = append(result, abiName("TARGET_2ND_ARCH", s))
132 }
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 Jung11c1e0f2020-06-29 19:18:44 -0700138 as.apkcertsFile = android.PathForModuleOut(ctx, "apkcerts.txt")
Liz Kammercada8072020-07-28 15:47:38 -0700139 // We are assuming here that the install file in the APK
Sasha Smundaka7856c02020-04-23 09:49:59 -0700140 // set has `.apk` suffix. If it doesn't the build will fail.
141 // APK sets containing APEX files are handled elsewhere.
Liz Kammercada8072020-07-28 15:47:38 -0700142 as.installFile = as.BaseModuleName() + ".apk"
Sasha Smundaka7856c02020-04-23 09:49:59 -0700143 screenDensities := "all"
144 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
145 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
146 }
147 // TODO(asmundak): handle locales.
148 // TODO(asmundak): do we support device features
149 ctx.Build(pctx,
150 android.BuildParams{
Jaewoong Jung11c1e0f2020-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 Jung11c1e0f2020-06-29 19:18:44 -0700162 "apkcerts": as.apkcertsFile.String(),
163 "partition": as.PartitionTag(ctx.DeviceConfig()),
Sasha Smundaka7856c02020-04-23 09:49:59 -0700164 },
165 })
Sasha Smundaka7856c02020-04-23 09:49:59 -0700166}
167
168// android_app_set extracts a set of APKs based on the target device
169// configuration and installs this set as "split APKs".
Liz Kammercada8072020-07-28 15:47:38 -0700170// The extracted set always contains an APK whose name is
Sasha Smundak613cbb12020-06-05 10:27:23 -0700171// _module_name_.apk and every split APK matching target device.
172// The extraction of the density-specific splits depends on
173// PRODUCT_AAPT_PREBUILT_DPI variable. If present (its value should
174// be a list density names: LDPI, MDPI, HDPI, etc.), only listed
175// splits will be extracted. Otherwise all density-specific splits
176// will be extracted.
Sasha Smundaka7856c02020-04-23 09:49:59 -0700177func AndroidApkSetFactory() android.Module {
178 module := &AndroidAppSet{}
179 module.AddProperties(&module.properties)
180 InitJavaModule(module, android.DeviceSupported)
181 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
182 return module
Paul Duffinf9b1da02019-12-18 19:51:55 +0000183}
184
Colin Cross30e076a2015-04-13 13:58:27 -0700185// AndroidManifest.xml merging
186// package splits
187
Colin Crossfabb6082018-02-20 17:22:23 -0800188type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700189 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -0700190 Additional_certificates []string
191
192 // If set, create package-export.apk, which other packages can
193 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -0800194 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700195
Colin Cross16056062017-12-13 22:46:28 -0800196 // Specifies that this app should be installed to the priv-app directory,
197 // where the system will grant it additional privileges not available to
198 // normal apps.
199 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -0700200
201 // list of resource labels to generate individual resource packages
202 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -0400203
204 // Names of modules to be overridden. Listed modules can only be other binaries
205 // (in Make or Soong).
206 // This does not completely prevent installation of the overridden binaries, but if both
207 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
208 // from PRODUCT_PACKAGES.
209 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -0700210
211 // list of native libraries that will be provided in or alongside the resulting jar
212 Jni_libs []string `android:"arch_variant"`
213
Colin Cross7204cf02020-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 Cross7204cf02020-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 Kammere2b27f42020-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
Jaewoong Jung525443a2019-02-28 15:35:54 -0800271}
272
Roshan Pius4df2bc72020-04-27 09:42:27 -0700273// runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay
274type OverridableRuntimeResourceOverlayProperties struct {
275 // the package name of this app. The package name in the manifest file is used if one was not given.
276 Package_name *string
277
278 // the target package name of this overlay app. The target package name in the manifest file is used if one was not given.
279 Target_package_name *string
280}
281
Colin Cross30e076a2015-04-13 13:58:27 -0700282type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700283 Library
284 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800285 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700286
Colin Cross50ddcc42019-05-16 12:28:22 -0700287 usesLibrary usesLibrary
288
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900289 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700290
Colin Crossfabb6082018-02-20 17:22:23 -0800291 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700292
Jaewoong Jung525443a2019-02-28 15:35:54 -0800293 overridableAppProperties overridableAppProperties
294
Colin Cross403cc152020-07-06 14:15:24 -0700295 jniLibs []jniLib
296 installPathForJNISymbols android.Path
297 embeddedJniLibs bool
298 jniCoverageOutputs android.Paths
Colin Crossf6237212018-10-29 23:14:58 -0700299
300 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800301
302 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
303 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800304
Colin Cross70dda7e2019-10-01 22:05:35 -0700305 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700306
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700307 onDeviceDir string
308
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800309 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700310
311 noticeOutputs android.NoticeOutputs
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900312
313 overriddenManifestPackageName string
Artur Satayev1111b842020-04-27 19:05:28 +0100314
315 android.ApexBundleDepsInfo
Colin Crosse1731a52017-12-14 11:22:55 -0800316}
317
Martin Stjernholm6d415272020-01-31 17:10:36 +0000318func (a *AndroidApp) IsInstallable() bool {
319 return Bool(a.properties.Installable)
320}
321
Colin Cross89c31582018-04-30 15:55:11 -0700322func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
323 return nil
324}
325
Colin Cross66f78822018-05-02 12:58:28 -0700326func (a *AndroidApp) ExportedStaticPackages() android.Paths {
327 return nil
328}
329
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900330func (a *AndroidApp) OutputFile() android.Path {
331 return a.outputFile
332}
333
Colin Cross503c1d02020-01-28 14:00:53 -0800334func (a *AndroidApp) Certificate() Certificate {
335 return a.certificate
336}
337
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700338func (a *AndroidApp) JniCoverageOutputs() android.Paths {
339 return a.jniCoverageOutputs
340}
341
Colin Crossa97c5d32018-03-28 14:58:31 -0700342var _ AndroidLibraryDependency = (*AndroidApp)(nil)
343
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900344type Certificate struct {
Colin Cross503c1d02020-01-28 14:00:53 -0800345 Pem, Key android.Path
346 presigned bool
347}
348
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700349var PresignedCertificate = Certificate{presigned: true}
Colin Cross503c1d02020-01-28 14:00:53 -0800350
351func (c Certificate) AndroidMkString() string {
352 if c.presigned {
353 return "PRESIGNED"
354 } else {
355 return c.Pem.String()
356 }
Colin Cross30e076a2015-04-13 13:58:27 -0700357}
358
Colin Cross46c9b8b2017-06-22 16:51:17 -0700359func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
360 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700361
Jiyong Park6a927c42020-01-21 02:03:43 +0900362 if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700363 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
364 }
365
Paul Duffin250e6192019-06-07 10:44:37 +0100366 sdkDep := decodeSdkDep(ctx, sdkContext(a))
367 if sdkDep.hasFrameworkLibs() {
368 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700369 }
Colin Crossa4f08812018-10-02 22:03:40 -0700370
Colin Cross3c007702020-05-08 11:20:24 -0700371 usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform
372
373 if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) {
374 ctx.PropertyErrorf("jni_uses_sdk_apis",
375 "can only be set for modules that do not set sdk_version")
376 } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) {
377 ctx.PropertyErrorf("jni_uses_platform_apis",
378 "can only be set for modules that set sdk_version")
379 }
380
Peter Collingbournead84f972019-12-17 16:46:18 -0800381 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700382 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700383 variation := append(jniTarget.Variations(),
384 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossc511bc52020-04-07 16:50:32 +0000385
386 // If the app builds against an Android SDK use the SDK variant of JNI dependencies
387 // unless jni_uses_platform_apis is set.
Colin Crossc2d24052020-05-13 11:05:02 -0700388 // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already
389 // have stable APIs through the VNDK.
390 if (usesSDK && !a.RequiresStableAPIs(ctx) &&
391 !Bool(a.appProperties.Jni_uses_platform_apis)) ||
Colin Cross7204cf02020-05-06 17:51:39 -0700392 Bool(a.appProperties.Jni_uses_sdk_apis) {
Colin Crossc511bc52020-04-07 16:50:32 +0000393 variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"})
394 }
Colin Crossa4f08812018-10-02 22:03:40 -0700395 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
396 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700397
Paul Duffin250e6192019-06-07 10:44:37 +0100398 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700399}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700400
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700401func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800402 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700403 if cert != "" {
404 ctx.AddDependency(ctx.Module(), certificateTag, cert)
405 }
406
407 for _, cert := range a.appProperties.Additional_certificates {
408 cert = android.SrcIsModule(cert)
409 if cert != "" {
410 ctx.AddDependency(ctx.Module(), certificateTag, cert)
411 } else {
412 ctx.PropertyErrorf("additional_certificates",
413 `must be names of android_app_certificate modules in the form ":module"`)
414 }
415 }
Colin Cross30e076a2015-04-13 13:58:27 -0700416}
417
Jeongik Cha538c0d02019-07-11 15:54:27 +0900418func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
419 a.generateAndroidBuildActions(ctx)
420}
421
Colin Cross46c9b8b2017-06-22 16:51:17 -0700422func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100423 a.checkAppSdkVersions(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700424 a.generateAndroidBuildActions(ctx)
425}
426
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100427func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) {
Artur Satayev849f8442020-04-28 14:57:42 +0100428 if a.Updatable() {
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100429 if !a.sdkVersion().stable() {
430 ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion())
431 }
Artur Satayevf40fc852020-04-16 13:43:02 +0100432 if String(a.deviceProperties.Min_sdk_version) == "" {
433 ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.")
434 }
Jooyung Han749dc692020-04-15 11:03:39 +0900435
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900436 if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil {
437 a.checkJniLibsSdkVersion(ctx, minSdkVersion)
Jooyung Han749dc692020-04-15 11:03:39 +0900438 android.CheckMinSdkVersion(a, ctx, int(minSdkVersion))
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900439 } else {
440 ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
441 }
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100442 }
443
444 a.checkPlatformAPI(ctx)
445 a.checkSdkVersions(ctx)
446}
447
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900448// If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it.
449// This check is enforced for "updatable" APKs (including APK-in-APEX).
450// b/155209650: until min_sdk_version is properly supported, use sdk_version instead.
451// because, sdk_version is overridden by min_sdk_version (if set as smaller)
452// and linkType is checked with dependencies so we can be sure that the whole dependency tree
453// will meet the requirements.
454func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion sdkVersion) {
455 // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType()
456 ctx.VisitDirectDeps(func(m android.Module) {
457 if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) {
458 return
459 }
460 dep, _ := m.(*cc.Module)
Jooyung Han652d5b32020-05-20 17:12:13 +0900461 // The domain of cc.sdk_version is "current" and <number>
462 // We can rely on sdkSpec to convert it to <number> so that "current" is handled
463 // properly regardless of sdk finalization.
464 jniSdkVersion, err := sdkSpecFrom(dep.SdkVersion()).effectiveVersion(ctx)
465 if err != nil || minSdkVersion < jniSdkVersion {
Jooyung Hanbbc3fb72020-04-29 14:01:06 +0900466 ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)",
467 dep.SdkVersion(), minSdkVersion, ctx.ModuleName())
468 return
469 }
470
471 })
472}
473
Sasha Smundak6ad77252019-05-01 13:16:22 -0700474// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800475// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700476func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Jiyong Park6a927c42020-01-21 02:03:43 +0900477 minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx)
Colin Crosse4246ab2019-02-05 21:55:21 -0800478 if err != nil {
479 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
480 }
481
Jiyong Park52cd06f2019-11-11 10:14:32 +0900482 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
483 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800484}
485
Colin Cross43f08db2018-11-12 10:13:39 -0800486// Returns whether this module should have the dex file stored uncompressed in the APK.
487func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800488 if Bool(a.appProperties.Use_embedded_dex) {
489 return true
490 }
491
Colin Cross53a87f52019-06-25 13:35:30 -0700492 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
493 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900494 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000495 return true
496 }
497
Colin Cross53a87f52019-06-25 13:35:30 -0700498 if ctx.Config().UnbundledBuild() {
499 return false
500 }
501
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700502 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700503}
504
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700505func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
506 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900507 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700508}
509
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900510func (a *AndroidApp) OverriddenManifestPackageName() string {
511 return a.overriddenManifestPackageName
512}
513
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800514func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000515 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
516
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700517 // Ask manifest_fixer to add or update the application element indicating this app has no code.
518 a.aapt.hasNoCode = !a.hasCode(ctx)
519
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800520 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800521
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800522 // 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 -0800523 hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product")
Colin Crosse78dcd32018-04-19 15:25:19 -0700524 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800525 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700526 }
527
Dan Willemsen72be5902018-10-24 20:24:57 -0700528 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
529 // Product AAPT config
530 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800531 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700532 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700533
Dan Willemsen72be5902018-10-24 20:24:57 -0700534 // Product AAPT preferred config
535 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800536 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700537 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700538 }
539
Jiyong Park7f67f482019-01-05 12:57:48 +0900540 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700541 if overridden || a.overridableAppProperties.Package_name != nil {
542 // The product override variable has a priority over the package_name property.
543 if !overridden {
544 manifestPackageName = *a.overridableAppProperties.Package_name
545 }
Liz Kammer1d5983b2020-05-19 19:15:37 +0000546 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900547 a.overriddenManifestPackageName = manifestPackageName
Jiyong Park7f67f482019-01-05 12:57:48 +0900548 }
549
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800550 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
551
Colin Crosse560c4a2019-03-19 16:03:11 -0700552 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700553 a.aapt.sdkLibraries = a.exportedSdkLibs
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800554 a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent)
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800555 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700556
Colin Cross46c9b8b2017-06-22 16:51:17 -0700557 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700558 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800559}
Colin Cross30e076a2015-04-13 13:58:27 -0700560
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800561func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700562 var staticLibProguardFlagFiles android.Paths
563 ctx.VisitDirectDeps(func(m android.Module) {
564 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
565 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
566 }
567 })
568
569 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
570
571 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
572 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800573}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800574
Colin Cross403cc152020-07-06 14:15:24 -0700575func (a *AndroidApp) installPath(ctx android.ModuleContext) android.InstallPath {
Colin Cross43f08db2018-11-12 10:13:39 -0800576 var installDir string
577 if ctx.ModuleName() == "framework-res" {
578 // framework-res.apk is installed as system/framework/framework-res.apk
579 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900580 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800581 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800582 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800583 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800584 }
Colin Cross403cc152020-07-06 14:15:24 -0700585
586 return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
587}
588
589func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
590 a.dexpreopter.installPath = a.installPath(ctx)
Liz Kammera7a64f32020-07-09 15:16:41 -0700591 if a.dexProperties.Uncompress_dex == nil {
David Srbeckye033cba2020-05-20 22:20:28 +0100592 // If the value was not force-set by the user, use reasonable default based on the module.
Liz Kammera7a64f32020-07-09 15:16:41 -0700593 a.dexProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx))
David Srbeckye033cba2020-05-20 22:20:28 +0100594 }
Liz Kammera7a64f32020-07-09 15:16:41 -0700595 a.dexpreopter.uncompressedDex = *a.dexProperties.Uncompress_dex
Colin Cross50ddcc42019-05-16 12:28:22 -0700596 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
597 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
598 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
599 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
600 a.dexpreopter.manifestFile = a.mergedManifestFile
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100601 a.exportedSdkLibs = make(dexpreopt.LibraryPaths)
Colin Cross50ddcc42019-05-16 12:28:22 -0700602
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800603 if ctx.ModuleName() != "framework-res" {
604 a.Module.compile(ctx, a.aaptSrcJar)
605 }
Colin Cross30e076a2015-04-13 13:58:27 -0700606
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800607 return a.maybeStrippedDexJarFile
608}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800609
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800610func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700611 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700612 if len(jniLibs) > 0 {
Colin Cross403cc152020-07-06 14:15:24 -0700613 a.jniLibs = jniLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700614 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700615 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Colin Cross403cc152020-07-06 14:15:24 -0700616 a.installPathForJNISymbols = a.installPath(ctx).ToMakePath()
Sasha Smundak6ad77252019-05-01 13:16:22 -0700617 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700618 for _, jni := range jniLibs {
619 if jni.coverageFile.Valid() {
Jaewoong Jung46984ee2020-04-07 13:07:55 -0700620 // Only collect coverage for the first target arch if this is a multilib target.
621 // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage
622 // data file path collisions since the current coverage file path format doesn't contain
623 // arch-related strings. This is fine for now though; the code coverage team doesn't use
624 // multi-arch targets such as test_suite_* for coverage collections yet.
625 //
626 // Work with the team to come up with a new format that handles multilib modules properly
627 // and change this.
628 if len(ctx.Config().Targets[android.Android]) == 1 ||
629 ctx.Config().Targets[android.Android][0].Arch.ArchType == jni.target.Arch.ArchType {
630 a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path())
631 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700632 }
633 }
Colin Cross403cc152020-07-06 14:15:24 -0700634 a.embeddedJniLibs = true
Colin Crossa4f08812018-10-02 22:03:40 -0700635 }
636 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800637 return jniJarFile
638}
Colin Crossa4f08812018-10-02 22:03:40 -0700639
Colin Cross403cc152020-07-06 14:15:24 -0700640func (a *AndroidApp) JNISymbolsInstalls(installPath string) android.RuleBuilderInstalls {
641 var jniSymbols android.RuleBuilderInstalls
642 for _, jniLib := range a.jniLibs {
643 if jniLib.unstrippedFile != nil {
644 jniSymbols = append(jniSymbols, android.RuleBuilderInstall{
645 From: jniLib.unstrippedFile,
646 To: filepath.Join(installPath, targetToJniDir(jniLib.target), jniLib.unstrippedFile.Base()),
647 })
648 }
649 }
650 return jniSymbols
651}
652
Jaewoong Jung0949f312019-09-11 10:25:18 -0700653func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700654 // Collect NOTICE files from all dependencies.
655 seenModules := make(map[android.Module]bool)
656 noticePathSet := make(map[android.Path]bool)
657
658 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
659 // Have we already seen this?
660 if _, ok := seenModules[child]; ok {
661 return false
662 }
663 seenModules[child] = true
664
665 // Skip host modules.
666 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
667 return false
668 }
669
Bob Badoura75b0572020-02-18 20:21:55 -0800670 paths := child.(android.Module).NoticeFiles()
671 if len(paths) > 0 {
672 for _, path := range paths {
673 noticePathSet[path] = true
674 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700675 }
676 return true
677 })
678
679 // If the app has one, add it too.
Bob Badoura75b0572020-02-18 20:21:55 -0800680 if len(a.NoticeFiles()) > 0 {
681 for _, path := range a.NoticeFiles() {
682 noticePathSet[path] = true
683 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700684 }
685
686 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700687 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700688 }
689 var noticePaths []android.Path
690 for path := range noticePathSet {
691 noticePaths = append(noticePaths, path)
692 }
693 sort.Slice(noticePaths, func(i, j int) bool {
694 return noticePaths[i].String() < noticePaths[j].String()
695 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700696
Jaewoong Jung0949f312019-09-11 10:25:18 -0700697 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700698}
699
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700700// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
701// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
702func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
703 if android.SrcIsModule(certPropValue) == "" {
704 var mainCert Certificate
705 if certPropValue != "" {
706 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
707 mainCert = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -0800708 Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"),
709 Key: defaultDir.Join(ctx, certPropValue+".pk8"),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700710 }
711 } else {
712 pem, key := ctx.Config().DefaultAppCertificate(ctx)
Colin Cross503c1d02020-01-28 14:00:53 -0800713 mainCert = Certificate{
714 Pem: pem,
715 Key: key,
716 }
Colin Crossbd01e2a2018-10-04 15:21:03 -0700717 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700718 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700719 }
720
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700721 if !m.Platform() {
722 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900723 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
724 if strings.HasPrefix(certPath, systemCertPath) {
725 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
Colin Cross440e0d02020-06-11 11:32:11 -0700726 allowed := ctx.Config().EnforceSystemCertificateAllowList()
Jeongik Chac9464142019-01-07 12:07:27 +0900727
Colin Cross440e0d02020-06-11 11:32:11 -0700728 if enforceSystemCert && !inList(m.Name(), allowed) {
Jeongik Chac9464142019-01-07 12:07:27 +0900729 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
730 }
731 }
732 }
733
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700734 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800735}
736
Jooyung Han39ee1192020-03-23 20:21:11 +0900737func (a *AndroidApp) InstallApkName() string {
738 return a.installApkName
739}
740
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800741func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700742 var apkDeps android.Paths
743
Jeongik Cha538c0d02019-07-11 15:54:27 +0900744 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
745 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
746
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800747 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800748 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800749
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700750 if ctx.ModuleName() == "framework-res" {
751 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700752 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900753 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700754 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
755 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800756 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700757 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700758 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700759 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700760 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700761
Jaewoong Jung0949f312019-09-11 10:25:18 -0700762 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700763 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
764 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
765 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700766
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800767 // Process all building blocks, from AAPT to certificates.
768 a.aaptBuildActions(ctx)
769
Colin Cross50ddcc42019-05-16 12:28:22 -0700770 if a.usesLibrary.enforceUsesLibraries() {
771 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
772 apkDeps = append(apkDeps, manifestCheckFile)
773 }
774
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800775 a.proguardBuildActions(ctx)
776
Colin Cross014489c2020-06-02 20:09:13 -0700777 a.linter.mergedManifest = a.aapt.mergedManifestFile
778 a.linter.manifest = a.aapt.manifestPath
779 a.linter.resources = a.aapt.resourceFiles
Colin Crossc0efd1d2020-07-03 11:56:24 -0700780 a.linter.buildModuleReportZip = ctx.Config().UnbundledBuildApps()
Colin Cross014489c2020-06-02 20:09:13 -0700781
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800782 dexJarFile := a.dexBuildActions(ctx)
783
Colin Crossc2d24052020-05-13 11:05:02 -0700784 jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800785 jniJarFile := a.jniBuildActions(jniLibs, ctx)
786
787 if ctx.Failed() {
788 return
789 }
790
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700791 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
792 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800793
794 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800795 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Liz Kammere2b27f42020-05-07 13:24:05 -0700796 var lineageFile android.Path
797 if lineage := String(a.overridableAppProperties.Lineage); lineage != "" {
798 lineageFile = android.PathForModuleSrc(ctx, lineage)
799 }
800 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, lineageFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800801 a.outputFile = packageFile
802
Colin Crosse560c4a2019-03-19 16:03:11 -0700803 for _, split := range a.aapt.splits {
804 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800805 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Liz Kammere2b27f42020-05-07 13:24:05 -0700806 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, lineageFile)
Colin Crosse560c4a2019-03-19 16:03:11 -0700807 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
808 }
809
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800810 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700811 bundleFile := android.PathForModuleOut(ctx, "base.zip")
812 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
813 a.bundleFile = bundleFile
814
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800815 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900816 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
817 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
818 for _, extra := range a.extraOutputFiles {
819 ctx.InstallFile(a.installDir, extra.Base(), extra)
820 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800821 }
Artur Satayev1111b842020-04-27 19:05:28 +0100822
823 a.buildAppDependencyInfo(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700824}
825
Colin Crossc2d24052020-05-13 11:05:02 -0700826type appDepsInterface interface {
827 sdkVersion() sdkSpec
828 minSdkVersion() sdkSpec
829 RequiresStableAPIs(ctx android.BaseModuleContext) bool
830}
831
832func collectAppDeps(ctx android.ModuleContext, app appDepsInterface,
833 shouldCollectRecursiveNativeDeps bool,
Colin Cross094cde42020-02-15 10:38:00 -0800834 checkNativeSdkVersion bool) ([]jniLib, []Certificate) {
Colin Crossc2d24052020-05-13 11:05:02 -0700835
Colin Crossa4f08812018-10-02 22:03:40 -0700836 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900837 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800838 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700839
Colin Crossc2d24052020-05-13 11:05:02 -0700840 if checkNativeSdkVersion {
841 checkNativeSdkVersion = app.sdkVersion().specified() &&
842 app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx)
843 }
844
Peter Collingbournead84f972019-12-17 16:46:18 -0800845 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700846 otherName := ctx.OtherModuleName(module)
847 tag := ctx.OtherModuleDependencyTag(module)
848
Colin Crossf0913fb2020-07-29 12:59:39 -0700849 if IsJniDepTag(tag) || cc.IsSharedDepTag(tag) {
Colin Crossa4f08812018-10-02 22:03:40 -0700850 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800851 if dep.IsNdk() || dep.IsStubs() {
852 return false
853 }
854
Colin Crossa4f08812018-10-02 22:03:40 -0700855 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800856 path := lib.Path()
857 if seenModulePaths[path.String()] {
858 return false
859 }
860 seenModulePaths[path.String()] = true
861
Colin Crossc2d24052020-05-13 11:05:02 -0700862 if checkNativeSdkVersion && dep.SdkVersion() == "" {
863 ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not",
864 otherName)
Colin Cross094cde42020-02-15 10:38:00 -0800865 }
866
Colin Crossa4f08812018-10-02 22:03:40 -0700867 if lib.Valid() {
868 jniLibs = append(jniLibs, jniLib{
Colin Cross403cc152020-07-06 14:15:24 -0700869 name: ctx.OtherModuleName(module),
870 path: path,
871 target: module.Target(),
872 coverageFile: dep.CoverageOutputFile(),
873 unstrippedFile: dep.UnstrippedOutputFile(),
Colin Crossa4f08812018-10-02 22:03:40 -0700874 })
875 } else {
876 ctx.ModuleErrorf("dependency %q missing output file", otherName)
877 }
878 } else {
879 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700880 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800881
882 return shouldCollectRecursiveNativeDeps
883 }
884
885 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700886 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900887 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700888 } else {
889 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
890 }
Colin Crossa4f08812018-10-02 22:03:40 -0700891 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800892
893 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700894 })
895
Colin Crossbd01e2a2018-10-04 15:21:03 -0700896 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700897}
898
Jooyung Han749dc692020-04-15 11:03:39 +0900899func (a *AndroidApp) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) {
Artur Satayev1111b842020-04-27 19:05:28 +0100900 ctx.WalkDeps(func(child, parent android.Module) bool {
901 isExternal := !a.DepIsInSameApex(ctx, child)
902 if am, ok := child.(android.ApexModule); ok {
Jooyung Han749dc692020-04-15 11:03:39 +0900903 if !do(ctx, parent, am, isExternal) {
904 return false
905 }
Artur Satayev1111b842020-04-27 19:05:28 +0100906 }
907 return !isExternal
908 })
909}
910
911func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) {
912 if ctx.Host() {
913 return
914 }
915
916 depsInfo := android.DepNameToDepInfoMap{}
Jooyung Han749dc692020-04-15 11:03:39 +0900917 a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
Artur Satayev1111b842020-04-27 19:05:28 +0100918 depName := to.Name()
919 if info, exist := depsInfo[depName]; exist {
920 info.From = append(info.From, from.Name())
921 info.IsExternal = info.IsExternal && externalDep
922 depsInfo[depName] = info
923 } else {
924 toMinSdkVersion := "(no version)"
925 if m, ok := to.(interface{ MinSdkVersion() string }); ok {
926 if v := m.MinSdkVersion(); v != "" {
927 toMinSdkVersion = v
928 }
929 }
930 depsInfo[depName] = android.ApexModuleDepInfo{
931 To: depName,
932 From: []string{from.Name()},
933 IsExternal: externalDep,
934 MinSdkVersion: toMinSdkVersion,
935 }
936 }
Jooyung Han749dc692020-04-15 11:03:39 +0900937 return true
Artur Satayev1111b842020-04-27 19:05:28 +0100938 })
939
940 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo)
941}
942
Artur Satayev849f8442020-04-28 14:57:42 +0100943func (a *AndroidApp) Updatable() bool {
944 return Bool(a.appProperties.Updatable) || a.ApexModuleBase.Updatable()
945}
946
Colin Cross0ea8ba82019-06-06 14:33:29 -0700947func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800948 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
949 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000950 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800951 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800952 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800953}
954
Jiyong Park0f80c182020-01-31 02:49:53 +0900955func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
956 if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) {
957 return true
958 }
959 return a.Library.DepIsInSameApex(ctx, dep)
960}
961
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900962// For OutputFileProducer interface
963func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
964 switch tag {
965 case ".aapt.srcjar":
966 return []android.Path{a.aaptSrcJar}, nil
Anton Hansson092aca42020-08-13 19:37:22 +0100967 case ".export-package.apk":
968 return []android.Path{a.exportPackage}, nil
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900969 }
970 return a.Library.OutputFiles(tag)
971}
972
Jiyong Parkf7487312019-10-17 12:54:30 +0900973func (a *AndroidApp) Privileged() bool {
974 return Bool(a.appProperties.Privileged)
975}
976
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700977func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
Colin Cross1a6acd42020-06-16 17:51:46 -0700978 return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700979}
980
981func (a *AndroidApp) PreventInstall() {
982 a.appProperties.PreventInstall = true
983}
984
985func (a *AndroidApp) HideFromMake() {
986 a.appProperties.HideFromMake = true
987}
988
989func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) {
990 a.appProperties.IsCoverageVariant = coverage
991}
992
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400993func (a *AndroidApp) EnableCoverageIfNeeded() {}
994
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700995var _ cc.Coverage = (*AndroidApp)(nil)
996
Colin Cross1b16b0e2019-02-12 14:41:32 -0800997// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -0700998func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -0700999 module := &AndroidApp{}
1000
Liz Kammera7a64f32020-07-09 15:16:41 -07001001 module.Module.dexProperties.Optimize.EnabledByDefault = true
1002 module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true)
Colin Cross66dbc0b2017-12-28 12:23:20 -08001003
Colin Crossae5caf52018-05-22 11:11:52 -07001004 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001005 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -07001006
Colin Crossce6734e2020-06-15 16:09:53 -07001007 module.addHostAndDeviceProperties()
Colin Cross36242852017-06-23 15:06:31 -07001008 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -07001009 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001010 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001011 &module.overridableAppProperties,
1012 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -07001013
Colin Crossa4f08812018-10-02 22:03:40 -07001014 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1015 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001016 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +09001017 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -07001018
Colin Cross36242852017-06-23 15:06:31 -07001019 return module
Colin Cross30e076a2015-04-13 13:58:27 -07001020}
Colin Crossae5caf52018-05-22 11:11:52 -07001021
1022type appTestProperties struct {
Liz Kammer6b0c5522020-04-28 16:10:55 -07001023 // The name of the android_app module that the tests will run against.
Colin Crossae5caf52018-05-22 11:11:52 -07001024 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001025
1026 // if specified, the instrumentation target package name in the manifest is overwritten by it.
1027 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -07001028}
1029
1030type AndroidTest struct {
1031 AndroidApp
1032
1033 appTestProperties appTestProperties
1034
1035 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07001036
Dan Shi95d19422020-08-15 12:24:26 -07001037 testConfig android.Path
1038 extraTestConfigs android.Paths
1039 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -07001040}
1041
Jaewoong Jung0949f312019-09-11 10:25:18 -07001042func (a *AndroidTest) InstallInTestcases() bool {
1043 return true
1044}
1045
Colin Crossae5caf52018-05-22 11:11:52 -07001046func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
easoncylee5bcff5d2020-04-30 14:57:06 +08001047 var configs []tradefed.Config
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001048 if a.appTestProperties.Instrumentation_target_package != nil {
1049 a.additionalAaptFlags = append(a.additionalAaptFlags,
1050 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
1051 } else if a.appTestProperties.Instrumentation_for != nil {
1052 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -08001053 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
1054 if overridden {
1055 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
1056 }
1057 }
Colin Crossae5caf52018-05-22 11:11:52 -07001058 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -07001059
easoncylee5bcff5d2020-04-30 14:57:06 +08001060 for _, module := range a.testProperties.Test_mainline_modules {
1061 configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module})
1062 }
1063
Jaewoong Jung39982342020-01-14 10:27:18 -08001064 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
easoncylee5bcff5d2020-04-30 14:57:06 +08001065 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)
Jaewoong Jung39982342020-01-14 10:27:18 -08001066 a.testConfig = a.FixTestConfig(ctx, testConfig)
Dan Shi95d19422020-08-15 12:24:26 -07001067 a.extraTestConfigs = android.PathsForModuleSrc(ctx, a.testProperties.Test_options.Extra_test_configs)
Colin Cross8a497952019-03-05 22:25:09 -08001068 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07001069}
1070
Jaewoong Jung39982342020-01-14 10:27:18 -08001071func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
1072 if testConfig == nil {
1073 return nil
1074 }
1075
1076 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
1077 rule := android.NewRuleBuilder()
1078 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
1079 fixNeeded := false
1080
1081 if ctx.ModuleName() != a.installApkName {
1082 fixNeeded = true
1083 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
1084 }
1085
1086 if a.overridableAppProperties.Package_name != nil {
1087 fixNeeded = true
1088 command.FlagWithInput("--manifest ", a.manifestPath).
1089 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
1090 }
1091
1092 if fixNeeded {
1093 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
1094 return fixedConfig
1095 }
1096 return testConfig
1097}
1098
Colin Cross303e21f2018-08-07 16:49:25 -07001099func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -07001100 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001101}
1102
1103func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
1104 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -07001105 if a.appTestProperties.Instrumentation_for != nil {
1106 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
1107 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
1108 // use instrumentationForTag instead of libTag.
1109 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
1110 }
Colin Crossae5caf52018-05-22 11:11:52 -07001111}
1112
Colin Cross1b16b0e2019-02-12 14:41:32 -08001113// android_test compiles test sources and Android resources into an Android application package `.apk` file and
1114// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -07001115func AndroidTestFactory() android.Module {
1116 module := &AndroidTest{}
1117
Liz Kammera7a64f32020-07-09 15:16:41 -07001118 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -07001119
1120 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -07001121 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001122 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001123 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001124 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001125 module.Module.linter.test = true
Colin Crossae5caf52018-05-22 11:11:52 -07001126
Colin Crossce6734e2020-06-15 16:09:53 -07001127 module.addHostAndDeviceProperties()
Colin Crossae5caf52018-05-22 11:11:52 -07001128 module.AddProperties(
Colin Crossae5caf52018-05-22 11:11:52 -07001129 &module.aaptProperties,
1130 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001131 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001132 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001133 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -07001134 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -07001135
Colin Crossa4f08812018-10-02 22:03:40 -07001136 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1137 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001138 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -07001139 return module
1140}
Colin Crossbd01e2a2018-10-04 15:21:03 -07001141
Colin Cross252fc6f2018-10-04 15:22:03 -07001142type appTestHelperAppProperties struct {
1143 // list of compatibility suites (for example "cts", "vts") that the module should be
1144 // installed into.
1145 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07001146
1147 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
1148 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
1149 // explicitly.
1150 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -07001151}
1152
1153type AndroidTestHelperApp struct {
1154 AndroidApp
1155
1156 appTestHelperAppProperties appTestHelperAppProperties
1157}
1158
Jaewoong Jung326a9412019-11-21 10:41:00 -08001159func (a *AndroidTestHelperApp) InstallInTestcases() bool {
1160 return true
1161}
1162
Colin Cross1b16b0e2019-02-12 14:41:32 -08001163// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
1164// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
1165// test.
Colin Cross252fc6f2018-10-04 15:22:03 -07001166func AndroidTestHelperAppFactory() android.Module {
1167 module := &AndroidTestHelperApp{}
1168
Liz Kammera7a64f32020-07-09 15:16:41 -07001169 module.Module.dexProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001170
1171 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -08001172 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -07001173 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -08001174 module.Module.dexpreopter.isTest = true
Colin Cross014489c2020-06-02 20:09:13 -07001175 module.Module.linter.test = true
Colin Cross252fc6f2018-10-04 15:22:03 -07001176
Colin Crossce6734e2020-06-15 16:09:53 -07001177 module.addHostAndDeviceProperties()
Colin Cross252fc6f2018-10-04 15:22:03 -07001178 module.AddProperties(
Colin Cross252fc6f2018-10-04 15:22:03 -07001179 &module.aaptProperties,
1180 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -08001181 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -07001182 &module.overridableAppProperties,
1183 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -07001184
1185 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1186 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +00001187 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -07001188 return module
1189}
1190
Colin Crossbd01e2a2018-10-04 15:21:03 -07001191type AndroidAppCertificate struct {
1192 android.ModuleBase
1193 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001194 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -07001195}
1196
1197type AndroidAppCertificateProperties struct {
1198 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
1199 Certificate *string
1200}
1201
Colin Cross1b16b0e2019-02-12 14:41:32 -08001202// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
1203// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -07001204func AndroidAppCertificateFactory() android.Module {
1205 module := &AndroidAppCertificate{}
1206 module.AddProperties(&module.properties)
1207 android.InitAndroidModule(module)
1208 return module
1209}
1210
Colin Crossbd01e2a2018-10-04 15:21:03 -07001211func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1212 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +09001213 c.Certificate = Certificate{
Colin Cross503c1d02020-01-28 14:00:53 -08001214 Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"),
1215 Key: android.PathForModuleSrc(ctx, cert+".pk8"),
Colin Crossbd01e2a2018-10-04 15:21:03 -07001216 }
1217}
Jaewoong Jung525443a2019-02-28 15:35:54 -08001218
1219type OverrideAndroidApp struct {
1220 android.ModuleBase
1221 android.OverrideModuleBase
1222}
1223
Sasha Smundak613cbb12020-06-05 10:27:23 -07001224func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung525443a2019-02-28 15:35:54 -08001225 // All the overrides happen in the base module.
1226 // TODO(jungjw): Check the base module type.
1227}
1228
1229// override_android_app is used to create an android_app module based on another android_app by overriding
1230// some of its properties.
1231func OverrideAndroidAppModuleFactory() android.Module {
1232 m := &OverrideAndroidApp{}
1233 m.AddProperties(&overridableAppProperties{})
1234
Jaewoong Jungb639a6a2019-05-10 15:16:29 -07001235 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -08001236 android.InitOverrideModule(m)
1237 return m
1238}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001239
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001240type OverrideAndroidTest struct {
1241 android.ModuleBase
1242 android.OverrideModuleBase
1243}
1244
Sasha Smundak613cbb12020-06-05 10:27:23 -07001245func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -07001246 // All the overrides happen in the base module.
1247 // TODO(jungjw): Check the base module type.
1248}
1249
1250// override_android_test is used to create an android_app module based on another android_test by overriding
1251// some of its properties.
1252func OverrideAndroidTestModuleFactory() android.Module {
1253 m := &OverrideAndroidTest{}
1254 m.AddProperties(&overridableAppProperties{})
1255 m.AddProperties(&appTestProperties{})
1256
1257 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1258 android.InitOverrideModule(m)
1259 return m
1260}
1261
Roshan Pius4df2bc72020-04-27 09:42:27 -07001262type OverrideRuntimeResourceOverlay struct {
1263 android.ModuleBase
1264 android.OverrideModuleBase
1265}
1266
Sasha Smundak613cbb12020-06-05 10:27:23 -07001267func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) {
Roshan Pius4df2bc72020-04-27 09:42:27 -07001268 // All the overrides happen in the base module.
1269 // TODO(jungjw): Check the base module type.
1270}
1271
1272// override_runtime_resource_overlay is used to create a module based on another
1273// runtime_resource_overlay module by overriding some of its properties.
1274func OverrideRuntimeResourceOverlayModuleFactory() android.Module {
1275 m := &OverrideRuntimeResourceOverlay{}
1276 m.AddProperties(&OverridableRuntimeResourceOverlayProperties{})
1277
1278 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
1279 android.InitOverrideModule(m)
1280 return m
1281}
1282
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001283type AndroidAppImport struct {
1284 android.ModuleBase
1285 android.DefaultableModuleBase
Jiyong Park592a6a42020-04-21 22:34:28 +09001286 android.ApexModuleBase
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001287 prebuilt android.Prebuilt
1288
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001289 properties AndroidAppImportProperties
1290 dpiVariants interface{}
1291 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001292
1293 outputFile android.Path
Colin Cross503c1d02020-01-28 14:00:53 -08001294 certificate Certificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001295
1296 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -07001297
1298 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001299
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001300 preprocessed bool
1301
Colin Cross70dda7e2019-10-01 22:05:35 -07001302 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001303}
1304
1305type AndroidAppImportProperties struct {
1306 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001307 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001308
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001309 // The name of a certificate in the default certificate directory or an android_app_certificate
1310 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001311 Certificate *string
1312
1313 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
1314 // be set for presigned modules.
1315 Presigned *bool
1316
Liz Kammer24978992020-05-13 15:49:21 -07001317 // Name of the signing certificate lineage file.
1318 Lineage *string
1319
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001320 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
1321 // need to either specify a specific certificate or be presigned.
1322 Default_dev_cert *bool
1323
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001324 // Specifies that this app should be installed to the priv-app directory,
1325 // where the system will grant it additional privileges not available to
1326 // normal apps.
1327 Privileged *bool
1328
1329 // Names of modules to be overridden. Listed modules can only be other binaries
1330 // (in Make or Soong).
1331 // This does not completely prevent installation of the overridden binaries, but if both
1332 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
1333 // from PRODUCT_PACKAGES.
1334 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001335
1336 // Optional name for the installed app. If unspecified, it is derived from the module name.
1337 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001338}
1339
Martin Stjernholm6d415272020-01-31 17:10:36 +00001340func (a *AndroidAppImport) IsInstallable() bool {
1341 return true
1342}
1343
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001344// Updates properties with variant-specific values.
1345func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001346 config := ctx.Config()
1347
1348 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
1349 // Try DPI variant matches in the reverse-priority order so that the highest priority match
1350 // overwrites everything else.
1351 // TODO(jungjw): Can we optimize this by making it priority order?
1352 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001353 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001354 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001355 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001356 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001357 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001358
1359 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
1360 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
1361 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001362}
1363
Colin Cross1184b642019-12-30 18:43:07 -08001364func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001365 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001366 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
1367 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001368 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001369 }
1370
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001371 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
1372 if err != nil {
1373 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1374 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1375 } else {
1376 panic(err)
1377 }
1378 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -07001379}
1380
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001381func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
1382 cert := android.SrcIsModule(String(a.properties.Certificate))
1383 if cert != "" {
1384 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1385 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001386
Paul Duffin250e6192019-06-07 10:44:37 +01001387 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001388}
1389
1390func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
1391 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001392 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
1393 // with them may invalidate pre-existing signature data.
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001394 if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001395 ctx.Build(pctx, android.BuildParams{
1396 Rule: android.Cp,
1397 Output: outputPath,
1398 Input: inputPath,
1399 })
1400 return
1401 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001402 rule := android.NewRuleBuilder()
1403 rule.Command().
1404 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001405 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001406 FlagWithInput("-i ", inputPath).
1407 FlagWithOutput("-o ", outputPath).
1408 FlagWithArg("-0 ", "'lib/**/*.so'").
1409 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1410 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
1411}
1412
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001413// Returns whether this module should have the dex file stored uncompressed in the APK.
1414func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001415 if ctx.Config().UnbundledBuild() || a.preprocessed {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001416 return false
1417 }
1418
1419 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +09001420 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001421 return true
1422 }
1423
1424 return shouldUncompressDex(ctx, &a.dexpreopter)
1425}
1426
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001427func (a *AndroidAppImport) uncompressDex(
1428 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
1429 rule := android.NewRuleBuilder()
1430 rule.Command().
1431 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -07001432 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001433 FlagWithInput("-i ", inputPath).
1434 FlagWithOutput("-o ", outputPath).
1435 FlagWithArg("-0 ", "'classes*.dex'").
1436 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1437 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
1438}
1439
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001440func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001441 a.generateAndroidBuildActions(ctx)
1442}
1443
Jooyung Han39ee1192020-03-23 20:21:11 +09001444func (a *AndroidAppImport) InstallApkName() string {
1445 return a.BaseModuleName()
1446}
1447
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001448func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001449 numCertPropsSet := 0
1450 if String(a.properties.Certificate) != "" {
1451 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001452 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001453 if Bool(a.properties.Presigned) {
1454 numCertPropsSet++
1455 }
1456 if Bool(a.properties.Default_dev_cert) {
1457 numCertPropsSet++
1458 }
1459 if numCertPropsSet != 1 {
1460 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001461 }
1462
Colin Crossc2d24052020-05-13 11:05:02 -07001463 _, certificates := collectAppDeps(ctx, a, false, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001464
1465 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001466 // TODO: LOCAL_PACKAGE_SPLITS
1467
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001468 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001469
1470 if a.usesLibrary.enforceUsesLibraries() {
1471 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1472 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001473
1474 // TODO: Install or embed JNI libraries
1475
1476 // Uncompress JNI libraries in the apk
1477 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1478 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1479
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001480 var installDir android.InstallPath
1481 if Bool(a.properties.Privileged) {
1482 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001483 } else if ctx.InstallInTestcases() {
1484 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001485 } else {
1486 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1487 }
1488
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001489 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001490 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001491 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001492
1493 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1494 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1495 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1496 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1497
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001498 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001499 if a.dexpreopter.uncompressedDex {
1500 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1501 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1502 dexOutput = dexUncompressed
1503 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001504
Jooyung Han39ee1192020-03-23 20:21:11 +09001505 apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk")
1506
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001507 // TODO: Handle EXTERNAL
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001508
1509 // Sign or align the package if package has not been preprocessed
1510 if a.preprocessed {
1511 a.outputFile = srcApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001512 a.certificate = PresignedCertificate
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001513 } else if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001514 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1515 // Which makes processMainCert's behavior for the empty cert string WAI.
1516 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001517 if len(certificates) != 1 {
1518 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1519 }
Colin Cross503c1d02020-01-28 14:00:53 -08001520 a.certificate = certificates[0]
Jooyung Han39ee1192020-03-23 20:21:11 +09001521 signed := android.PathForModuleOut(ctx, "signed", apkFilename)
Liz Kammer24978992020-05-13 15:49:21 -07001522 var lineageFile android.Path
1523 if lineage := String(a.properties.Lineage); lineage != "" {
1524 lineageFile = android.PathForModuleSrc(ctx, lineage)
1525 }
1526 SignAppPackage(ctx, signed, dexOutput, certificates, lineageFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001527 a.outputFile = signed
1528 } else {
Jooyung Han39ee1192020-03-23 20:21:11 +09001529 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001530 TransformZipAlign(ctx, alignedApk, dexOutput)
1531 a.outputFile = alignedApk
Sasha Smundak18d98bc2020-05-27 16:36:07 -07001532 a.certificate = PresignedCertificate
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001533 }
1534
1535 // TODO: Optionally compress the output apk.
1536
Jiyong Park592a6a42020-04-21 22:34:28 +09001537 if a.IsForPlatform() {
1538 a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile)
1539 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001540
1541 // TODO: androidmk converter jni libs
1542}
1543
1544func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1545 return &a.prebuilt
1546}
1547
1548func (a *AndroidAppImport) Name() string {
1549 return a.prebuilt.Name(a.ModuleBase.Name())
1550}
1551
Dario Frenicde2a032019-10-27 00:29:22 +01001552func (a *AndroidAppImport) OutputFile() android.Path {
1553 return a.outputFile
1554}
1555
Jiyong Park618922e2020-01-08 13:35:43 +09001556func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1557 return nil
1558}
1559
Colin Cross503c1d02020-01-28 14:00:53 -08001560func (a *AndroidAppImport) Certificate() Certificate {
1561 return a.certificate
1562}
1563
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001564var dpiVariantGroupType reflect.Type
1565var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001566
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001567func initAndroidAppImportVariantGroupTypes() {
1568 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1569
1570 archNames := make([]string, len(android.ArchTypeList()))
1571 for i, archType := range android.ArchTypeList() {
1572 archNames[i] = archType.Name
1573 }
1574 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1575}
1576
1577// Populates all variant struct properties at creation time.
1578func (a *AndroidAppImport) populateAllVariantStructs() {
1579 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1580 a.AddProperties(a.dpiVariants)
1581
1582 a.archVariants = reflect.New(archVariantGroupType).Interface()
1583 a.AddProperties(a.archVariants)
1584}
1585
Jiyong Parkf7487312019-10-17 12:54:30 +09001586func (a *AndroidAppImport) Privileged() bool {
1587 return Bool(a.properties.Privileged)
1588}
1589
Sasha Smundak613cbb12020-06-05 10:27:23 -07001590func (a *AndroidAppImport) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool {
Jiyong Park592a6a42020-04-21 22:34:28 +09001591 // android_app_import might have extra dependencies via uses_libs property.
1592 // Don't track the dependency as we don't automatically add those libraries
1593 // to the classpath. It should be explicitly added to java_libs property of APEX
1594 return false
1595}
1596
Colin Crossc2d24052020-05-13 11:05:02 -07001597func (a *AndroidAppImport) sdkVersion() sdkSpec {
1598 return sdkSpecFrom("")
1599}
1600
1601func (a *AndroidAppImport) minSdkVersion() sdkSpec {
1602 return sdkSpecFrom("")
1603}
1604
Jooyung Han749dc692020-04-15 11:03:39 +09001605func (j *AndroidAppImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion int) error {
1606 // Do not check for prebuilts against the min_sdk_version of enclosing APEX
1607 return nil
1608}
1609
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001610func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1611 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1612
1613 variantFields := make([]reflect.StructField, len(variants))
1614 for i, variant := range variants {
1615 variantFields[i] = reflect.StructField{
1616 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001617 Type: props,
1618 }
1619 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001620
1621 variantGroupStruct := reflect.StructOf(variantFields)
1622 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001623 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001624 Name: variantGroupName,
1625 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001626 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001627 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001628}
1629
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001630// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001631// DPI-specific apk source files can be specified using dpi_variants. Example:
1632//
1633// android_app_import {
1634// name: "example_import",
1635// apk: "prebuilts/example.apk",
1636// dpi_variants: {
1637// mdpi: {
1638// apk: "prebuilts/example_mdpi.apk",
1639// },
1640// xhdpi: {
1641// apk: "prebuilts/example_xhdpi.apk",
1642// },
1643// },
1644// certificate: "PRESIGNED",
1645// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001646func AndroidAppImportFactory() android.Module {
1647 module := &AndroidAppImport{}
1648 module.AddProperties(&module.properties)
1649 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001650 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001651 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001652 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001653 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001654 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001655
Jiyong Park592a6a42020-04-21 22:34:28 +09001656 android.InitApexModule(module)
Jaewoong Jung6abfbf72020-05-26 20:10:08 -07001657 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1658 android.InitDefaultableModule(module)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001659 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001660
1661 return module
1662}
Colin Cross50ddcc42019-05-16 12:28:22 -07001663
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001664type androidTestImportProperties struct {
1665 // Whether the prebuilt apk can be installed without additional processing. Default is false.
1666 Preprocessed *bool
1667}
1668
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001669type AndroidTestImport struct {
1670 AndroidAppImport
1671
1672 testProperties testProperties
1673
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001674 testImportProperties androidTestImportProperties
1675
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001676 data android.Paths
1677}
1678
1679func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001680 a.preprocessed = Bool(a.testImportProperties.Preprocessed)
1681
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001682 a.generateAndroidBuildActions(ctx)
1683
1684 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1685}
1686
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001687func (a *AndroidTestImport) InstallInTestcases() bool {
1688 return true
1689}
1690
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001691// android_test_import imports a prebuilt test apk with additional processing specified in the
1692// module. DPI or arch variant configurations can be made as with android_app_import.
1693func AndroidTestImportFactory() android.Module {
1694 module := &AndroidTestImport{}
1695 module.AddProperties(&module.properties)
1696 module.AddProperties(&module.dexpreoptProperties)
1697 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1698 module.AddProperties(&module.testProperties)
Liz Kammer3b70b3f2020-05-20 14:36:30 -07001699 module.AddProperties(&module.testImportProperties)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001700 module.populateAllVariantStructs()
1701 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1702 module.processVariants(ctx)
1703 })
1704
Colin Crossc80828d2020-05-06 22:29:10 -07001705 module.dexpreopter.isTest = true
1706
Jiyong Park592a6a42020-04-21 22:34:28 +09001707 android.InitApexModule(module)
Jaewoong Jung243688e2020-05-01 15:50:08 -07001708 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1709 android.InitDefaultableModule(module)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001710 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1711
1712 return module
1713}
1714
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001715type RuntimeResourceOverlay struct {
1716 android.ModuleBase
1717 android.DefaultableModuleBase
Roshan Pius4df2bc72020-04-27 09:42:27 -07001718 android.OverridableModuleBase
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001719 aapt
1720
Roshan Pius4df2bc72020-04-27 09:42:27 -07001721 properties RuntimeResourceOverlayProperties
1722 overridableProperties OverridableRuntimeResourceOverlayProperties
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001723
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001724 certificate Certificate
1725
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001726 outputFile android.Path
1727 installDir android.InstallPath
1728}
1729
1730type RuntimeResourceOverlayProperties struct {
1731 // the name of a certificate in the default certificate directory or an android_app_certificate
1732 // module name in the form ":module".
1733 Certificate *string
1734
Liz Kammer966b2f02020-05-19 16:15:25 -07001735 // Name of the signing certificate lineage file.
1736 Lineage *string
1737
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001738 // optional theme name. If specified, the overlay package will be applied
1739 // only when the ro.boot.vendor.overlay.theme system property is set to the same value.
1740 Theme *string
1741
1742 // if not blank, set to the version of the sdk to compile against.
1743 // Defaults to compiling against the current platform.
1744 Sdk_version *string
1745
1746 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
1747 // Defaults to sdk_version if not set.
1748 Min_sdk_version *string
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001749
1750 // list of android_library modules whose resources are extracted and linked against statically
1751 Static_libs []string
1752
1753 // list of android_app modules whose resources are extracted and linked against
1754 Resource_libs []string
Jaewoong Jungad0177b2020-04-24 15:22:40 -07001755
1756 // Names of modules to be overridden. Listed modules can only be other overlays
1757 // (in Make or Soong).
1758 // This does not completely prevent installation of the overridden overlays, but if both
1759 // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed
1760 // from PRODUCT_PACKAGES.
1761 Overrides []string
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001762}
1763
Jiyong Park69aeba92020-04-24 21:16:36 +09001764// RuntimeResourceOverlayModule interface is used by the apex package to gather information from
1765// a RuntimeResourceOverlay module.
1766type RuntimeResourceOverlayModule interface {
1767 android.Module
1768 OutputFile() android.Path
1769 Certificate() Certificate
1770 Theme() string
1771}
1772
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001773func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) {
1774 sdkDep := decodeSdkDep(ctx, sdkContext(r))
1775 if sdkDep.hasFrameworkLibs() {
1776 r.aapt.deps(ctx, sdkDep)
1777 }
1778
1779 cert := android.SrcIsModule(String(r.properties.Certificate))
1780 if cert != "" {
1781 ctx.AddDependency(ctx.Module(), certificateTag, cert)
1782 }
Jaewoong Jungfe3c7f62020-04-09 16:15:30 -07001783
1784 ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...)
1785 ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001786}
1787
1788func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1789 // Compile and link resources
1790 r.aapt.hasNoCode = true
Jaewoong Jungf0f747c2020-01-24 10:30:02 -08001791 // Do not remove resources without default values nor dedupe resource configurations with the same value
Roshan Pius4df2bc72020-04-27 09:42:27 -07001792 aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"}
1793 // Allow the override of "package name" and "overlay target package name"
1794 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
1795 if overridden || r.overridableProperties.Package_name != nil {
1796 // The product override variable has a priority over the package_name property.
1797 if !overridden {
1798 manifestPackageName = *r.overridableProperties.Package_name
1799 }
1800 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
1801 }
1802 if r.overridableProperties.Target_package_name != nil {
1803 aaptLinkFlags = append(aaptLinkFlags,
1804 "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name)
1805 }
1806 r.aapt.buildActions(ctx, r, aaptLinkFlags...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001807
1808 // Sign the built package
Colin Crossc2d24052020-05-13 11:05:02 -07001809 _, certificates := collectAppDeps(ctx, r, false, false)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001810 certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx)
1811 signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk")
Liz Kammer966b2f02020-05-19 16:15:25 -07001812 var lineageFile android.Path
1813 if lineage := String(r.properties.Lineage); lineage != "" {
1814 lineageFile = android.PathForModuleSrc(ctx, lineage)
1815 }
1816 SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, lineageFile)
Jaewoong Jung78ec5d82020-01-31 10:11:47 -08001817 r.certificate = certificates[0]
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001818
1819 r.outputFile = signed
1820 r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme))
1821 ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile)
1822}
1823
Jiyong Park6a927c42020-01-21 02:03:43 +09001824func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec {
1825 return sdkSpecFrom(String(r.properties.Sdk_version))
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001826}
1827
1828func (r *RuntimeResourceOverlay) systemModules() string {
1829 return ""
1830}
1831
Jiyong Park6a927c42020-01-21 02:03:43 +09001832func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001833 if r.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +09001834 return sdkSpecFrom(*r.properties.Min_sdk_version)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001835 }
1836 return r.sdkVersion()
1837}
1838
Jiyong Park6a927c42020-01-21 02:03:43 +09001839func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec {
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001840 return r.sdkVersion()
1841}
1842
Jiyong Park69aeba92020-04-24 21:16:36 +09001843func (r *RuntimeResourceOverlay) Certificate() Certificate {
1844 return r.certificate
1845}
1846
1847func (r *RuntimeResourceOverlay) OutputFile() android.Path {
1848 return r.outputFile
1849}
1850
1851func (r *RuntimeResourceOverlay) Theme() string {
1852 return String(r.properties.Theme)
1853}
1854
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001855// runtime_resource_overlay generates a resource-only apk file that can overlay application and
1856// system resources at run time.
1857func RuntimeResourceOverlayFactory() android.Module {
1858 module := &RuntimeResourceOverlay{}
1859 module.AddProperties(
1860 &module.properties,
Roshan Pius4df2bc72020-04-27 09:42:27 -07001861 &module.aaptProperties,
1862 &module.overridableProperties)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001863
Roshan Pius4df2bc72020-04-27 09:42:27 -07001864 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
1865 android.InitDefaultableModule(module)
1866 android.InitOverridableModule(module, &module.properties.Overrides)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -08001867 return module
1868}
1869
Colin Cross50ddcc42019-05-16 12:28:22 -07001870type UsesLibraryProperties struct {
1871 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1872 Uses_libs []string
1873
1874 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1875 // required=false.
1876 Optional_uses_libs []string
1877
1878 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1879 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1880 Enforce_uses_libs *bool
1881}
1882
1883// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1884// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1885// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1886// with knowledge of their shared libraries.
1887type usesLibrary struct {
1888 usesLibraryProperties UsesLibraryProperties
1889}
1890
Paul Duffin250e6192019-06-07 10:44:37 +01001891func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001892 if !ctx.Config().UnbundledBuild() {
1893 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1894 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001895 // Only add these extra dependencies if the module depends on framework libs. This avoids
1896 // creating a cyclic dependency:
1897 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1898 if hasFrameworkLibs {
Ulya Trafimovich5f364b62020-06-30 12:39:01 +01001899 // Dexpreopt needs paths to the dex jars of these libraries in order to construct
1900 // class loader context for dex2oat. Add them as a dependency with a special tag.
Colin Cross3245b2c2019-06-07 13:18:09 -07001901 ctx.AddVariationDependencies(nil, usesLibTag,
1902 "org.apache.http.legacy",
1903 "android.hidl.base-V1.0-java",
1904 "android.hidl.manager-V1.0-java")
Ulya Trafimovichc9af5382020-05-29 15:35:06 +01001905 ctx.AddVariationDependencies(nil, usesLibTag, optionalUsesLibs...)
Colin Cross3245b2c2019-06-07 13:18:09 -07001906 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001907 }
1908}
1909
1910// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1911// build.
1912func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1913 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1914 return optionalUsesLibs
1915}
1916
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001917// usesLibraryPaths returns a map of module names of shared library dependencies to the paths
1918// to their dex jars on host and on device.
1919func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) dexpreopt.LibraryPaths {
1920 usesLibPaths := make(dexpreopt.LibraryPaths)
Colin Cross50ddcc42019-05-16 12:28:22 -07001921
1922 if !ctx.Config().UnbundledBuild() {
1923 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001924 dep := ctx.OtherModuleName(m)
Colin Cross50ddcc42019-05-16 12:28:22 -07001925 if lib, ok := m.(Dependency); ok {
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001926 buildPath := lib.DexJarBuildPath()
1927 if buildPath == nil {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001928 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must"+
1929 " produce a dex jar, does it have installable: true?", dep)
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001930 return
Colin Cross50ddcc42019-05-16 12:28:22 -07001931 }
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +01001932
1933 var devicePath string
1934 installPath := lib.DexJarInstallPath()
1935 if installPath == nil {
1936 devicePath = filepath.Join("/system/framework", dep+".jar")
1937 } else {
1938 devicePath = android.InstallPathToOnDevicePath(ctx, installPath.(android.InstallPath))
1939 }
1940
1941 usesLibPaths[dep] = &dexpreopt.LibraryPath{buildPath, devicePath}
Colin Cross50ddcc42019-05-16 12:28:22 -07001942 } else if ctx.Config().AllowMissingDependencies() {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001943 ctx.AddMissingDependencies([]string{dep})
Colin Cross50ddcc42019-05-16 12:28:22 -07001944 } else {
Ulya Trafimovichd4bcea42020-06-03 14:57:22 +01001945 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be "+
1946 "a java library", dep)
Colin Cross50ddcc42019-05-16 12:28:22 -07001947 }
1948 })
1949 }
1950
1951 return usesLibPaths
1952}
1953
1954// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1955// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1956// unconditionally in the future.
1957func (u *usesLibrary) enforceUsesLibraries() bool {
1958 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1959 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1960 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1961}
1962
1963// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1964// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1965func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1966 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1967
1968 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001969 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001970 Flag("--enforce-uses-libraries").
1971 Input(manifest).
1972 FlagWithOutput("-o ", outputFile)
1973
1974 for _, lib := range u.usesLibraryProperties.Uses_libs {
1975 cmd.FlagWithArg("--uses-library ", lib)
1976 }
1977
1978 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1979 cmd.FlagWithArg("--optional-uses-library ", lib)
1980 }
1981
1982 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1983
1984 return outputFile
1985}
1986
1987// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1988// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1989func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1990 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1991
1992 rule := android.NewRuleBuilder()
1993 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1994 rule.Command().
1995 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1996 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1997 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1998 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1999 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
2000
2001 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
2002
2003 return outputFile
2004}