blob: e9941f2d29e5ab90db7b4f99dc31d8a661ff5ab0 [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"
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070023 "strings"
Colin Cross30e076a2015-04-13 13:58:27 -070024
Colin Cross50ddcc42019-05-16 12:28:22 -070025 "github.com/google/blueprint"
26 "github.com/google/blueprint/proptools"
27
Colin Cross635c3b02016-05-18 15:37:25 -070028 "android/soong/android"
Colin Crossa4f08812018-10-02 22:03:40 -070029 "android/soong/cc"
Colin Cross303e21f2018-08-07 16:49:25 -070030 "android/soong/tradefed"
Colin Cross30e076a2015-04-13 13:58:27 -070031)
32
Jaewoong Jung3e18b192019-06-11 12:25:34 -070033var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"}
Jaewoong Junga5e5abc2019-04-26 14:31:50 -070034
Colin Cross3bc7ffa2017-11-22 16:19:37 -080035func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000036 RegisterAppBuildComponents(android.InitRegistrationContext)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -070037
38 initAndroidAppImportVariantGroupTypes()
Colin Cross3bc7ffa2017-11-22 16:19:37 -080039}
40
Paul Duffinf9b1da02019-12-18 19:51:55 +000041func RegisterAppBuildComponents(ctx android.RegistrationContext) {
42 ctx.RegisterModuleType("android_app", AndroidAppFactory)
43 ctx.RegisterModuleType("android_test", AndroidTestFactory)
44 ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
45 ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
46 ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
47 ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory)
48 ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory)
49 ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory)
50}
51
Colin Cross30e076a2015-04-13 13:58:27 -070052// AndroidManifest.xml merging
53// package splits
54
Colin Crossfabb6082018-02-20 17:22:23 -080055type appProperties struct {
Colin Crossbd01e2a2018-10-04 15:21:03 -070056 // Names of extra android_app_certificate modules to sign the apk with in the form ":module".
Colin Cross7d5136f2015-05-11 13:39:40 -070057 Additional_certificates []string
58
59 // If set, create package-export.apk, which other packages can
60 // use to get PRODUCT-agnostic resource data like IDs and type definitions.
Nan Zhangea568a42017-11-08 21:20:04 -080061 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -070062
Colin Cross16056062017-12-13 22:46:28 -080063 // Specifies that this app should be installed to the priv-app directory,
64 // where the system will grant it additional privileges not available to
65 // normal apps.
66 Privileged *bool
Colin Crossa97c5d32018-03-28 14:58:31 -070067
68 // list of resource labels to generate individual resource packages
69 Package_splits []string
Jason Monkd4122be2018-08-10 09:33:36 -040070
71 // Names of modules to be overridden. Listed modules can only be other binaries
72 // (in Make or Soong).
73 // This does not completely prevent installation of the overridden binaries, but if both
74 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
75 // from PRODUCT_PACKAGES.
76 Overrides []string
Colin Crossa4f08812018-10-02 22:03:40 -070077
78 // list of native libraries that will be provided in or alongside the resulting jar
79 Jni_libs []string `android:"arch_variant"`
80
Jaewoong Jungbc625cd2019-05-06 15:48:44 -070081 // STL library to use for JNI libraries.
82 Stl *string `android:"arch_variant"`
83
Colin Crosse4246ab2019-02-05 21:55:21 -080084 // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
85 // 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 +090086 // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for
87 // android_app modules that are embedded to APEXes, defaults to false for other module types where the native
88 // libraries are generally preinstalled outside the APK.
Colin Crosse4246ab2019-02-05 21:55:21 -080089 Use_embedded_native_libs *bool
Colin Cross46abdad2019-02-07 13:07:08 -080090
91 // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
92 // they are used from inside the APK at runtime.
93 Use_embedded_dex *bool
Colin Cross47fa9d32019-03-26 10:51:39 -070094
95 // Forces native libraries to always be packaged into the APK,
96 // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
97 // True for android_test* modules.
98 AlwaysPackageNativeLibs bool `blueprint:"mutated"`
Jaewoong Jung5b425e22019-06-17 17:40:56 -070099
100 // If set, find and merge all NOTICE files that this module and its dependencies have and store
101 // it in the APK as an asset.
102 Embed_notices *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700103}
104
Jaewoong Jung525443a2019-02-28 15:35:54 -0800105// android_app properties that can be overridden by override_android_app
106type overridableAppProperties struct {
107 // The name of a certificate in the default certificate directory, blank to use the default product certificate,
108 // or an android_app_certificate module name in the form ":module".
109 Certificate *string
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700110
111 // the package name of this app. The package name in the manifest file is used if one was not given.
112 Package_name *string
Jaewoong Jung525443a2019-02-28 15:35:54 -0800113}
114
Colin Cross30e076a2015-04-13 13:58:27 -0700115type AndroidApp struct {
Colin Crossa97c5d32018-03-28 14:58:31 -0700116 Library
117 aapt
Jaewoong Jung525443a2019-02-28 15:35:54 -0800118 android.OverridableModuleBase
Colin Crossa97c5d32018-03-28 14:58:31 -0700119
Colin Cross50ddcc42019-05-16 12:28:22 -0700120 usesLibrary usesLibrary
121
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900122 certificate Certificate
Colin Cross30e076a2015-04-13 13:58:27 -0700123
Colin Crossfabb6082018-02-20 17:22:23 -0800124 appProperties appProperties
Colin Crossae5caf52018-05-22 11:11:52 -0700125
Jaewoong Jung525443a2019-02-28 15:35:54 -0800126 overridableAppProperties overridableAppProperties
127
Colin Crossa4f08812018-10-02 22:03:40 -0700128 installJniLibs []jniLib
Colin Crossf6237212018-10-29 23:14:58 -0700129
130 bundleFile android.Path
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800131
132 // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
133 installApkName string
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800134
Colin Cross70dda7e2019-10-01 22:05:35 -0700135 installDir android.InstallPath
Jaewoong Jung0949f312019-09-11 10:25:18 -0700136
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700137 onDeviceDir string
138
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800139 additionalAaptFlags []string
Jaewoong Jung98772792019-07-01 17:15:13 -0700140
141 noticeOutputs android.NoticeOutputs
Colin Crosse1731a52017-12-14 11:22:55 -0800142}
143
Colin Cross89c31582018-04-30 15:55:11 -0700144func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
145 return nil
146}
147
Colin Cross66f78822018-05-02 12:58:28 -0700148func (a *AndroidApp) ExportedStaticPackages() android.Paths {
149 return nil
150}
151
Sundong Ahne1f05aa2019-08-27 13:55:42 +0900152func (a *AndroidApp) OutputFile() android.Path {
153 return a.outputFile
154}
155
Colin Crossa97c5d32018-03-28 14:58:31 -0700156var _ AndroidLibraryDependency = (*AndroidApp)(nil)
157
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900158type Certificate struct {
159 Pem, Key android.Path
Colin Cross30e076a2015-04-13 13:58:27 -0700160}
161
Colin Cross46c9b8b2017-06-22 16:51:17 -0700162func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
163 a.Module.deps(ctx)
Colin Crossa4f08812018-10-02 22:03:40 -0700164
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700165 if String(a.appProperties.Stl) == "c++_shared" && a.sdkVersion() == "" {
166 ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
167 }
168
Paul Duffin250e6192019-06-07 10:44:37 +0100169 sdkDep := decodeSdkDep(ctx, sdkContext(a))
170 if sdkDep.hasFrameworkLibs() {
171 a.aapt.deps(ctx, sdkDep)
Colin Cross30e076a2015-04-13 13:58:27 -0700172 }
Colin Crossa4f08812018-10-02 22:03:40 -0700173
Peter Collingbournead84f972019-12-17 16:46:18 -0800174 tag := &jniDependencyTag{}
Colin Crossa4f08812018-10-02 22:03:40 -0700175 for _, jniTarget := range ctx.MultiTargets() {
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700176 variation := append(jniTarget.Variations(),
177 blueprint.Variation{Mutator: "link", Variation: "shared"})
Colin Crossa4f08812018-10-02 22:03:40 -0700178 ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
179 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700180
Paul Duffin250e6192019-06-07 10:44:37 +0100181 a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs())
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700182}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700183
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700184func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800185 cert := android.SrcIsModule(a.getCertString(ctx))
Colin Crossbd01e2a2018-10-04 15:21:03 -0700186 if cert != "" {
187 ctx.AddDependency(ctx.Module(), certificateTag, cert)
188 }
189
190 for _, cert := range a.appProperties.Additional_certificates {
191 cert = android.SrcIsModule(cert)
192 if cert != "" {
193 ctx.AddDependency(ctx.Module(), certificateTag, cert)
194 } else {
195 ctx.PropertyErrorf("additional_certificates",
196 `must be names of android_app_certificate modules in the form ":module"`)
197 }
198 }
Colin Cross30e076a2015-04-13 13:58:27 -0700199}
200
Jeongik Cha538c0d02019-07-11 15:54:27 +0900201func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
202 a.generateAndroidBuildActions(ctx)
203}
204
Colin Cross46c9b8b2017-06-22 16:51:17 -0700205func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jeongik Cha538c0d02019-07-11 15:54:27 +0900206 a.checkPlatformAPI(ctx)
Jeongik Cha2cc570d2019-10-29 15:44:45 +0900207 a.checkSdkVersion(ctx)
Colin Crossae5caf52018-05-22 11:11:52 -0700208 a.generateAndroidBuildActions(ctx)
209}
210
Sasha Smundak6ad77252019-05-01 13:16:22 -0700211// Returns true if the native libraries should be stored in the APK uncompressed and the
Colin Crosse4246ab2019-02-05 21:55:21 -0800212// extractNativeLibs application flag should be set to false in the manifest.
Sasha Smundak6ad77252019-05-01 13:16:22 -0700213func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
Colin Crosse4246ab2019-02-05 21:55:21 -0800214 minSdkVersion, err := sdkVersionToNumber(ctx, a.minSdkVersion())
215 if err != nil {
216 ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
217 }
218
Jiyong Park52cd06f2019-11-11 10:14:32 +0900219 return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) ||
220 !a.IsForPlatform()
Colin Crosse4246ab2019-02-05 21:55:21 -0800221}
222
Colin Cross43f08db2018-11-12 10:13:39 -0800223// Returns whether this module should have the dex file stored uncompressed in the APK.
224func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
Colin Cross46abdad2019-02-07 13:07:08 -0800225 if Bool(a.appProperties.Use_embedded_dex) {
226 return true
227 }
228
Colin Cross53a87f52019-06-25 13:35:30 -0700229 // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may
230 // be preinstalled as prebuilts).
Jiyong Parkf7487312019-10-17 12:54:30 +0900231 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000232 return true
233 }
234
Colin Cross53a87f52019-06-25 13:35:30 -0700235 if ctx.Config().UnbundledBuild() {
236 return false
237 }
238
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700239 return shouldUncompressDex(ctx, &a.dexpreopter)
Colin Cross5a0dcd52018-10-05 14:20:06 -0700240}
241
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700242func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
243 return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
Jiyong Park52cd06f2019-11-11 10:14:32 +0900244 !a.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700245}
246
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800247func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
David Brazdild25060a2019-02-18 18:24:16 +0000248 a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
249
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700250 // Ask manifest_fixer to add or update the application element indicating this app has no code.
251 a.aapt.hasNoCode = !a.hasCode(ctx)
252
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800253 aaptLinkFlags := []string{}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800254
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800255 // Add TARGET_AAPT_CHARACTERISTICS values to AAPT link flags if they exist and --product flags were not provided.
Colin Crosse78dcd32018-04-19 15:25:19 -0700256 hasProduct := false
257 for _, f := range a.aaptProperties.Aaptflags {
258 if strings.HasPrefix(f, "--product") {
259 hasProduct = true
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800260 break
Colin Crosse78dcd32018-04-19 15:25:19 -0700261 }
262 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700263 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800264 aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Crosse78dcd32018-04-19 15:25:19 -0700265 }
266
Dan Willemsen72be5902018-10-24 20:24:57 -0700267 if !Bool(a.aaptProperties.Aapt_include_all_resources) {
268 // Product AAPT config
269 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800270 aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
Dan Willemsen72be5902018-10-24 20:24:57 -0700271 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700272
Dan Willemsen72be5902018-10-24 20:24:57 -0700273 // Product AAPT preferred config
274 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800275 aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Dan Willemsen72be5902018-10-24 20:24:57 -0700276 }
Colin Crosse78dcd32018-04-19 15:25:19 -0700277 }
278
Jiyong Park7f67f482019-01-05 12:57:48 +0900279 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jaewoong Jung6f373f62019-03-13 10:13:24 -0700280 if overridden || a.overridableAppProperties.Package_name != nil {
281 // The product override variable has a priority over the package_name property.
282 if !overridden {
283 manifestPackageName = *a.overridableAppProperties.Package_name
284 }
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800285 aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
Jiyong Park7f67f482019-01-05 12:57:48 +0900286 }
287
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800288 aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
289
Colin Crosse560c4a2019-03-19 16:03:11 -0700290 a.aapt.splitNames = a.appProperties.Package_splits
Colin Cross50ddcc42019-05-16 12:28:22 -0700291 a.aapt.sdkLibraries = a.exportedSdkLibs
Colin Crosse560c4a2019-03-19 16:03:11 -0700292
Jaewoong Jungde4c02f2019-01-22 11:19:56 -0800293 a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
Colin Cross30e076a2015-04-13 13:58:27 -0700294
Colin Cross46c9b8b2017-06-22 16:51:17 -0700295 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700296 a.properties.Manifest = nil
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800297}
Colin Cross30e076a2015-04-13 13:58:27 -0700298
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800299func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
Colin Cross89c31582018-04-30 15:55:11 -0700300 var staticLibProguardFlagFiles android.Paths
301 ctx.VisitDirectDeps(func(m android.Module) {
302 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
303 staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
304 }
305 })
306
307 staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
308
309 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
310 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800311}
Colin Cross66dbc0b2017-12-28 12:23:20 -0800312
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800313func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
Colin Cross43f08db2018-11-12 10:13:39 -0800314
315 var installDir string
316 if ctx.ModuleName() == "framework-res" {
317 // framework-res.apk is installed as system/framework/framework-res.apk
318 installDir = "framework"
Jiyong Parkf7487312019-10-17 12:54:30 +0900319 } else if a.Privileged() {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800320 installDir = filepath.Join("priv-app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800321 } else {
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800322 installDir = filepath.Join("app", a.installApkName)
Colin Cross43f08db2018-11-12 10:13:39 -0800323 }
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800324 a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000325 a.dexpreopter.isInstallable = Bool(a.properties.Installable)
326 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -0700327
328 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
329 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
330 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
331 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
332 a.dexpreopter.manifestFile = a.mergedManifestFile
333
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +0000334 a.deviceProperties.UncompressDex = a.dexpreopter.uncompressedDex
Colin Cross5a0dcd52018-10-05 14:20:06 -0700335
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800336 if ctx.ModuleName() != "framework-res" {
337 a.Module.compile(ctx, a.aaptSrcJar)
338 }
Colin Cross30e076a2015-04-13 13:58:27 -0700339
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800340 return a.maybeStrippedDexJarFile
341}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800342
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800343func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
Colin Crossa4f08812018-10-02 22:03:40 -0700344 var jniJarFile android.WritablePath
Colin Crossa4f08812018-10-02 22:03:40 -0700345 if len(jniLibs) > 0 {
Jaewoong Jungbc625cd2019-05-06 15:48:44 -0700346 if a.shouldEmbedJnis(ctx) {
Colin Crossa4f08812018-10-02 22:03:40 -0700347 jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
Sasha Smundak6ad77252019-05-01 13:16:22 -0700348 TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
Colin Crossa4f08812018-10-02 22:03:40 -0700349 } else {
350 a.installJniLibs = jniLibs
351 }
352 }
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800353 return jniJarFile
354}
Colin Crossa4f08812018-10-02 22:03:40 -0700355
Jaewoong Jung0949f312019-09-11 10:25:18 -0700356func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) {
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700357 // Collect NOTICE files from all dependencies.
358 seenModules := make(map[android.Module]bool)
359 noticePathSet := make(map[android.Path]bool)
360
361 ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
362 // Have we already seen this?
363 if _, ok := seenModules[child]; ok {
364 return false
365 }
366 seenModules[child] = true
367
368 // Skip host modules.
369 if child.Target().Os.Class == android.Host || child.Target().Os.Class == android.HostCross {
370 return false
371 }
372
373 path := child.(android.Module).NoticeFile()
374 if path.Valid() {
375 noticePathSet[path.Path()] = true
376 }
377 return true
378 })
379
380 // If the app has one, add it too.
381 if a.NoticeFile().Valid() {
382 noticePathSet[a.NoticeFile().Path()] = true
383 }
384
385 if len(noticePathSet) == 0 {
Jaewoong Jung98772792019-07-01 17:15:13 -0700386 return
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700387 }
388 var noticePaths []android.Path
389 for path := range noticePathSet {
390 noticePaths = append(noticePaths, path)
391 }
392 sort.Slice(noticePaths, func(i, j int) bool {
393 return noticePaths[i].String() < noticePaths[j].String()
394 })
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700395
Jaewoong Jung0949f312019-09-11 10:25:18 -0700396 a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700397}
398
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700399// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
400// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
401func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
402 if android.SrcIsModule(certPropValue) == "" {
403 var mainCert Certificate
404 if certPropValue != "" {
405 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
406 mainCert = Certificate{
407 defaultDir.Join(ctx, certPropValue+".x509.pem"),
408 defaultDir.Join(ctx, certPropValue+".pk8"),
409 }
410 } else {
411 pem, key := ctx.Config().DefaultAppCertificate(ctx)
412 mainCert = Certificate{pem, key}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700413 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700414 certificates = append([]Certificate{mainCert}, certificates...)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700415 }
416
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700417 if !m.Platform() {
418 certPath := certificates[0].Pem.String()
Jeongik Chac9464142019-01-07 12:07:27 +0900419 systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
420 if strings.HasPrefix(certPath, systemCertPath) {
421 enforceSystemCert := ctx.Config().EnforceSystemCertificate()
422 whitelist := ctx.Config().EnforceSystemCertificateWhitelist()
423
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700424 if enforceSystemCert && !inList(m.Name(), whitelist) {
Jeongik Chac9464142019-01-07 12:07:27 +0900425 ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
426 }
427 }
428 }
429
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700430 return certificates
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800431}
432
433func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross50ddcc42019-05-16 12:28:22 -0700434 var apkDeps android.Paths
435
Jeongik Cha538c0d02019-07-11 15:54:27 +0900436 a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
437 a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
438
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800439 // Check if the install APK name needs to be overridden.
Jaewoong Jung525443a2019-02-28 15:35:54 -0800440 a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
Jaewoong Jung9d22a912019-01-23 16:27:47 -0800441
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700442 if ctx.ModuleName() == "framework-res" {
443 // framework-res.apk is installed as system/framework/framework-res.apk
Jaewoong Jung0949f312019-09-11 10:25:18 -0700444 a.installDir = android.PathForModuleInstall(ctx, "framework")
Jiyong Parkf7487312019-10-17 12:54:30 +0900445 } else if a.Privileged() {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700446 a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
447 } else if ctx.InstallInTestcases() {
Jaewoong Jung326a9412019-11-21 10:41:00 -0800448 a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700449 } else {
Jaewoong Jung0949f312019-09-11 10:25:18 -0700450 a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700451 }
Jaewoong Jung7dd4ae22019-09-27 17:13:15 -0700452 a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir)
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700453
Jaewoong Jung0949f312019-09-11 10:25:18 -0700454 a.noticeBuildActions(ctx)
Jaewoong Jung98772792019-07-01 17:15:13 -0700455 if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") {
456 a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput
457 }
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700458
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800459 // Process all building blocks, from AAPT to certificates.
460 a.aaptBuildActions(ctx)
461
Colin Cross50ddcc42019-05-16 12:28:22 -0700462 if a.usesLibrary.enforceUsesLibraries() {
463 manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
464 apkDeps = append(apkDeps, manifestCheckFile)
465 }
466
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800467 a.proguardBuildActions(ctx)
468
469 dexJarFile := a.dexBuildActions(ctx)
470
Peter Collingbournead84f972019-12-17 16:46:18 -0800471 jniLibs, certificateDeps := collectAppDeps(ctx, a.shouldEmbedJnis(ctx))
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800472 jniJarFile := a.jniBuildActions(jniLibs, ctx)
473
474 if ctx.Failed() {
475 return
476 }
477
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700478 certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
479 a.certificate = certificates[0]
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800480
481 // Build a final signed app package.
Jaewoong Jung5a498812019-11-07 14:14:38 -0800482 packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk")
Colin Cross50ddcc42019-05-16 12:28:22 -0700483 CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800484 a.outputFile = packageFile
485
Colin Crosse560c4a2019-03-19 16:03:11 -0700486 for _, split := range a.aapt.splits {
487 // Sign the split APKs
Jaewoong Jung5a498812019-11-07 14:14:38 -0800488 packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk")
Colin Cross50ddcc42019-05-16 12:28:22 -0700489 CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps)
Colin Crosse560c4a2019-03-19 16:03:11 -0700490 a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
491 }
492
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800493 // Build an app bundle.
Colin Crossf6237212018-10-29 23:14:58 -0700494 bundleFile := android.PathForModuleOut(ctx, "base.zip")
495 BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
496 a.bundleFile = bundleFile
497
Jaewoong Jung590b1ae2019-01-22 16:40:58 -0800498 // Install the app package.
Jiyong Park8ba50f92019-11-13 15:01:01 +0900499 if (Bool(a.Module.properties.Installable) || ctx.Host()) && a.IsForPlatform() {
500 ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile)
501 for _, extra := range a.extraOutputFiles {
502 ctx.InstallFile(a.installDir, extra.Base(), extra)
503 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800504 }
Colin Cross30e076a2015-04-13 13:58:27 -0700505}
506
Peter Collingbournead84f972019-12-17 16:46:18 -0800507func collectAppDeps(ctx android.ModuleContext, shouldCollectRecursiveNativeDeps bool) ([]jniLib, []Certificate) {
Colin Crossa4f08812018-10-02 22:03:40 -0700508 var jniLibs []jniLib
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900509 var certificates []Certificate
Peter Collingbournead84f972019-12-17 16:46:18 -0800510 seenModulePaths := make(map[string]bool)
Colin Crossa4f08812018-10-02 22:03:40 -0700511
Peter Collingbournead84f972019-12-17 16:46:18 -0800512 ctx.WalkDeps(func(module android.Module, parent android.Module) bool {
Colin Crossa4f08812018-10-02 22:03:40 -0700513 otherName := ctx.OtherModuleName(module)
514 tag := ctx.OtherModuleDependencyTag(module)
515
Peter Collingbournead84f972019-12-17 16:46:18 -0800516 if IsJniDepTag(tag) || tag == cc.SharedDepTag {
Colin Crossa4f08812018-10-02 22:03:40 -0700517 if dep, ok := module.(*cc.Module); ok {
Peter Collingbournead84f972019-12-17 16:46:18 -0800518 if dep.IsNdk() || dep.IsStubs() {
519 return false
520 }
521
Colin Crossa4f08812018-10-02 22:03:40 -0700522 lib := dep.OutputFile()
Peter Collingbournead84f972019-12-17 16:46:18 -0800523 path := lib.Path()
524 if seenModulePaths[path.String()] {
525 return false
526 }
527 seenModulePaths[path.String()] = true
528
Colin Crossa4f08812018-10-02 22:03:40 -0700529 if lib.Valid() {
530 jniLibs = append(jniLibs, jniLib{
531 name: ctx.OtherModuleName(module),
Peter Collingbournead84f972019-12-17 16:46:18 -0800532 path: path,
533 target: module.Target(),
Colin Crossa4f08812018-10-02 22:03:40 -0700534 })
535 } else {
536 ctx.ModuleErrorf("dependency %q missing output file", otherName)
537 }
538 } else {
539 ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
Colin Crossa4f08812018-10-02 22:03:40 -0700540 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800541
542 return shouldCollectRecursiveNativeDeps
543 }
544
545 if tag == certificateTag {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700546 if dep, ok := module.(*AndroidAppCertificate); ok {
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900547 certificates = append(certificates, dep.Certificate)
Colin Crossbd01e2a2018-10-04 15:21:03 -0700548 } else {
549 ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
550 }
Colin Crossa4f08812018-10-02 22:03:40 -0700551 }
Peter Collingbournead84f972019-12-17 16:46:18 -0800552
553 return false
Colin Crossa4f08812018-10-02 22:03:40 -0700554 })
555
Colin Crossbd01e2a2018-10-04 15:21:03 -0700556 return jniLibs, certificates
Colin Crossa4f08812018-10-02 22:03:40 -0700557}
558
Colin Cross0ea8ba82019-06-06 14:33:29 -0700559func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800560 certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
561 if overridden {
Jaewoong Jungacb6db32019-02-28 16:22:30 +0000562 return ":" + certificate
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800563 }
Jaewoong Jung525443a2019-02-28 15:35:54 -0800564 return String(a.overridableAppProperties.Certificate)
Jaewoong Jung2ad817c2019-01-18 14:27:16 -0800565}
566
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900567// For OutputFileProducer interface
568func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
569 switch tag {
570 case ".aapt.srcjar":
571 return []android.Path{a.aaptSrcJar}, nil
572 }
573 return a.Library.OutputFiles(tag)
574}
575
Jiyong Parkf7487312019-10-17 12:54:30 +0900576func (a *AndroidApp) Privileged() bool {
577 return Bool(a.appProperties.Privileged)
578}
579
Colin Cross1b16b0e2019-02-12 14:41:32 -0800580// android_app compiles sources and Android resources into an Android application package `.apk` file.
Colin Cross36242852017-06-23 15:06:31 -0700581func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -0700582 module := &AndroidApp{}
583
Sasha Smundak2057f822019-04-16 17:16:58 -0700584 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross66dbc0b2017-12-28 12:23:20 -0800585 module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
586
Colin Crossae5caf52018-05-22 11:11:52 -0700587 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -0700588 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crossae5caf52018-05-22 11:11:52 -0700589
Colin Cross36242852017-06-23 15:06:31 -0700590 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -0700591 &module.Module.properties,
592 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -0800593 &module.Module.dexpreoptProperties,
Colin Crossa97c5d32018-03-28 14:58:31 -0700594 &module.Module.protoProperties,
595 &module.aaptProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -0800596 &module.appProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -0700597 &module.overridableAppProperties,
598 &module.usesLibrary.usesLibraryProperties)
Colin Cross36242852017-06-23 15:06:31 -0700599
Colin Crossa9d8bee2018-10-02 13:59:46 -0700600 module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
601 return class == android.Device && ctx.Config().DevicePrefer32BitApps()
602 })
603
Colin Crossa4f08812018-10-02 22:03:40 -0700604 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
605 android.InitDefaultableModule(module)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800606 android.InitOverridableModule(module, &module.appProperties.Overrides)
Jiyong Park52cd06f2019-11-11 10:14:32 +0900607 android.InitApexModule(module)
Colin Crossa4f08812018-10-02 22:03:40 -0700608
Colin Cross36242852017-06-23 15:06:31 -0700609 return module
Colin Cross30e076a2015-04-13 13:58:27 -0700610}
Colin Crossae5caf52018-05-22 11:11:52 -0700611
612type appTestProperties struct {
613 Instrumentation_for *string
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700614
615 // if specified, the instrumentation target package name in the manifest is overwritten by it.
616 Instrumentation_target_package *string
Colin Crossae5caf52018-05-22 11:11:52 -0700617}
618
619type AndroidTest struct {
620 AndroidApp
621
622 appTestProperties appTestProperties
623
624 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -0700625
626 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -0700627 data android.Paths
Colin Crossae5caf52018-05-22 11:11:52 -0700628}
629
Jaewoong Jung0949f312019-09-11 10:25:18 -0700630func (a *AndroidTest) InstallInTestcases() bool {
631 return true
632}
633
Colin Crossae5caf52018-05-22 11:11:52 -0700634func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700635 if a.appTestProperties.Instrumentation_target_package != nil {
636 a.additionalAaptFlags = append(a.additionalAaptFlags,
637 "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package)
638 } else if a.appTestProperties.Instrumentation_for != nil {
639 // Check if the instrumentation target package is overridden.
Jaewoong Jung4102e5d2019-02-27 16:26:28 -0800640 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
641 if overridden {
642 a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
643 }
644 }
Colin Crossae5caf52018-05-22 11:11:52 -0700645 a.generateAndroidBuildActions(ctx)
Colin Cross303e21f2018-08-07 16:49:25 -0700646
Jaewoong Jung39982342020-01-14 10:27:18 -0800647 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
Dan Shi6ffaaa82019-09-26 11:41:36 -0700648 a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config)
Jaewoong Jung39982342020-01-14 10:27:18 -0800649 a.testConfig = a.FixTestConfig(ctx, testConfig)
Colin Cross8a497952019-03-05 22:25:09 -0800650 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -0700651}
652
Jaewoong Jung39982342020-01-14 10:27:18 -0800653func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path {
654 if testConfig == nil {
655 return nil
656 }
657
658 fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
659 rule := android.NewRuleBuilder()
660 command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig)
661 fixNeeded := false
662
663 if ctx.ModuleName() != a.installApkName {
664 fixNeeded = true
665 command.FlagWithArg("--test-file-name ", a.installApkName+".apk")
666 }
667
668 if a.overridableAppProperties.Package_name != nil {
669 fixNeeded = true
670 command.FlagWithInput("--manifest ", a.manifestPath).
671 FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name)
672 }
673
674 if fixNeeded {
675 rule.Build(pctx, ctx, "fix_test_config", "fix test config")
676 return fixedConfig
677 }
678 return testConfig
679}
680
Colin Cross303e21f2018-08-07 16:49:25 -0700681func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross303e21f2018-08-07 16:49:25 -0700682 a.AndroidApp.DepsMutator(ctx)
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700683}
684
685func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
686 a.AndroidApp.OverridablePropertiesDepsMutator(ctx)
Colin Cross4b964c02018-10-15 16:18:06 -0700687 if a.appTestProperties.Instrumentation_for != nil {
688 // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
689 // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
690 // use instrumentationForTag instead of libTag.
691 ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
692 }
Colin Crossae5caf52018-05-22 11:11:52 -0700693}
694
Colin Cross1b16b0e2019-02-12 14:41:32 -0800695// android_test compiles test sources and Android resources into an Android application package `.apk` file and
696// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
Colin Crossae5caf52018-05-22 11:11:52 -0700697func AndroidTestFactory() android.Module {
698 module := &AndroidTest{}
699
Sasha Smundak2057f822019-04-16 17:16:58 -0700700 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross5067db92018-09-17 16:46:35 -0700701
702 module.Module.properties.Instrument = true
Colin Cross9ae1b922018-06-26 17:59:05 -0700703 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -0800704 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -0700705 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -0800706 module.Module.dexpreopter.isTest = true
Colin Crossae5caf52018-05-22 11:11:52 -0700707
708 module.AddProperties(
709 &module.Module.properties,
710 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -0800711 &module.Module.dexpreoptProperties,
Colin Crossae5caf52018-05-22 11:11:52 -0700712 &module.Module.protoProperties,
713 &module.aaptProperties,
714 &module.appProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -0700715 &module.appTestProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -0800716 &module.overridableAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -0700717 &module.usesLibrary.usesLibraryProperties,
Dan Willemsenf5531d22018-07-16 17:21:19 -0700718 &module.testProperties)
Colin Crossae5caf52018-05-22 11:11:52 -0700719
Colin Crossa4f08812018-10-02 22:03:40 -0700720 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
721 android.InitDefaultableModule(module)
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700722 android.InitOverridableModule(module, &module.appProperties.Overrides)
Colin Crossae5caf52018-05-22 11:11:52 -0700723 return module
724}
Colin Crossbd01e2a2018-10-04 15:21:03 -0700725
Colin Cross252fc6f2018-10-04 15:22:03 -0700726type appTestHelperAppProperties struct {
727 // list of compatibility suites (for example "cts", "vts") that the module should be
728 // installed into.
729 Test_suites []string `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -0700730
731 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
732 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
733 // explicitly.
734 Auto_gen_config *bool
Colin Cross252fc6f2018-10-04 15:22:03 -0700735}
736
737type AndroidTestHelperApp struct {
738 AndroidApp
739
740 appTestHelperAppProperties appTestHelperAppProperties
741}
742
Jaewoong Jung326a9412019-11-21 10:41:00 -0800743func (a *AndroidTestHelperApp) InstallInTestcases() bool {
744 return true
745}
746
Colin Cross1b16b0e2019-02-12 14:41:32 -0800747// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
748// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
749// test.
Colin Cross252fc6f2018-10-04 15:22:03 -0700750func AndroidTestHelperAppFactory() android.Module {
751 module := &AndroidTestHelperApp{}
752
Sasha Smundak2057f822019-04-16 17:16:58 -0700753 module.Module.deviceProperties.Optimize.EnabledByDefault = true
Colin Cross252fc6f2018-10-04 15:22:03 -0700754
755 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse4246ab2019-02-05 21:55:21 -0800756 module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
Colin Cross47fa9d32019-03-26 10:51:39 -0700757 module.appProperties.AlwaysPackageNativeLibs = true
Colin Cross43f08db2018-11-12 10:13:39 -0800758 module.Module.dexpreopter.isTest = true
Colin Cross252fc6f2018-10-04 15:22:03 -0700759
760 module.AddProperties(
761 &module.Module.properties,
762 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -0800763 &module.Module.dexpreoptProperties,
Colin Cross252fc6f2018-10-04 15:22:03 -0700764 &module.Module.protoProperties,
765 &module.aaptProperties,
766 &module.appProperties,
Jaewoong Jung525443a2019-02-28 15:35:54 -0800767 &module.appTestHelperAppProperties,
Colin Cross50ddcc42019-05-16 12:28:22 -0700768 &module.overridableAppProperties,
769 &module.usesLibrary.usesLibraryProperties)
Colin Cross252fc6f2018-10-04 15:22:03 -0700770
771 android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
772 android.InitDefaultableModule(module)
Anton Hansson3d2b6b42020-01-10 15:06:01 +0000773 android.InitApexModule(module)
Colin Cross252fc6f2018-10-04 15:22:03 -0700774 return module
775}
776
Colin Crossbd01e2a2018-10-04 15:21:03 -0700777type AndroidAppCertificate struct {
778 android.ModuleBase
779 properties AndroidAppCertificateProperties
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900780 Certificate Certificate
Colin Crossbd01e2a2018-10-04 15:21:03 -0700781}
782
783type AndroidAppCertificateProperties struct {
784 // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
785 Certificate *string
786}
787
Colin Cross1b16b0e2019-02-12 14:41:32 -0800788// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
789// the signing key.
Colin Crossbd01e2a2018-10-04 15:21:03 -0700790func AndroidAppCertificateFactory() android.Module {
791 module := &AndroidAppCertificate{}
792 module.AddProperties(&module.properties)
793 android.InitAndroidModule(module)
794 return module
795}
796
Colin Crossbd01e2a2018-10-04 15:21:03 -0700797func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
798 cert := String(c.properties.Certificate)
Jiyong Parkc00cbd92018-10-30 21:20:05 +0900799 c.Certificate = Certificate{
Colin Crossbd01e2a2018-10-04 15:21:03 -0700800 android.PathForModuleSrc(ctx, cert+".x509.pem"),
801 android.PathForModuleSrc(ctx, cert+".pk8"),
802 }
803}
Jaewoong Jung525443a2019-02-28 15:35:54 -0800804
805type OverrideAndroidApp struct {
806 android.ModuleBase
807 android.OverrideModuleBase
808}
809
810func (i *OverrideAndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
811 // All the overrides happen in the base module.
812 // TODO(jungjw): Check the base module type.
813}
814
815// override_android_app is used to create an android_app module based on another android_app by overriding
816// some of its properties.
817func OverrideAndroidAppModuleFactory() android.Module {
818 m := &OverrideAndroidApp{}
819 m.AddProperties(&overridableAppProperties{})
820
Jaewoong Jungb639a6a2019-05-10 15:16:29 -0700821 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
Jaewoong Jung525443a2019-02-28 15:35:54 -0800822 android.InitOverrideModule(m)
823 return m
824}
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700825
Jaewoong Jung26dedd32019-06-06 08:45:58 -0700826type OverrideAndroidTest struct {
827 android.ModuleBase
828 android.OverrideModuleBase
829}
830
831func (i *OverrideAndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
832 // All the overrides happen in the base module.
833 // TODO(jungjw): Check the base module type.
834}
835
836// override_android_test is used to create an android_app module based on another android_test by overriding
837// some of its properties.
838func OverrideAndroidTestModuleFactory() android.Module {
839 m := &OverrideAndroidTest{}
840 m.AddProperties(&overridableAppProperties{})
841 m.AddProperties(&appTestProperties{})
842
843 android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
844 android.InitOverrideModule(m)
845 return m
846}
847
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700848type AndroidAppImport struct {
849 android.ModuleBase
850 android.DefaultableModuleBase
851 prebuilt android.Prebuilt
852
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700853 properties AndroidAppImportProperties
854 dpiVariants interface{}
855 archVariants interface{}
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700856
857 outputFile android.Path
858 certificate *Certificate
859
860 dexpreopter
Colin Cross50ddcc42019-05-16 12:28:22 -0700861
862 usesLibrary usesLibrary
Jaewoong Jung8aae22e2019-07-17 10:21:49 -0700863
Colin Cross70dda7e2019-10-01 22:05:35 -0700864 installPath android.InstallPath
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700865}
866
867type AndroidAppImportProperties struct {
868 // A prebuilt apk to import
Jaewoong Jung3e18b192019-06-11 12:25:34 -0700869 Apk *string
Jaewoong Junga5e5abc2019-04-26 14:31:50 -0700870
Jaewoong Jung961d4fd2019-08-22 14:25:58 -0700871 // The name of a certificate in the default certificate directory or an android_app_certificate
872 // module name in the form ":module". Should be empty if presigned or default_dev_cert is set.
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700873 Certificate *string
874
875 // Set this flag to true if the prebuilt apk is already signed. The certificate property must not
876 // be set for presigned modules.
877 Presigned *bool
878
Jaewoong Jung961d4fd2019-08-22 14:25:58 -0700879 // Sign with the default system dev certificate. Must be used judiciously. Most imported apps
880 // need to either specify a specific certificate or be presigned.
881 Default_dev_cert *bool
882
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700883 // Specifies that this app should be installed to the priv-app directory,
884 // where the system will grant it additional privileges not available to
885 // normal apps.
886 Privileged *bool
887
888 // Names of modules to be overridden. Listed modules can only be other binaries
889 // (in Make or Soong).
890 // This does not completely prevent installation of the overridden binaries, but if both
891 // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed
892 // from PRODUCT_PACKAGES.
893 Overrides []string
Jaewoong Jung8aae22e2019-07-17 10:21:49 -0700894
895 // Optional name for the installed app. If unspecified, it is derived from the module name.
896 Filename *string
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700897}
898
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700899// Updates properties with variant-specific values.
900func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -0700901 config := ctx.Config()
902
903 dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants")
904 // Try DPI variant matches in the reverse-priority order so that the highest priority match
905 // overwrites everything else.
906 // TODO(jungjw): Can we optimize this by making it priority order?
907 for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700908 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i])
Jaewoong Junga5e5abc2019-04-26 14:31:50 -0700909 }
Jaewoong Jung3e18b192019-06-11 12:25:34 -0700910 if config.ProductAAPTPreferredConfig() != "" {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700911 MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig())
Jaewoong Junga5e5abc2019-04-26 14:31:50 -0700912 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700913
914 archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch")
915 archType := ctx.Config().Targets[android.Android][0].Arch.ArchType
916 MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name)
Jaewoong Junga5e5abc2019-04-26 14:31:50 -0700917}
918
Colin Cross1184b642019-12-30 18:43:07 -0800919func MergePropertiesFromVariant(ctx android.EarlyModuleContext,
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700920 dst interface{}, variantGroup reflect.Value, variant string) {
Jaewoong Jung3e18b192019-06-11 12:25:34 -0700921 src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant))
922 if !src.IsValid() {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700923 return
Jaewoong Junga5e5abc2019-04-26 14:31:50 -0700924 }
925
Jaewoong Jung3e18b192019-06-11 12:25:34 -0700926 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend)
927 if err != nil {
928 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
929 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
930 } else {
931 panic(err)
932 }
933 }
Jaewoong Junga5e5abc2019-04-26 14:31:50 -0700934}
935
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700936func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
937 cert := android.SrcIsModule(String(a.properties.Certificate))
938 if cert != "" {
939 ctx.AddDependency(ctx.Module(), certificateTag, cert)
940 }
Colin Cross50ddcc42019-05-16 12:28:22 -0700941
Paul Duffin250e6192019-06-07 10:44:37 +0100942 a.usesLibrary.deps(ctx, true)
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700943}
944
945func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
946 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
Jaewoong Jung7c5bd832020-01-13 09:55:39 -0800947 // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing
948 // with them may invalidate pre-existing signature data.
949 if ctx.InstallInTestcases() && Bool(a.properties.Presigned) {
950 ctx.Build(pctx, android.BuildParams{
951 Rule: android.Cp,
952 Output: outputPath,
953 Input: inputPath,
954 })
955 return
956 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700957 rule := android.NewRuleBuilder()
958 rule.Command().
959 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -0700960 BuiltTool(ctx, "zip2zip").
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700961 FlagWithInput("-i ", inputPath).
962 FlagWithOutput("-o ", outputPath).
963 FlagWithArg("-0 ", "'lib/**/*.so'").
964 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
965 rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
966}
967
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700968// Returns whether this module should have the dex file stored uncompressed in the APK.
969func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
970 if ctx.Config().UnbundledBuild() {
971 return false
972 }
973
974 // Uncompress dex in APKs of privileged apps
Jiyong Parkf7487312019-10-17 12:54:30 +0900975 if ctx.Config().UncompressPrivAppDex() && a.Privileged() {
Jaewoong Jungacf18d72019-05-02 14:55:29 -0700976 return true
977 }
978
979 return shouldUncompressDex(ctx, &a.dexpreopter)
980}
981
Jaewoong Jungea1bdb02019-05-09 14:36:34 -0700982func (a *AndroidAppImport) uncompressDex(
983 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
984 rule := android.NewRuleBuilder()
985 rule.Command().
986 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
Colin Crossee94d6a2019-07-08 17:08:34 -0700987 BuiltTool(ctx, "zip2zip").
Jaewoong Jungea1bdb02019-05-09 14:36:34 -0700988 FlagWithInput("-i ", inputPath).
989 FlagWithOutput("-o ", outputPath).
990 FlagWithArg("-0 ", "'classes*.dex'").
991 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
992 rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
993}
994
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700995func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700996 a.generateAndroidBuildActions(ctx)
997}
998
999func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001000 numCertPropsSet := 0
1001 if String(a.properties.Certificate) != "" {
1002 numCertPropsSet++
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001003 }
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001004 if Bool(a.properties.Presigned) {
1005 numCertPropsSet++
1006 }
1007 if Bool(a.properties.Default_dev_cert) {
1008 numCertPropsSet++
1009 }
1010 if numCertPropsSet != 1 {
1011 ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001012 }
1013
Peter Collingbournead84f972019-12-17 16:46:18 -08001014 _, certificates := collectAppDeps(ctx, false)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001015
1016 // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001017 // TODO: LOCAL_PACKAGE_SPLITS
1018
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001019 srcApk := a.prebuilt.SingleSourcePath(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001020
1021 if a.usesLibrary.enforceUsesLibraries() {
1022 srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
1023 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001024
1025 // TODO: Install or embed JNI libraries
1026
1027 // Uncompress JNI libraries in the apk
1028 jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
1029 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
1030
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001031 var installDir android.InstallPath
1032 if Bool(a.properties.Privileged) {
1033 installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName())
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001034 } else if ctx.InstallInTestcases() {
1035 installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch())
Kyeongkab.Namc4997142019-11-22 11:38:16 +09001036 } else {
1037 installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
1038 }
1039
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001040 a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
1041 a.dexpreopter.isInstallable = true
1042 a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
Jaewoong Jungacf18d72019-05-02 14:55:29 -07001043 a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
Colin Cross50ddcc42019-05-16 12:28:22 -07001044
1045 a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
1046 a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
1047 a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
1048 a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
1049
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001050 dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
Jaewoong Jungea1bdb02019-05-09 14:36:34 -07001051 if a.dexpreopter.uncompressedDex {
1052 dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
1053 a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
1054 dexOutput = dexUncompressed
1055 }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001056
1057 // Sign or align the package
1058 // TODO: Handle EXTERNAL
1059 if !Bool(a.properties.Presigned) {
Jaewoong Jung961d4fd2019-08-22 14:25:58 -07001060 // If the certificate property is empty at this point, default_dev_cert must be set to true.
1061 // Which makes processMainCert's behavior for the empty cert string WAI.
1062 certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001063 if len(certificates) != 1 {
1064 ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
1065 }
1066 a.certificate = &certificates[0]
1067 signed := android.PathForModuleOut(ctx, "signed", ctx.ModuleName()+".apk")
1068 SignAppPackage(ctx, signed, dexOutput, certificates)
1069 a.outputFile = signed
1070 } else {
1071 alignedApk := android.PathForModuleOut(ctx, "zip-aligned", ctx.ModuleName()+".apk")
1072 TransformZipAlign(ctx, alignedApk, dexOutput)
1073 a.outputFile = alignedApk
1074 }
1075
1076 // TODO: Optionally compress the output apk.
1077
Jaewoong Jung8aae22e2019-07-17 10:21:49 -07001078 a.installPath = ctx.InstallFile(installDir,
1079 proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk"), a.outputFile)
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001080
1081 // TODO: androidmk converter jni libs
1082}
1083
1084func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
1085 return &a.prebuilt
1086}
1087
1088func (a *AndroidAppImport) Name() string {
1089 return a.prebuilt.Name(a.ModuleBase.Name())
1090}
1091
Dario Frenicde2a032019-10-27 00:29:22 +01001092func (a *AndroidAppImport) OutputFile() android.Path {
1093 return a.outputFile
1094}
1095
Jiyong Park618922e2020-01-08 13:35:43 +09001096func (a *AndroidAppImport) JacocoReportClassesFile() android.Path {
1097 return nil
1098}
1099
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001100var dpiVariantGroupType reflect.Type
1101var archVariantGroupType reflect.Type
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001102
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001103func initAndroidAppImportVariantGroupTypes() {
1104 dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants")
1105
1106 archNames := make([]string, len(android.ArchTypeList()))
1107 for i, archType := range android.ArchTypeList() {
1108 archNames[i] = archType.Name
1109 }
1110 archVariantGroupType = createVariantGroupType(archNames, "Arch")
1111}
1112
1113// Populates all variant struct properties at creation time.
1114func (a *AndroidAppImport) populateAllVariantStructs() {
1115 a.dpiVariants = reflect.New(dpiVariantGroupType).Interface()
1116 a.AddProperties(a.dpiVariants)
1117
1118 a.archVariants = reflect.New(archVariantGroupType).Interface()
1119 a.AddProperties(a.archVariants)
1120}
1121
Jiyong Parkf7487312019-10-17 12:54:30 +09001122func (a *AndroidAppImport) Privileged() bool {
1123 return Bool(a.properties.Privileged)
1124}
1125
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001126func createVariantGroupType(variants []string, variantGroupName string) reflect.Type {
1127 props := reflect.TypeOf((*AndroidAppImportProperties)(nil))
1128
1129 variantFields := make([]reflect.StructField, len(variants))
1130 for i, variant := range variants {
1131 variantFields[i] = reflect.StructField{
1132 Name: proptools.FieldNameForProperty(variant),
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001133 Type: props,
1134 }
1135 }
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001136
1137 variantGroupStruct := reflect.StructOf(variantFields)
1138 return reflect.StructOf([]reflect.StructField{
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001139 {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001140 Name: variantGroupName,
1141 Type: variantGroupStruct,
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001142 },
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001143 })
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001144}
1145
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001146// android_app_import imports a prebuilt apk with additional processing specified in the module.
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001147// DPI-specific apk source files can be specified using dpi_variants. Example:
1148//
1149// android_app_import {
1150// name: "example_import",
1151// apk: "prebuilts/example.apk",
1152// dpi_variants: {
1153// mdpi: {
1154// apk: "prebuilts/example_mdpi.apk",
1155// },
1156// xhdpi: {
1157// apk: "prebuilts/example_xhdpi.apk",
1158// },
1159// },
1160// certificate: "PRESIGNED",
1161// }
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001162func AndroidAppImportFactory() android.Module {
1163 module := &AndroidAppImport{}
1164 module.AddProperties(&module.properties)
1165 module.AddProperties(&module.dexpreoptProperties)
Colin Cross50ddcc42019-05-16 12:28:22 -07001166 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001167 module.populateAllVariantStructs()
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001168 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -07001169 module.processVariants(ctx)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001170 })
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001171
1172 InitJavaModule(module, android.DeviceSupported)
Jaewoong Jung3e18b192019-06-11 12:25:34 -07001173 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
Jaewoong Jungccbb3932019-04-15 09:48:31 -07001174
1175 return module
1176}
Colin Cross50ddcc42019-05-16 12:28:22 -07001177
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001178type AndroidTestImport struct {
1179 AndroidAppImport
1180
1181 testProperties testProperties
1182
1183 data android.Paths
1184}
1185
1186func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
1187 a.generateAndroidBuildActions(ctx)
1188
1189 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
1190}
1191
Jaewoong Jung7c5bd832020-01-13 09:55:39 -08001192func (a *AndroidTestImport) InstallInTestcases() bool {
1193 return true
1194}
1195
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -07001196// android_test_import imports a prebuilt test apk with additional processing specified in the
1197// module. DPI or arch variant configurations can be made as with android_app_import.
1198func AndroidTestImportFactory() android.Module {
1199 module := &AndroidTestImport{}
1200 module.AddProperties(&module.properties)
1201 module.AddProperties(&module.dexpreoptProperties)
1202 module.AddProperties(&module.usesLibrary.usesLibraryProperties)
1203 module.AddProperties(&module.testProperties)
1204 module.populateAllVariantStructs()
1205 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
1206 module.processVariants(ctx)
1207 })
1208
1209 InitJavaModule(module, android.DeviceSupported)
1210 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
1211
1212 return module
1213}
1214
Colin Cross50ddcc42019-05-16 12:28:22 -07001215type UsesLibraryProperties struct {
1216 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
1217 Uses_libs []string
1218
1219 // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
1220 // required=false.
1221 Optional_uses_libs []string
1222
1223 // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
1224 // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
1225 Enforce_uses_libs *bool
1226}
1227
1228// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
1229// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
1230// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
1231// with knowledge of their shared libraries.
1232type usesLibrary struct {
1233 usesLibraryProperties UsesLibraryProperties
1234}
1235
Paul Duffin250e6192019-06-07 10:44:37 +01001236func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) {
Colin Cross3245b2c2019-06-07 13:18:09 -07001237 if !ctx.Config().UnbundledBuild() {
1238 ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
1239 ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
Paul Duffin250e6192019-06-07 10:44:37 +01001240 // Only add these extra dependencies if the module depends on framework libs. This avoids
1241 // creating a cyclic dependency:
1242 // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res.
1243 if hasFrameworkLibs {
Colin Cross3245b2c2019-06-07 13:18:09 -07001244 // dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
1245 // to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
1246 // library to dexpreopt.
1247 ctx.AddVariationDependencies(nil, usesLibTag,
1248 "org.apache.http.legacy",
1249 "android.hidl.base-V1.0-java",
1250 "android.hidl.manager-V1.0-java")
1251 }
Colin Cross50ddcc42019-05-16 12:28:22 -07001252 }
1253}
1254
1255// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
1256// build.
1257func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
1258 optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
1259 return optionalUsesLibs
1260}
1261
1262// usesLibraryPaths returns a map of module names of shared library dependencies to the paths to their dex jars.
1263func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) map[string]android.Path {
1264 usesLibPaths := make(map[string]android.Path)
1265
1266 if !ctx.Config().UnbundledBuild() {
1267 ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
1268 if lib, ok := m.(Dependency); ok {
1269 if dexJar := lib.DexJar(); dexJar != nil {
1270 usesLibPaths[ctx.OtherModuleName(m)] = dexJar
1271 } else {
1272 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must produce a dex jar, does it have installable: true?",
1273 ctx.OtherModuleName(m))
1274 }
1275 } else if ctx.Config().AllowMissingDependencies() {
1276 ctx.AddMissingDependencies([]string{ctx.OtherModuleName(m)})
1277 } else {
1278 ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library",
1279 ctx.OtherModuleName(m))
1280 }
1281 })
1282 }
1283
1284 return usesLibPaths
1285}
1286
1287// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
1288// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
1289// unconditionally in the future.
1290func (u *usesLibrary) enforceUsesLibraries() bool {
1291 defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
1292 len(u.usesLibraryProperties.Optional_uses_libs) > 0
1293 return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
1294}
1295
1296// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
1297// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
1298func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
1299 outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
1300
1301 rule := android.NewRuleBuilder()
Colin Crossee94d6a2019-07-08 17:08:34 -07001302 cmd := rule.Command().BuiltTool(ctx, "manifest_check").
Colin Cross50ddcc42019-05-16 12:28:22 -07001303 Flag("--enforce-uses-libraries").
1304 Input(manifest).
1305 FlagWithOutput("-o ", outputFile)
1306
1307 for _, lib := range u.usesLibraryProperties.Uses_libs {
1308 cmd.FlagWithArg("--uses-library ", lib)
1309 }
1310
1311 for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
1312 cmd.FlagWithArg("--optional-uses-library ", lib)
1313 }
1314
1315 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1316
1317 return outputFile
1318}
1319
1320// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
1321// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
1322func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
1323 outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
1324
1325 rule := android.NewRuleBuilder()
1326 aapt := ctx.Config().HostToolPath(ctx, "aapt")
1327 rule.Command().
1328 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1329 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1330 Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
1331 Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
1332 rule.Command().Text("cp -f").Input(apk).Output(outputFile)
1333
1334 rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
1335
1336 return outputFile
1337}