Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | package java |
| 16 | |
| 17 | // This file contains the module types for compiling Android apps. |
| 18 | |
| 19 | import ( |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 20 | "path/filepath" |
| 21 | "reflect" |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 22 | "sort" |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 23 | "strconv" |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 24 | "strings" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 25 | |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 26 | "github.com/google/blueprint" |
| 27 | "github.com/google/blueprint/proptools" |
| 28 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 29 | "android/soong/android" |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 30 | "android/soong/cc" |
Ulya Trafimovich | d4bcea4 | 2020-06-03 14:57:22 +0100 | [diff] [blame] | 31 | "android/soong/dexpreopt" |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 32 | "android/soong/tradefed" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 33 | ) |
| 34 | |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 35 | var supportedDpis = []string{"ldpi", "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"} |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 36 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 37 | func init() { |
Paul Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 38 | RegisterAppBuildComponents(android.InitRegistrationContext) |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 39 | |
| 40 | initAndroidAppImportVariantGroupTypes() |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 41 | } |
| 42 | |
Paul Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 43 | func 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 Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 50 | ctx.RegisterModuleType("override_runtime_resource_overlay", OverrideRuntimeResourceOverlayModuleFactory) |
Paul Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 51 | ctx.RegisterModuleType("android_app_import", AndroidAppImportFactory) |
| 52 | ctx.RegisterModuleType("android_test_import", AndroidTestImportFactory) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 53 | ctx.RegisterModuleType("runtime_resource_overlay", RuntimeResourceOverlayFactory) |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 54 | ctx.RegisterModuleType("android_app_set", AndroidApkSetFactory) |
| 55 | } |
| 56 | |
| 57 | type 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 | |
| 74 | type AndroidAppSet struct { |
| 75 | android.ModuleBase |
| 76 | android.DefaultableModuleBase |
| 77 | prebuilt android.Prebuilt |
| 78 | |
| 79 | properties AndroidAppSetProperties |
| 80 | packedOutput android.WritablePath |
Liz Kammer | cada807 | 2020-07-28 15:47:38 -0700 | [diff] [blame] | 81 | installFile string |
Jaewoong Jung | 11c1e0f | 2020-06-29 19:18:44 -0700 | [diff] [blame] | 82 | apkcertsFile android.ModuleOutPath |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | func (as *AndroidAppSet) Name() string { |
| 86 | return as.prebuilt.Name(as.ModuleBase.Name()) |
| 87 | } |
| 88 | |
| 89 | func (as *AndroidAppSet) IsInstallable() bool { |
| 90 | return true |
| 91 | } |
| 92 | |
| 93 | func (as *AndroidAppSet) Prebuilt() *android.Prebuilt { |
| 94 | return &as.prebuilt |
| 95 | } |
| 96 | |
| 97 | func (as *AndroidAppSet) Privileged() bool { |
| 98 | return Bool(as.properties.Privileged) |
| 99 | } |
| 100 | |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 101 | func (as *AndroidAppSet) OutputFile() android.Path { |
| 102 | return as.packedOutput |
| 103 | } |
| 104 | |
Liz Kammer | cada807 | 2020-07-28 15:47:38 -0700 | [diff] [blame] | 105 | func (as *AndroidAppSet) InstallFile() string { |
| 106 | return as.installFile |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Colin Cross | 4fb652d | 2020-07-09 19:05:35 -0700 | [diff] [blame] | 109 | func (as *AndroidAppSet) APKCertsFile() android.Path { |
| 110 | return as.apkcertsFile |
| 111 | } |
| 112 | |
Jaewoong Jung | fa00c06 | 2020-05-14 14:15:24 -0700 | [diff] [blame] | 113 | var TargetCpuAbi = map[string]string{ |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 114 | "arm": "ARMEABI_V7A", |
| 115 | "arm64": "ARM64_V8A", |
| 116 | "x86": "X86", |
| 117 | "x86_64": "X86_64", |
| 118 | } |
| 119 | |
Jaewoong Jung | fa00c06 | 2020-05-14 14:15:24 -0700 | [diff] [blame] | 120 | func SupportedAbis(ctx android.ModuleContext) []string { |
Jaewoong Jung | 829b713 | 2020-06-10 12:23:32 -0700 | [diff] [blame] | 121 | abiName := func(targetIdx int, deviceArch string) string { |
Jaewoong Jung | fa00c06 | 2020-05-14 14:15:24 -0700 | [diff] [blame] | 122 | if abi, found := TargetCpuAbi[deviceArch]; found { |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 123 | return abi |
| 124 | } |
Jaewoong Jung | 829b713 | 2020-06-10 12:23:32 -0700 | [diff] [blame] | 125 | ctx.ModuleErrorf("Target %d has invalid Arch: %s", targetIdx, deviceArch) |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 126 | return "BAD_ABI" |
| 127 | } |
| 128 | |
Jaewoong Jung | 829b713 | 2020-06-10 12:23:32 -0700 | [diff] [blame] | 129 | var result []string |
| 130 | for i, target := range ctx.Config().Targets[android.Android] { |
| 131 | result = append(result, abiName(i, target.Arch.ArchType.String())) |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 132 | } |
| 133 | return result |
| 134 | } |
| 135 | |
| 136 | func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 137 | as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip") |
Jaewoong Jung | 11c1e0f | 2020-06-29 19:18:44 -0700 | [diff] [blame] | 138 | as.apkcertsFile = android.PathForModuleOut(ctx, "apkcerts.txt") |
Liz Kammer | cada807 | 2020-07-28 15:47:38 -0700 | [diff] [blame] | 139 | // We are assuming here that the install file in the APK |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 140 | // set has `.apk` suffix. If it doesn't the build will fail. |
| 141 | // APK sets containing APEX files are handled elsewhere. |
Liz Kammer | cada807 | 2020-07-28 15:47:38 -0700 | [diff] [blame] | 142 | as.installFile = as.BaseModuleName() + ".apk" |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 143 | 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 Jung | 11c1e0f | 2020-06-29 19:18:44 -0700 | [diff] [blame] | 151 | 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 Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 156 | Args: map[string]string{ |
Jaewoong Jung | fa00c06 | 2020-05-14 14:15:24 -0700 | [diff] [blame] | 157 | "abis": strings.Join(SupportedAbis(ctx), ","), |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 158 | "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)), |
| 159 | "screen-densities": screenDensities, |
Dan Albert | 4f378d7 | 2020-07-23 17:32:15 -0700 | [diff] [blame] | 160 | "sdk-version": ctx.Config().PlatformSdkVersion().String(), |
Sasha Smundak | e88b436 | 2020-06-22 16:53:33 -0700 | [diff] [blame] | 161 | "stem": as.BaseModuleName(), |
Jaewoong Jung | 11c1e0f | 2020-06-29 19:18:44 -0700 | [diff] [blame] | 162 | "apkcerts": as.apkcertsFile.String(), |
| 163 | "partition": as.PartitionTag(ctx.DeviceConfig()), |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 164 | }, |
| 165 | }) |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 166 | } |
| 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 Kammer | cada807 | 2020-07-28 15:47:38 -0700 | [diff] [blame] | 170 | // The extracted set always contains an APK whose name is |
Sasha Smundak | 613cbb1 | 2020-06-05 10:27:23 -0700 | [diff] [blame] | 171 | // _module_name_.apk and every split APK matching target device. |
| 172 | // The extraction of the density-specific splits depends on |
| 173 | // PRODUCT_AAPT_PREBUILT_DPI variable. If present (its value should |
| 174 | // be a list density names: LDPI, MDPI, HDPI, etc.), only listed |
| 175 | // splits will be extracted. Otherwise all density-specific splits |
| 176 | // will be extracted. |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 177 | func 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 Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 185 | // AndroidManifest.xml merging |
| 186 | // package splits |
| 187 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 188 | type appProperties struct { |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 189 | // Names of extra android_app_certificate modules to sign the apk with in the form ":module". |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 190 | 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 Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 194 | Export_package_resources *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 195 | |
Colin Cross | 1605606 | 2017-12-13 22:46:28 -0800 | [diff] [blame] | 196 | // 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 Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 200 | |
| 201 | // list of resource labels to generate individual resource packages |
| 202 | Package_splits []string |
Jason Monk | d4122be | 2018-08-10 09:33:36 -0400 | [diff] [blame] | 203 | |
| 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 Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 210 | |
| 211 | // list of native libraries that will be provided in or alongside the resulting jar |
| 212 | Jni_libs []string `android:"arch_variant"` |
| 213 | |
Colin Cross | 7204cf0 | 2020-05-06 17:51:39 -0700 | [diff] [blame] | 214 | // if true, use JNI libraries that link against platform APIs even if this module sets |
Colin Cross | ee87c60 | 2020-02-19 16:57:15 -0800 | [diff] [blame] | 215 | // sdk_version. |
| 216 | Jni_uses_platform_apis *bool |
| 217 | |
Colin Cross | 7204cf0 | 2020-05-06 17:51:39 -0700 | [diff] [blame] | 218 | // 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 Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 222 | // STL library to use for JNI libraries. |
| 223 | Stl *string `android:"arch_variant"` |
| 224 | |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 225 | // 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 Park | 52cd06f | 2019-11-11 10:14:32 +0900 | [diff] [blame] | 227 | // 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 Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 230 | Use_embedded_native_libs *bool |
Colin Cross | 46abdad | 2019-02-07 13:07:08 -0800 | [diff] [blame] | 231 | |
| 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 Cross | 47fa9d3 | 2019-03-26 10:51:39 -0700 | [diff] [blame] | 235 | |
| 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 Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 240 | |
| 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 Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 244 | |
| 245 | // cc.Coverage related properties |
| 246 | PreventInstall bool `blueprint:"mutated"` |
| 247 | HideFromMake bool `blueprint:"mutated"` |
| 248 | IsCoverageVariant bool `blueprint:"mutated"` |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 249 | |
| 250 | // Whether this app is considered mainline updatable or not. When set to true, this will enforce |
Artur Satayev | f40fc85 | 2020-04-16 13:43:02 +0100 | [diff] [blame] | 251 | // 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 Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 254 | Updatable *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 257 | // android_app properties that can be overridden by override_android_app |
| 258 | type 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 Jung | 6f373f6 | 2019-03-13 10:13:24 -0700 | [diff] [blame] | 262 | |
Liz Kammer | e2b27f4 | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 263 | // Name of the signing certificate lineage file. |
| 264 | Lineage *string |
| 265 | |
Jaewoong Jung | 6f373f6 | 2019-03-13 10:13:24 -0700 | [diff] [blame] | 266 | // the package name of this app. The package name in the manifest file is used if one was not given. |
| 267 | Package_name *string |
Baligh Uddin | 5b16dfb | 2020-02-11 17:27:19 -0800 | [diff] [blame] | 268 | |
| 269 | // the logging parent of this app. |
| 270 | Logging_parent *string |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 271 | |
| 272 | // Whether to rename the package in resources to the override name rather than the base name. Defaults to true. |
| 273 | Rename_resources_package *bool |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 274 | } |
| 275 | |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 276 | // runtime_resource_overlay properties that can be overridden by override_runtime_resource_overlay |
| 277 | type OverridableRuntimeResourceOverlayProperties struct { |
| 278 | // the package name of this app. The package name in the manifest file is used if one was not given. |
| 279 | Package_name *string |
| 280 | |
| 281 | // the target package name of this overlay app. The target package name in the manifest file is used if one was not given. |
| 282 | Target_package_name *string |
| 283 | } |
| 284 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 285 | type AndroidApp struct { |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 286 | Library |
| 287 | aapt |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 288 | android.OverridableModuleBase |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 289 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 290 | certificate Certificate |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 291 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 292 | appProperties appProperties |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 293 | |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 294 | overridableAppProperties overridableAppProperties |
| 295 | |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 296 | jniLibs []jniLib |
| 297 | installPathForJNISymbols android.Path |
| 298 | embeddedJniLibs bool |
| 299 | jniCoverageOutputs android.Paths |
Colin Cross | f623721 | 2018-10-29 23:14:58 -0700 | [diff] [blame] | 300 | |
| 301 | bundleFile android.Path |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 302 | |
| 303 | // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES. |
| 304 | installApkName string |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 305 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 306 | installDir android.InstallPath |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 307 | |
Jaewoong Jung | 7dd4ae2 | 2019-09-27 17:13:15 -0700 | [diff] [blame] | 308 | onDeviceDir string |
| 309 | |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 310 | additionalAaptFlags []string |
Jaewoong Jung | 9877279 | 2019-07-01 17:15:13 -0700 | [diff] [blame] | 311 | |
| 312 | noticeOutputs android.NoticeOutputs |
Jiyong Park | cfaa164 | 2020-02-28 16:51:07 +0900 | [diff] [blame] | 313 | |
| 314 | overriddenManifestPackageName string |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 315 | |
| 316 | android.ApexBundleDepsInfo |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 317 | } |
| 318 | |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 319 | func (a *AndroidApp) IsInstallable() bool { |
| 320 | return Bool(a.properties.Installable) |
| 321 | } |
| 322 | |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 323 | func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths { |
| 324 | return nil |
| 325 | } |
| 326 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 327 | func (a *AndroidApp) ExportedStaticPackages() android.Paths { |
| 328 | return nil |
| 329 | } |
| 330 | |
Sundong Ahn | e1f05aa | 2019-08-27 13:55:42 +0900 | [diff] [blame] | 331 | func (a *AndroidApp) OutputFile() android.Path { |
| 332 | return a.outputFile |
| 333 | } |
| 334 | |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 335 | func (a *AndroidApp) Certificate() Certificate { |
| 336 | return a.certificate |
| 337 | } |
| 338 | |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 339 | func (a *AndroidApp) JniCoverageOutputs() android.Paths { |
| 340 | return a.jniCoverageOutputs |
| 341 | } |
| 342 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 343 | var _ AndroidLibraryDependency = (*AndroidApp)(nil) |
| 344 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 345 | type Certificate struct { |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 346 | Pem, Key android.Path |
| 347 | presigned bool |
| 348 | } |
| 349 | |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 350 | var PresignedCertificate = Certificate{presigned: true} |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 351 | |
| 352 | func (c Certificate) AndroidMkString() string { |
| 353 | if c.presigned { |
| 354 | return "PRESIGNED" |
| 355 | } else { |
| 356 | return c.Pem.String() |
| 357 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 358 | } |
| 359 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 360 | func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 361 | a.Module.deps(ctx) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 362 | |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 363 | if String(a.appProperties.Stl) == "c++_shared" && !a.sdkVersion().specified() { |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 364 | ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared") |
| 365 | } |
| 366 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 367 | sdkDep := decodeSdkDep(ctx, sdkContext(a)) |
| 368 | if sdkDep.hasFrameworkLibs() { |
| 369 | a.aapt.deps(ctx, sdkDep) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 370 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 371 | |
Colin Cross | 3c00770 | 2020-05-08 11:20:24 -0700 | [diff] [blame] | 372 | usesSDK := a.sdkVersion().specified() && a.sdkVersion().kind != sdkCorePlatform |
| 373 | |
| 374 | if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) { |
| 375 | ctx.PropertyErrorf("jni_uses_sdk_apis", |
| 376 | "can only be set for modules that do not set sdk_version") |
| 377 | } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) { |
| 378 | ctx.PropertyErrorf("jni_uses_platform_apis", |
| 379 | "can only be set for modules that set sdk_version") |
| 380 | } |
| 381 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 382 | for _, jniTarget := range ctx.MultiTargets() { |
Colin Cross | 0f7d2ef | 2019-10-16 11:03:10 -0700 | [diff] [blame] | 383 | variation := append(jniTarget.Variations(), |
| 384 | blueprint.Variation{Mutator: "link", Variation: "shared"}) |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 385 | |
| 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 Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 388 | // 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 Cross | 7204cf0 | 2020-05-06 17:51:39 -0700 | [diff] [blame] | 392 | Bool(a.appProperties.Jni_uses_sdk_apis) { |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 393 | variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"}) |
| 394 | } |
Colin Cross | de78d13 | 2020-10-09 18:59:49 -0700 | [diff] [blame] | 395 | ctx.AddFarVariationDependencies(variation, jniLibTag, a.appProperties.Jni_libs...) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 396 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 397 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 398 | a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs()) |
Jaewoong Jung | b639a6a | 2019-05-10 15:16:29 -0700 | [diff] [blame] | 399 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 400 | |
Jaewoong Jung | b639a6a | 2019-05-10 15:16:29 -0700 | [diff] [blame] | 401 | func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) { |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 402 | cert := android.SrcIsModule(a.getCertString(ctx)) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 403 | 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 Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Jeongik Cha | 538c0d0 | 2019-07-11 15:54:27 +0900 | [diff] [blame] | 418 | func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 419 | a.generateAndroidBuildActions(ctx) |
| 420 | } |
| 421 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 422 | func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 423 | a.checkAppSdkVersions(ctx) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 424 | a.generateAndroidBuildActions(ctx) |
| 425 | } |
| 426 | |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 427 | func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) { |
Artur Satayev | 849f844 | 2020-04-28 14:57:42 +0100 | [diff] [blame] | 428 | if a.Updatable() { |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 429 | if !a.sdkVersion().stable() { |
| 430 | ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.sdkVersion()) |
| 431 | } |
Artur Satayev | f40fc85 | 2020-04-16 13:43:02 +0100 | [diff] [blame] | 432 | if String(a.deviceProperties.Min_sdk_version) == "" { |
| 433 | ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.") |
| 434 | } |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 435 | |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 436 | if minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx); err == nil { |
| 437 | a.checkJniLibsSdkVersion(ctx, minSdkVersion) |
Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 438 | android.CheckMinSdkVersion(a, ctx, minSdkVersion.ApiLevel(ctx)) |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 439 | } else { |
| 440 | ctx.PropertyErrorf("min_sdk_version", "%s", err.Error()) |
| 441 | } |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | a.checkPlatformAPI(ctx) |
| 445 | a.checkSdkVersions(ctx) |
| 446 | } |
| 447 | |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 448 | // 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. |
| 454 | func (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 Han | 652d5b3 | 2020-05-20 17:12:13 +0900 | [diff] [blame] | 461 | // 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 Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 466 | 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 Smundak | 6ad7725 | 2019-05-01 13:16:22 -0700 | [diff] [blame] | 474 | // Returns true if the native libraries should be stored in the APK uncompressed and the |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 475 | // extractNativeLibs application flag should be set to false in the manifest. |
Sasha Smundak | 6ad7725 | 2019-05-01 13:16:22 -0700 | [diff] [blame] | 476 | func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool { |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 477 | minSdkVersion, err := a.minSdkVersion().effectiveVersion(ctx) |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 478 | if err != nil { |
| 479 | ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err) |
| 480 | } |
| 481 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 482 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
Jiyong Park | 52cd06f | 2019-11-11 10:14:32 +0900 | [diff] [blame] | 483 | return (minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) || |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 484 | !apexInfo.IsForPlatform() |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 485 | } |
| 486 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 487 | // Returns whether this module should have the dex file stored uncompressed in the APK. |
| 488 | func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool { |
Colin Cross | 46abdad | 2019-02-07 13:07:08 -0800 | [diff] [blame] | 489 | if Bool(a.appProperties.Use_embedded_dex) { |
| 490 | return true |
| 491 | } |
| 492 | |
Colin Cross | 53a87f5 | 2019-06-25 13:35:30 -0700 | [diff] [blame] | 493 | // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may |
| 494 | // be preinstalled as prebuilts). |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 495 | if ctx.Config().UncompressPrivAppDex() && a.Privileged() { |
Nicolas Geoffray | fa6e9ec | 2019-02-12 13:12:16 +0000 | [diff] [blame] | 496 | return true |
| 497 | } |
| 498 | |
Colin Cross | 53a87f5 | 2019-06-25 13:35:30 -0700 | [diff] [blame] | 499 | if ctx.Config().UnbundledBuild() { |
| 500 | return false |
| 501 | } |
| 502 | |
Jaewoong Jung | acf18d7 | 2019-05-02 14:55:29 -0700 | [diff] [blame] | 503 | return shouldUncompressDex(ctx, &a.dexpreopter) |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 504 | } |
| 505 | |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 506 | func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 507 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 508 | return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) || |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 509 | !apexInfo.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 512 | func generateAaptRenamePackageFlags(packageName string, renameResourcesPackage bool) []string { |
| 513 | aaptFlags := []string{"--rename-manifest-package " + packageName} |
| 514 | if renameResourcesPackage { |
| 515 | // Required to rename the package name in the resources table. |
| 516 | aaptFlags = append(aaptFlags, "--rename-resources-package "+packageName) |
| 517 | } |
| 518 | return aaptFlags |
| 519 | } |
| 520 | |
Jiyong Park | cfaa164 | 2020-02-28 16:51:07 +0900 | [diff] [blame] | 521 | func (a *AndroidApp) OverriddenManifestPackageName() string { |
| 522 | return a.overriddenManifestPackageName |
| 523 | } |
| 524 | |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 525 | func (a *AndroidApp) renameResourcesPackage() bool { |
| 526 | return proptools.BoolDefault(a.overridableAppProperties.Rename_resources_package, true) |
| 527 | } |
| 528 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 529 | func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) { |
David Brazdil | d25060a | 2019-02-18 18:24:16 +0000 | [diff] [blame] | 530 | a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis) |
| 531 | |
Jaewoong Jung | c27ab66 | 2019-05-30 15:51:14 -0700 | [diff] [blame] | 532 | // Ask manifest_fixer to add or update the application element indicating this app has no code. |
| 533 | a.aapt.hasNoCode = !a.hasCode(ctx) |
| 534 | |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 535 | aaptLinkFlags := []string{} |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 536 | |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 537 | // Add TARGET_AAPT_CHARACTERISTICS values to AAPT link flags if they exist and --product flags were not provided. |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 538 | hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product") |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 539 | if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 540 | aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics()) |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 543 | if !Bool(a.aaptProperties.Aapt_include_all_resources) { |
| 544 | // Product AAPT config |
| 545 | for _, aaptConfig := range ctx.Config().ProductAAPTConfig() { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 546 | aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig) |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 547 | } |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 548 | |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 549 | // Product AAPT preferred config |
| 550 | if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 551 | aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig()) |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 552 | } |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 555 | manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName()) |
Jaewoong Jung | 6f373f6 | 2019-03-13 10:13:24 -0700 | [diff] [blame] | 556 | if overridden || a.overridableAppProperties.Package_name != nil { |
| 557 | // The product override variable has a priority over the package_name property. |
| 558 | if !overridden { |
| 559 | manifestPackageName = *a.overridableAppProperties.Package_name |
| 560 | } |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 561 | aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, a.renameResourcesPackage())...) |
Jiyong Park | cfaa164 | 2020-02-28 16:51:07 +0900 | [diff] [blame] | 562 | a.overriddenManifestPackageName = manifestPackageName |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 563 | } |
| 564 | |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 565 | aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...) |
| 566 | |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 567 | a.aapt.splitNames = a.appProperties.Package_splits |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 568 | a.aapt.sdkLibraries = a.exportedSdkLibs |
Baligh Uddin | 5b16dfb | 2020-02-11 17:27:19 -0800 | [diff] [blame] | 569 | a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent) |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 570 | a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 571 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 572 | // apps manifests are handled by aapt, don't let Module see them |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 573 | a.properties.Manifest = nil |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 574 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 575 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 576 | func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) { |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 577 | var staticLibProguardFlagFiles android.Paths |
| 578 | ctx.VisitDirectDeps(func(m android.Module) { |
| 579 | if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag { |
| 580 | staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...) |
| 581 | } |
| 582 | }) |
| 583 | |
| 584 | staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles) |
| 585 | |
| 586 | a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...) |
| 587 | a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile) |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 588 | } |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 589 | |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 590 | func (a *AndroidApp) installPath(ctx android.ModuleContext) android.InstallPath { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 591 | var installDir string |
| 592 | if ctx.ModuleName() == "framework-res" { |
| 593 | // framework-res.apk is installed as system/framework/framework-res.apk |
| 594 | installDir = "framework" |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 595 | } else if a.Privileged() { |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 596 | installDir = filepath.Join("priv-app", a.installApkName) |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 597 | } else { |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 598 | installDir = filepath.Join("app", a.installApkName) |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 599 | } |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 600 | |
| 601 | return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk") |
| 602 | } |
| 603 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 604 | func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext, sdkLibs dexpreopt.ClassLoaderContextMap) android.Path { |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 605 | a.dexpreopter.installPath = a.installPath(ctx) |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 606 | if a.dexProperties.Uncompress_dex == nil { |
David Srbecky | e033cba | 2020-05-20 22:20:28 +0100 | [diff] [blame] | 607 | // If the value was not force-set by the user, use reasonable default based on the module. |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 608 | a.dexProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx)) |
David Srbecky | e033cba | 2020-05-20 22:20:28 +0100 | [diff] [blame] | 609 | } |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 610 | a.dexpreopter.uncompressedDex = *a.dexProperties.Uncompress_dex |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 611 | a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries() |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 612 | a.dexpreopter.classLoaderContexts = a.usesLibrary.classLoaderContextForUsesLibDeps(ctx) |
| 613 | a.dexpreopter.classLoaderContexts.AddContextMap(sdkLibs) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 614 | a.dexpreopter.manifestFile = a.mergedManifestFile |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 615 | a.exportedSdkLibs = make(dexpreopt.ClassLoaderContextMap) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 616 | |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 617 | if ctx.ModuleName() != "framework-res" { |
| 618 | a.Module.compile(ctx, a.aaptSrcJar) |
| 619 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 620 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 621 | return a.maybeStrippedDexJarFile |
| 622 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 623 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 624 | func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 625 | var jniJarFile android.WritablePath |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 626 | if len(jniLibs) > 0 { |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 627 | a.jniLibs = jniLibs |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 628 | if a.shouldEmbedJnis(ctx) { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 629 | jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip") |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 630 | a.installPathForJNISymbols = a.installPath(ctx).ToMakePath() |
Sasha Smundak | 6ad7725 | 2019-05-01 13:16:22 -0700 | [diff] [blame] | 631 | TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx)) |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 632 | for _, jni := range jniLibs { |
| 633 | if jni.coverageFile.Valid() { |
Jaewoong Jung | 46984ee | 2020-04-07 13:07:55 -0700 | [diff] [blame] | 634 | // Only collect coverage for the first target arch if this is a multilib target. |
| 635 | // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage |
| 636 | // data file path collisions since the current coverage file path format doesn't contain |
| 637 | // arch-related strings. This is fine for now though; the code coverage team doesn't use |
| 638 | // multi-arch targets such as test_suite_* for coverage collections yet. |
| 639 | // |
| 640 | // Work with the team to come up with a new format that handles multilib modules properly |
| 641 | // and change this. |
| 642 | if len(ctx.Config().Targets[android.Android]) == 1 || |
Jaewoong Jung | 642916f | 2020-10-09 17:25:15 -0700 | [diff] [blame] | 643 | ctx.Config().AndroidFirstDeviceTarget.Arch.ArchType == jni.target.Arch.ArchType { |
Jaewoong Jung | 46984ee | 2020-04-07 13:07:55 -0700 | [diff] [blame] | 644 | a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path()) |
| 645 | } |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 646 | } |
| 647 | } |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 648 | a.embeddedJniLibs = true |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 649 | } |
| 650 | } |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 651 | return jniJarFile |
| 652 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 653 | |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 654 | func (a *AndroidApp) JNISymbolsInstalls(installPath string) android.RuleBuilderInstalls { |
| 655 | var jniSymbols android.RuleBuilderInstalls |
| 656 | for _, jniLib := range a.jniLibs { |
| 657 | if jniLib.unstrippedFile != nil { |
| 658 | jniSymbols = append(jniSymbols, android.RuleBuilderInstall{ |
| 659 | From: jniLib.unstrippedFile, |
| 660 | To: filepath.Join(installPath, targetToJniDir(jniLib.target), jniLib.unstrippedFile.Base()), |
| 661 | }) |
| 662 | } |
| 663 | } |
| 664 | return jniSymbols |
| 665 | } |
| 666 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 667 | func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) { |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 668 | // Collect NOTICE files from all dependencies. |
| 669 | seenModules := make(map[android.Module]bool) |
| 670 | noticePathSet := make(map[android.Path]bool) |
| 671 | |
| 672 | ctx.WalkDeps(func(child android.Module, parent android.Module) bool { |
| 673 | // Have we already seen this? |
| 674 | if _, ok := seenModules[child]; ok { |
| 675 | return false |
| 676 | } |
| 677 | seenModules[child] = true |
| 678 | |
| 679 | // Skip host modules. |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 680 | if child.Target().Os.Class == android.Host { |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 681 | return false |
| 682 | } |
| 683 | |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 684 | paths := child.(android.Module).NoticeFiles() |
| 685 | if len(paths) > 0 { |
| 686 | for _, path := range paths { |
| 687 | noticePathSet[path] = true |
| 688 | } |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 689 | } |
| 690 | return true |
| 691 | }) |
| 692 | |
| 693 | // If the app has one, add it too. |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 694 | if len(a.NoticeFiles()) > 0 { |
| 695 | for _, path := range a.NoticeFiles() { |
| 696 | noticePathSet[path] = true |
| 697 | } |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | if len(noticePathSet) == 0 { |
Jaewoong Jung | 9877279 | 2019-07-01 17:15:13 -0700 | [diff] [blame] | 701 | return |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 702 | } |
| 703 | var noticePaths []android.Path |
| 704 | for path := range noticePathSet { |
| 705 | noticePaths = append(noticePaths, path) |
| 706 | } |
| 707 | sort.Slice(noticePaths, func(i, j int) bool { |
| 708 | return noticePaths[i].String() < noticePaths[j].String() |
| 709 | }) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 710 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 711 | a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 712 | } |
| 713 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 714 | // Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it |
| 715 | // isn't a cert module reference. Also checks and enforces system cert restriction if applicable. |
| 716 | func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate { |
| 717 | if android.SrcIsModule(certPropValue) == "" { |
| 718 | var mainCert Certificate |
| 719 | if certPropValue != "" { |
| 720 | defaultDir := ctx.Config().DefaultAppCertificateDir(ctx) |
| 721 | mainCert = Certificate{ |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 722 | Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"), |
| 723 | Key: defaultDir.Join(ctx, certPropValue+".pk8"), |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 724 | } |
| 725 | } else { |
| 726 | pem, key := ctx.Config().DefaultAppCertificate(ctx) |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 727 | mainCert = Certificate{ |
| 728 | Pem: pem, |
| 729 | Key: key, |
| 730 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 731 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 732 | certificates = append([]Certificate{mainCert}, certificates...) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 733 | } |
| 734 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 735 | if !m.Platform() { |
| 736 | certPath := certificates[0].Pem.String() |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 737 | systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String() |
| 738 | if strings.HasPrefix(certPath, systemCertPath) { |
| 739 | enforceSystemCert := ctx.Config().EnforceSystemCertificate() |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 740 | allowed := ctx.Config().EnforceSystemCertificateAllowList() |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 741 | |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 742 | if enforceSystemCert && !inList(m.Name(), allowed) { |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 743 | ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.") |
| 744 | } |
| 745 | } |
| 746 | } |
| 747 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 748 | return certificates |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 749 | } |
| 750 | |
Jooyung Han | 39ee119 | 2020-03-23 20:21:11 +0900 | [diff] [blame] | 751 | func (a *AndroidApp) InstallApkName() string { |
| 752 | return a.installApkName |
| 753 | } |
| 754 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 755 | func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 756 | var apkDeps android.Paths |
| 757 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 758 | if !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform() { |
| 759 | a.hideApexVariantFromMake = true |
| 760 | } |
| 761 | |
Jeongik Cha | 538c0d0 | 2019-07-11 15:54:27 +0900 | [diff] [blame] | 762 | a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx) |
| 763 | a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex) |
| 764 | |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 765 | // Check if the install APK name needs to be overridden. |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 766 | a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name()) |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 767 | |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 768 | if ctx.ModuleName() == "framework-res" { |
| 769 | // framework-res.apk is installed as system/framework/framework-res.apk |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 770 | a.installDir = android.PathForModuleInstall(ctx, "framework") |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 771 | } else if a.Privileged() { |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 772 | a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName) |
| 773 | } else if ctx.InstallInTestcases() { |
Jaewoong Jung | 326a941 | 2019-11-21 10:41:00 -0800 | [diff] [blame] | 774 | a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch()) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 775 | } else { |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 776 | a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 777 | } |
Jaewoong Jung | 7dd4ae2 | 2019-09-27 17:13:15 -0700 | [diff] [blame] | 778 | a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 779 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 780 | a.noticeBuildActions(ctx) |
Jaewoong Jung | 9877279 | 2019-07-01 17:15:13 -0700 | [diff] [blame] | 781 | if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") { |
| 782 | a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput |
| 783 | } |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 784 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 785 | // Process all building blocks, from AAPT to certificates. |
| 786 | a.aaptBuildActions(ctx) |
| 787 | |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 788 | // The decision to enforce <uses-library> checks is made before adding implicit SDK libraries. |
| 789 | a.usesLibrary.freezeEnforceUsesLibraries() |
| 790 | |
| 791 | // Add implicit SDK libraries to <uses-library> list. |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 792 | for _, usesLib := range a.aapt.sdkLibraries.UsesLibs() { |
Ulya Trafimovich | 663dc53 | 2020-09-10 12:48:53 +0100 | [diff] [blame] | 793 | a.usesLibrary.addLib(usesLib, inList(usesLib, dexpreopt.OptionalCompatUsesLibs)) |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | // Check that the <uses-library> list is coherent with the manifest. |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 797 | if a.usesLibrary.enforceUsesLibraries() { |
| 798 | manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile) |
| 799 | apkDeps = append(apkDeps, manifestCheckFile) |
| 800 | } |
| 801 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 802 | a.proguardBuildActions(ctx) |
| 803 | |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 804 | a.linter.mergedManifest = a.aapt.mergedManifestFile |
| 805 | a.linter.manifest = a.aapt.manifestPath |
| 806 | a.linter.resources = a.aapt.resourceFiles |
Colin Cross | c0efd1d | 2020-07-03 11:56:24 -0700 | [diff] [blame] | 807 | a.linter.buildModuleReportZip = ctx.Config().UnbundledBuildApps() |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 808 | |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 809 | dexJarFile := a.dexBuildActions(ctx, a.aapt.sdkLibraries) |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 810 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 811 | jniLibs, certificateDeps := collectAppDeps(ctx, a, a.shouldEmbedJnis(ctx), !Bool(a.appProperties.Jni_uses_platform_apis)) |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 812 | jniJarFile := a.jniBuildActions(jniLibs, ctx) |
| 813 | |
| 814 | if ctx.Failed() { |
| 815 | return |
| 816 | } |
| 817 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 818 | certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx) |
| 819 | a.certificate = certificates[0] |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 820 | |
| 821 | // Build a final signed app package. |
Jaewoong Jung | 5a49881 | 2019-11-07 14:14:38 -0800 | [diff] [blame] | 822 | packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk") |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 823 | v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature) |
| 824 | var v4SignatureFile android.WritablePath = nil |
| 825 | if v4SigningRequested { |
| 826 | v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig") |
| 827 | } |
Liz Kammer | e2b27f4 | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 828 | var lineageFile android.Path |
| 829 | if lineage := String(a.overridableAppProperties.Lineage); lineage != "" { |
| 830 | lineageFile = android.PathForModuleSrc(ctx, lineage) |
| 831 | } |
Liz Kammer | 70dd74d | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 832 | CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 833 | a.outputFile = packageFile |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 834 | if v4SigningRequested { |
| 835 | a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile) |
| 836 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 837 | |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 838 | for _, split := range a.aapt.splits { |
| 839 | // Sign the split APKs |
Jaewoong Jung | 5a49881 | 2019-11-07 14:14:38 -0800 | [diff] [blame] | 840 | packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk") |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 841 | if v4SigningRequested { |
| 842 | v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig") |
| 843 | } |
Liz Kammer | 70dd74d | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 844 | CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile) |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 845 | a.extraOutputFiles = append(a.extraOutputFiles, packageFile) |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 846 | if v4SigningRequested { |
| 847 | a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile) |
| 848 | } |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 851 | // Build an app bundle. |
Colin Cross | f623721 | 2018-10-29 23:14:58 -0700 | [diff] [blame] | 852 | bundleFile := android.PathForModuleOut(ctx, "base.zip") |
| 853 | BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile) |
| 854 | a.bundleFile = bundleFile |
| 855 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 856 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
| 857 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 858 | // Install the app package. |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 859 | if (Bool(a.Module.properties.Installable) || ctx.Host()) && apexInfo.IsForPlatform() { |
Jiyong Park | 8ba50f9 | 2019-11-13 15:01:01 +0900 | [diff] [blame] | 860 | ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile) |
| 861 | for _, extra := range a.extraOutputFiles { |
| 862 | ctx.InstallFile(a.installDir, extra.Base(), extra) |
| 863 | } |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 864 | } |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 865 | |
| 866 | a.buildAppDependencyInfo(ctx) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 869 | type appDepsInterface interface { |
| 870 | sdkVersion() sdkSpec |
| 871 | minSdkVersion() sdkSpec |
| 872 | RequiresStableAPIs(ctx android.BaseModuleContext) bool |
| 873 | } |
| 874 | |
| 875 | func collectAppDeps(ctx android.ModuleContext, app appDepsInterface, |
| 876 | shouldCollectRecursiveNativeDeps bool, |
Colin Cross | 094cde4 | 2020-02-15 10:38:00 -0800 | [diff] [blame] | 877 | checkNativeSdkVersion bool) ([]jniLib, []Certificate) { |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 878 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 879 | var jniLibs []jniLib |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 880 | var certificates []Certificate |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 881 | seenModulePaths := make(map[string]bool) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 882 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 883 | if checkNativeSdkVersion { |
| 884 | checkNativeSdkVersion = app.sdkVersion().specified() && |
| 885 | app.sdkVersion().kind != sdkCorePlatform && !app.RequiresStableAPIs(ctx) |
| 886 | } |
| 887 | |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 888 | ctx.WalkDeps(func(module android.Module, parent android.Module) bool { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 889 | otherName := ctx.OtherModuleName(module) |
| 890 | tag := ctx.OtherModuleDependencyTag(module) |
| 891 | |
Colin Cross | f0913fb | 2020-07-29 12:59:39 -0700 | [diff] [blame] | 892 | if IsJniDepTag(tag) || cc.IsSharedDepTag(tag) { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 893 | if dep, ok := module.(*cc.Module); ok { |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 894 | if dep.IsNdk() || dep.IsStubs() { |
| 895 | return false |
| 896 | } |
| 897 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 898 | lib := dep.OutputFile() |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 899 | path := lib.Path() |
| 900 | if seenModulePaths[path.String()] { |
| 901 | return false |
| 902 | } |
| 903 | seenModulePaths[path.String()] = true |
| 904 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 905 | if checkNativeSdkVersion && dep.SdkVersion() == "" { |
| 906 | ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not", |
| 907 | otherName) |
Colin Cross | 094cde4 | 2020-02-15 10:38:00 -0800 | [diff] [blame] | 908 | } |
| 909 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 910 | if lib.Valid() { |
| 911 | jniLibs = append(jniLibs, jniLib{ |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 912 | name: ctx.OtherModuleName(module), |
| 913 | path: path, |
| 914 | target: module.Target(), |
| 915 | coverageFile: dep.CoverageOutputFile(), |
| 916 | unstrippedFile: dep.UnstrippedOutputFile(), |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 917 | }) |
| 918 | } else { |
| 919 | ctx.ModuleErrorf("dependency %q missing output file", otherName) |
| 920 | } |
| 921 | } else { |
| 922 | ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 923 | } |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 924 | |
| 925 | return shouldCollectRecursiveNativeDeps |
| 926 | } |
| 927 | |
| 928 | if tag == certificateTag { |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 929 | if dep, ok := module.(*AndroidAppCertificate); ok { |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 930 | certificates = append(certificates, dep.Certificate) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 931 | } else { |
| 932 | ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName) |
| 933 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 934 | } |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 935 | |
| 936 | return false |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 937 | }) |
| 938 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 939 | return jniLibs, certificates |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 940 | } |
| 941 | |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 942 | func (a *AndroidApp) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) { |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 943 | ctx.WalkDeps(func(child, parent android.Module) bool { |
| 944 | isExternal := !a.DepIsInSameApex(ctx, child) |
| 945 | if am, ok := child.(android.ApexModule); ok { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 946 | if !do(ctx, parent, am, isExternal) { |
| 947 | return false |
| 948 | } |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 949 | } |
| 950 | return !isExternal |
| 951 | }) |
| 952 | } |
| 953 | |
| 954 | func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) { |
| 955 | if ctx.Host() { |
| 956 | return |
| 957 | } |
| 958 | |
| 959 | depsInfo := android.DepNameToDepInfoMap{} |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 960 | a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool { |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 961 | depName := to.Name() |
| 962 | if info, exist := depsInfo[depName]; exist { |
| 963 | info.From = append(info.From, from.Name()) |
| 964 | info.IsExternal = info.IsExternal && externalDep |
| 965 | depsInfo[depName] = info |
| 966 | } else { |
| 967 | toMinSdkVersion := "(no version)" |
| 968 | if m, ok := to.(interface{ MinSdkVersion() string }); ok { |
| 969 | if v := m.MinSdkVersion(); v != "" { |
| 970 | toMinSdkVersion = v |
| 971 | } |
| 972 | } |
| 973 | depsInfo[depName] = android.ApexModuleDepInfo{ |
| 974 | To: depName, |
| 975 | From: []string{from.Name()}, |
| 976 | IsExternal: externalDep, |
| 977 | MinSdkVersion: toMinSdkVersion, |
| 978 | } |
| 979 | } |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 980 | return true |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 981 | }) |
| 982 | |
| 983 | a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(), depsInfo) |
| 984 | } |
| 985 | |
Artur Satayev | 849f844 | 2020-04-28 14:57:42 +0100 | [diff] [blame] | 986 | func (a *AndroidApp) Updatable() bool { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 987 | return Bool(a.appProperties.Updatable) |
Artur Satayev | 849f844 | 2020-04-28 14:57:42 +0100 | [diff] [blame] | 988 | } |
| 989 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 990 | func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string { |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 991 | certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName()) |
| 992 | if overridden { |
Jaewoong Jung | acb6db3 | 2019-02-28 16:22:30 +0000 | [diff] [blame] | 993 | return ":" + certificate |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 994 | } |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 995 | return String(a.overridableAppProperties.Certificate) |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 996 | } |
| 997 | |
Jiyong Park | 0f80c18 | 2020-01-31 02:49:53 +0900 | [diff] [blame] | 998 | func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { |
| 999 | if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) { |
| 1000 | return true |
| 1001 | } |
| 1002 | return a.Library.DepIsInSameApex(ctx, dep) |
| 1003 | } |
| 1004 | |
Jiyong Park | b7c639e | 2019-08-19 14:56:02 +0900 | [diff] [blame] | 1005 | // For OutputFileProducer interface |
| 1006 | func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) { |
| 1007 | switch tag { |
| 1008 | case ".aapt.srcjar": |
| 1009 | return []android.Path{a.aaptSrcJar}, nil |
Anton Hansson | 092aca4 | 2020-08-13 19:37:22 +0100 | [diff] [blame] | 1010 | case ".export-package.apk": |
| 1011 | return []android.Path{a.exportPackage}, nil |
Jiyong Park | b7c639e | 2019-08-19 14:56:02 +0900 | [diff] [blame] | 1012 | } |
| 1013 | return a.Library.OutputFiles(tag) |
| 1014 | } |
| 1015 | |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 1016 | func (a *AndroidApp) Privileged() bool { |
| 1017 | return Bool(a.appProperties.Privileged) |
| 1018 | } |
| 1019 | |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 1020 | func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool { |
Colin Cross | 1a6acd4 | 2020-06-16 17:51:46 -0700 | [diff] [blame] | 1021 | return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled() |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 1022 | } |
| 1023 | |
| 1024 | func (a *AndroidApp) PreventInstall() { |
| 1025 | a.appProperties.PreventInstall = true |
| 1026 | } |
| 1027 | |
| 1028 | func (a *AndroidApp) HideFromMake() { |
| 1029 | a.appProperties.HideFromMake = true |
| 1030 | } |
| 1031 | |
| 1032 | func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) { |
| 1033 | a.appProperties.IsCoverageVariant = coverage |
| 1034 | } |
| 1035 | |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1036 | func (a *AndroidApp) EnableCoverageIfNeeded() {} |
| 1037 | |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 1038 | var _ cc.Coverage = (*AndroidApp)(nil) |
| 1039 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 1040 | // android_app compiles sources and Android resources into an Android application package `.apk` file. |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1041 | func AndroidAppFactory() android.Module { |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 1042 | module := &AndroidApp{} |
| 1043 | |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 1044 | module.Module.dexProperties.Optimize.EnabledByDefault = true |
| 1045 | module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true) |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 1046 | |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1047 | module.Module.properties.Instrument = true |
Colin Cross | 9ae1b92 | 2018-06-26 17:59:05 -0700 | [diff] [blame] | 1048 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1049 | |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 1050 | module.addHostAndDeviceProperties() |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1051 | module.AddProperties( |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 1052 | &module.aaptProperties, |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1053 | &module.appProperties, |
Ulya Trafimovich | 21a7375 | 2020-09-01 17:33:48 +0100 | [diff] [blame] | 1054 | &module.overridableAppProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1055 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 1056 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1057 | android.InitDefaultableModule(module) |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1058 | android.InitOverridableModule(module, &module.appProperties.Overrides) |
Jiyong Park | 52cd06f | 2019-11-11 10:14:32 +0900 | [diff] [blame] | 1059 | android.InitApexModule(module) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 1060 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1061 | return module |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 1062 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1063 | |
| 1064 | type appTestProperties struct { |
Liz Kammer | 6b0c552 | 2020-04-28 16:10:55 -0700 | [diff] [blame] | 1065 | // The name of the android_app module that the tests will run against. |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1066 | Instrumentation_for *string |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1067 | |
| 1068 | // if specified, the instrumentation target package name in the manifest is overwritten by it. |
| 1069 | Instrumentation_target_package *string |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1070 | } |
| 1071 | |
| 1072 | type AndroidTest struct { |
| 1073 | AndroidApp |
| 1074 | |
| 1075 | appTestProperties appTestProperties |
| 1076 | |
| 1077 | testProperties testProperties |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 1078 | |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 1079 | testConfig android.Path |
| 1080 | extraTestConfigs android.Paths |
| 1081 | data android.Paths |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1082 | } |
| 1083 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 1084 | func (a *AndroidTest) InstallInTestcases() bool { |
| 1085 | return true |
| 1086 | } |
| 1087 | |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1088 | func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
easoncylee | 5bcff5d | 2020-04-30 14:57:06 +0800 | [diff] [blame] | 1089 | var configs []tradefed.Config |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1090 | if a.appTestProperties.Instrumentation_target_package != nil { |
| 1091 | a.additionalAaptFlags = append(a.additionalAaptFlags, |
| 1092 | "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package) |
| 1093 | } else if a.appTestProperties.Instrumentation_for != nil { |
| 1094 | // Check if the instrumentation target package is overridden. |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 1095 | manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for) |
| 1096 | if overridden { |
| 1097 | a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName) |
| 1098 | } |
| 1099 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1100 | a.generateAndroidBuildActions(ctx) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 1101 | |
easoncylee | 5bcff5d | 2020-04-30 14:57:06 +0800 | [diff] [blame] | 1102 | for _, module := range a.testProperties.Test_mainline_modules { |
| 1103 | configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module}) |
| 1104 | } |
| 1105 | |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 1106 | testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config, |
easoncylee | 5bcff5d | 2020-04-30 14:57:06 +0800 | [diff] [blame] | 1107 | a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs) |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 1108 | a.testConfig = a.FixTestConfig(ctx, testConfig) |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 1109 | a.extraTestConfigs = android.PathsForModuleSrc(ctx, a.testProperties.Test_options.Extra_test_configs) |
Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 1110 | a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 1111 | } |
| 1112 | |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 1113 | func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path { |
| 1114 | if testConfig == nil { |
| 1115 | return nil |
| 1116 | } |
| 1117 | |
| 1118 | fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml") |
| 1119 | rule := android.NewRuleBuilder() |
| 1120 | command := rule.Command().BuiltTool(ctx, "test_config_fixer").Input(testConfig).Output(fixedConfig) |
| 1121 | fixNeeded := false |
| 1122 | |
| 1123 | if ctx.ModuleName() != a.installApkName { |
| 1124 | fixNeeded = true |
| 1125 | command.FlagWithArg("--test-file-name ", a.installApkName+".apk") |
| 1126 | } |
| 1127 | |
| 1128 | if a.overridableAppProperties.Package_name != nil { |
| 1129 | fixNeeded = true |
| 1130 | command.FlagWithInput("--manifest ", a.manifestPath). |
| 1131 | FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name) |
| 1132 | } |
| 1133 | |
| 1134 | if fixNeeded { |
| 1135 | rule.Build(pctx, ctx, "fix_test_config", "fix test config") |
| 1136 | return fixedConfig |
| 1137 | } |
| 1138 | return testConfig |
| 1139 | } |
| 1140 | |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 1141 | func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) { |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 1142 | a.AndroidApp.DepsMutator(ctx) |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) { |
| 1146 | a.AndroidApp.OverridablePropertiesDepsMutator(ctx) |
Colin Cross | 4b964c0 | 2018-10-15 16:18:06 -0700 | [diff] [blame] | 1147 | if a.appTestProperties.Instrumentation_for != nil { |
| 1148 | // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac, |
| 1149 | // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so |
| 1150 | // use instrumentationForTag instead of libTag. |
| 1151 | ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for)) |
| 1152 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1153 | } |
| 1154 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 1155 | // android_test compiles test sources and Android resources into an Android application package `.apk` file and |
| 1156 | // creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file. |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1157 | func AndroidTestFactory() android.Module { |
| 1158 | module := &AndroidTest{} |
| 1159 | |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 1160 | module.Module.dexProperties.Optimize.EnabledByDefault = true |
Colin Cross | 5067db9 | 2018-09-17 16:46:35 -0700 | [diff] [blame] | 1161 | |
| 1162 | module.Module.properties.Instrument = true |
Colin Cross | 9ae1b92 | 2018-06-26 17:59:05 -0700 | [diff] [blame] | 1163 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 1164 | module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true) |
Colin Cross | 47fa9d3 | 2019-03-26 10:51:39 -0700 | [diff] [blame] | 1165 | module.appProperties.AlwaysPackageNativeLibs = true |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 1166 | module.Module.dexpreopter.isTest = true |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 1167 | module.Module.linter.test = true |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1168 | |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 1169 | module.addHostAndDeviceProperties() |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1170 | module.AddProperties( |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1171 | &module.aaptProperties, |
| 1172 | &module.appProperties, |
Dan Willemsen | f5531d2 | 2018-07-16 17:21:19 -0700 | [diff] [blame] | 1173 | &module.appTestProperties, |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1174 | &module.overridableAppProperties, |
Dan Willemsen | f5531d2 | 2018-07-16 17:21:19 -0700 | [diff] [blame] | 1175 | &module.testProperties) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1176 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 1177 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1178 | android.InitDefaultableModule(module) |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1179 | android.InitOverridableModule(module, &module.appProperties.Overrides) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1180 | return module |
| 1181 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1182 | |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1183 | type appTestHelperAppProperties struct { |
| 1184 | // list of compatibility suites (for example "cts", "vts") that the module should be |
| 1185 | // installed into. |
| 1186 | Test_suites []string `android:"arch_variant"` |
Dan Shi | 6ffaaa8 | 2019-09-26 11:41:36 -0700 | [diff] [blame] | 1187 | |
| 1188 | // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml |
| 1189 | // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true |
| 1190 | // explicitly. |
| 1191 | Auto_gen_config *bool |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1192 | } |
| 1193 | |
| 1194 | type AndroidTestHelperApp struct { |
| 1195 | AndroidApp |
| 1196 | |
| 1197 | appTestHelperAppProperties appTestHelperAppProperties |
| 1198 | } |
| 1199 | |
Jaewoong Jung | 326a941 | 2019-11-21 10:41:00 -0800 | [diff] [blame] | 1200 | func (a *AndroidTestHelperApp) InstallInTestcases() bool { |
| 1201 | return true |
| 1202 | } |
| 1203 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 1204 | // android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that |
| 1205 | // will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a |
| 1206 | // test. |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1207 | func AndroidTestHelperAppFactory() android.Module { |
| 1208 | module := &AndroidTestHelperApp{} |
| 1209 | |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 1210 | module.Module.dexProperties.Optimize.EnabledByDefault = true |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1211 | |
| 1212 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 1213 | module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true) |
Colin Cross | 47fa9d3 | 2019-03-26 10:51:39 -0700 | [diff] [blame] | 1214 | module.appProperties.AlwaysPackageNativeLibs = true |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 1215 | module.Module.dexpreopter.isTest = true |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 1216 | module.Module.linter.test = true |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1217 | |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 1218 | module.addHostAndDeviceProperties() |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1219 | module.AddProperties( |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1220 | &module.aaptProperties, |
| 1221 | &module.appProperties, |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1222 | &module.appTestHelperAppProperties, |
Ulya Trafimovich | 21a7375 | 2020-09-01 17:33:48 +0100 | [diff] [blame] | 1223 | &module.overridableAppProperties) |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1224 | |
| 1225 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1226 | android.InitDefaultableModule(module) |
Anton Hansson | 3d2b6b4 | 2020-01-10 15:06:01 +0000 | [diff] [blame] | 1227 | android.InitApexModule(module) |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1228 | return module |
| 1229 | } |
| 1230 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1231 | type AndroidAppCertificate struct { |
| 1232 | android.ModuleBase |
| 1233 | properties AndroidAppCertificateProperties |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 1234 | Certificate Certificate |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1235 | } |
| 1236 | |
| 1237 | type AndroidAppCertificateProperties struct { |
| 1238 | // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name. |
| 1239 | Certificate *string |
| 1240 | } |
| 1241 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 1242 | // android_app_certificate modules can be referenced by the certificates property of android_app modules to select |
| 1243 | // the signing key. |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1244 | func AndroidAppCertificateFactory() android.Module { |
| 1245 | module := &AndroidAppCertificate{} |
| 1246 | module.AddProperties(&module.properties) |
| 1247 | android.InitAndroidModule(module) |
| 1248 | return module |
| 1249 | } |
| 1250 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1251 | func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 1252 | cert := String(c.properties.Certificate) |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 1253 | c.Certificate = Certificate{ |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 1254 | Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"), |
| 1255 | Key: android.PathForModuleSrc(ctx, cert+".pk8"), |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1256 | } |
| 1257 | } |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1258 | |
| 1259 | type OverrideAndroidApp struct { |
| 1260 | android.ModuleBase |
| 1261 | android.OverrideModuleBase |
| 1262 | } |
| 1263 | |
Sasha Smundak | 613cbb1 | 2020-06-05 10:27:23 -0700 | [diff] [blame] | 1264 | func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) { |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1265 | // All the overrides happen in the base module. |
| 1266 | // TODO(jungjw): Check the base module type. |
| 1267 | } |
| 1268 | |
| 1269 | // override_android_app is used to create an android_app module based on another android_app by overriding |
| 1270 | // some of its properties. |
| 1271 | func OverrideAndroidAppModuleFactory() android.Module { |
| 1272 | m := &OverrideAndroidApp{} |
| 1273 | m.AddProperties(&overridableAppProperties{}) |
| 1274 | |
Jaewoong Jung | b639a6a | 2019-05-10 15:16:29 -0700 | [diff] [blame] | 1275 | android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon) |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1276 | android.InitOverrideModule(m) |
| 1277 | return m |
| 1278 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1279 | |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1280 | type OverrideAndroidTest struct { |
| 1281 | android.ModuleBase |
| 1282 | android.OverrideModuleBase |
| 1283 | } |
| 1284 | |
Sasha Smundak | 613cbb1 | 2020-06-05 10:27:23 -0700 | [diff] [blame] | 1285 | func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) { |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1286 | // All the overrides happen in the base module. |
| 1287 | // TODO(jungjw): Check the base module type. |
| 1288 | } |
| 1289 | |
| 1290 | // override_android_test is used to create an android_app module based on another android_test by overriding |
| 1291 | // some of its properties. |
| 1292 | func OverrideAndroidTestModuleFactory() android.Module { |
| 1293 | m := &OverrideAndroidTest{} |
| 1294 | m.AddProperties(&overridableAppProperties{}) |
| 1295 | m.AddProperties(&appTestProperties{}) |
| 1296 | |
| 1297 | android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon) |
| 1298 | android.InitOverrideModule(m) |
| 1299 | return m |
| 1300 | } |
| 1301 | |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1302 | type OverrideRuntimeResourceOverlay struct { |
| 1303 | android.ModuleBase |
| 1304 | android.OverrideModuleBase |
| 1305 | } |
| 1306 | |
Sasha Smundak | 613cbb1 | 2020-06-05 10:27:23 -0700 | [diff] [blame] | 1307 | func (i *OverrideRuntimeResourceOverlay) GenerateAndroidBuildActions(_ android.ModuleContext) { |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1308 | // All the overrides happen in the base module. |
| 1309 | // TODO(jungjw): Check the base module type. |
| 1310 | } |
| 1311 | |
| 1312 | // override_runtime_resource_overlay is used to create a module based on another |
| 1313 | // runtime_resource_overlay module by overriding some of its properties. |
| 1314 | func OverrideRuntimeResourceOverlayModuleFactory() android.Module { |
| 1315 | m := &OverrideRuntimeResourceOverlay{} |
| 1316 | m.AddProperties(&OverridableRuntimeResourceOverlayProperties{}) |
| 1317 | |
| 1318 | android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon) |
| 1319 | android.InitOverrideModule(m) |
| 1320 | return m |
| 1321 | } |
| 1322 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1323 | type AndroidAppImport struct { |
| 1324 | android.ModuleBase |
| 1325 | android.DefaultableModuleBase |
Jiyong Park | 592a6a4 | 2020-04-21 22:34:28 +0900 | [diff] [blame] | 1326 | android.ApexModuleBase |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1327 | prebuilt android.Prebuilt |
| 1328 | |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1329 | properties AndroidAppImportProperties |
| 1330 | dpiVariants interface{} |
| 1331 | archVariants interface{} |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1332 | |
| 1333 | outputFile android.Path |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 1334 | certificate Certificate |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1335 | |
| 1336 | dexpreopter |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1337 | |
| 1338 | usesLibrary usesLibrary |
Jaewoong Jung | 8aae22e | 2019-07-17 10:21:49 -0700 | [diff] [blame] | 1339 | |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1340 | preprocessed bool |
| 1341 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 1342 | installPath android.InstallPath |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 1343 | |
| 1344 | hideApexVariantFromMake bool |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | type AndroidAppImportProperties struct { |
| 1348 | // A prebuilt apk to import |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1349 | Apk *string |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 1350 | |
Jaewoong Jung | 961d4fd | 2019-08-22 14:25:58 -0700 | [diff] [blame] | 1351 | // The name of a certificate in the default certificate directory or an android_app_certificate |
| 1352 | // module name in the form ":module". Should be empty if presigned or default_dev_cert is set. |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1353 | Certificate *string |
| 1354 | |
| 1355 | // Set this flag to true if the prebuilt apk is already signed. The certificate property must not |
| 1356 | // be set for presigned modules. |
| 1357 | Presigned *bool |
| 1358 | |
Liz Kammer | 2497899 | 2020-05-13 15:49:21 -0700 | [diff] [blame] | 1359 | // Name of the signing certificate lineage file. |
| 1360 | Lineage *string |
| 1361 | |
Jaewoong Jung | 961d4fd | 2019-08-22 14:25:58 -0700 | [diff] [blame] | 1362 | // Sign with the default system dev certificate. Must be used judiciously. Most imported apps |
| 1363 | // need to either specify a specific certificate or be presigned. |
| 1364 | Default_dev_cert *bool |
| 1365 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1366 | // Specifies that this app should be installed to the priv-app directory, |
| 1367 | // where the system will grant it additional privileges not available to |
| 1368 | // normal apps. |
| 1369 | Privileged *bool |
| 1370 | |
| 1371 | // Names of modules to be overridden. Listed modules can only be other binaries |
| 1372 | // (in Make or Soong). |
| 1373 | // This does not completely prevent installation of the overridden binaries, but if both |
| 1374 | // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed |
| 1375 | // from PRODUCT_PACKAGES. |
| 1376 | Overrides []string |
Jaewoong Jung | 8aae22e | 2019-07-17 10:21:49 -0700 | [diff] [blame] | 1377 | |
| 1378 | // Optional name for the installed app. If unspecified, it is derived from the module name. |
| 1379 | Filename *string |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1380 | } |
| 1381 | |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 1382 | func (a *AndroidAppImport) IsInstallable() bool { |
| 1383 | return true |
| 1384 | } |
| 1385 | |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1386 | // Updates properties with variant-specific values. |
| 1387 | func (a *AndroidAppImport) processVariants(ctx android.LoadHookContext) { |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1388 | config := ctx.Config() |
| 1389 | |
| 1390 | dpiProps := reflect.ValueOf(a.dpiVariants).Elem().FieldByName("Dpi_variants") |
| 1391 | // Try DPI variant matches in the reverse-priority order so that the highest priority match |
| 1392 | // overwrites everything else. |
| 1393 | // TODO(jungjw): Can we optimize this by making it priority order? |
| 1394 | for i := len(config.ProductAAPTPrebuiltDPI()) - 1; i >= 0; i-- { |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1395 | MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPrebuiltDPI()[i]) |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 1396 | } |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1397 | if config.ProductAAPTPreferredConfig() != "" { |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1398 | MergePropertiesFromVariant(ctx, &a.properties, dpiProps, config.ProductAAPTPreferredConfig()) |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 1399 | } |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1400 | |
| 1401 | archProps := reflect.ValueOf(a.archVariants).Elem().FieldByName("Arch") |
Jaewoong Jung | 642916f | 2020-10-09 17:25:15 -0700 | [diff] [blame] | 1402 | archType := ctx.Config().AndroidFirstDeviceTarget.Arch.ArchType |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1403 | MergePropertiesFromVariant(ctx, &a.properties, archProps, archType.Name) |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 1404 | } |
| 1405 | |
Colin Cross | 1184b64 | 2019-12-30 18:43:07 -0800 | [diff] [blame] | 1406 | func MergePropertiesFromVariant(ctx android.EarlyModuleContext, |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1407 | dst interface{}, variantGroup reflect.Value, variant string) { |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1408 | src := variantGroup.FieldByName(proptools.FieldNameForProperty(variant)) |
| 1409 | if !src.IsValid() { |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1410 | return |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 1411 | } |
| 1412 | |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1413 | err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, proptools.OrderAppend) |
| 1414 | if err != nil { |
| 1415 | if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok { |
| 1416 | ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error()) |
| 1417 | } else { |
| 1418 | panic(err) |
| 1419 | } |
| 1420 | } |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 1421 | } |
| 1422 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1423 | func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 1424 | cert := android.SrcIsModule(String(a.properties.Certificate)) |
| 1425 | if cert != "" { |
| 1426 | ctx.AddDependency(ctx.Module(), certificateTag, cert) |
| 1427 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1428 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 1429 | a.usesLibrary.deps(ctx, true) |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1430 | } |
| 1431 | |
| 1432 | func (a *AndroidAppImport) uncompressEmbeddedJniLibs( |
| 1433 | ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) { |
Jaewoong Jung | 7c5bd83 | 2020-01-13 09:55:39 -0800 | [diff] [blame] | 1434 | // Test apps don't need their JNI libraries stored uncompressed. As a matter of fact, messing |
| 1435 | // with them may invalidate pre-existing signature data. |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1436 | if ctx.InstallInTestcases() && (Bool(a.properties.Presigned) || a.preprocessed) { |
Jaewoong Jung | 7c5bd83 | 2020-01-13 09:55:39 -0800 | [diff] [blame] | 1437 | ctx.Build(pctx, android.BuildParams{ |
| 1438 | Rule: android.Cp, |
| 1439 | Output: outputPath, |
| 1440 | Input: inputPath, |
| 1441 | }) |
| 1442 | return |
| 1443 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1444 | rule := android.NewRuleBuilder() |
| 1445 | rule.Command(). |
| 1446 | Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath). |
Colin Cross | ee94d6a | 2019-07-08 17:08:34 -0700 | [diff] [blame] | 1447 | BuiltTool(ctx, "zip2zip"). |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1448 | FlagWithInput("-i ", inputPath). |
| 1449 | FlagWithOutput("-o ", outputPath). |
| 1450 | FlagWithArg("-0 ", "'lib/**/*.so'"). |
| 1451 | Textf(`; else cp -f %s %s; fi`, inputPath, outputPath) |
| 1452 | rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs") |
| 1453 | } |
| 1454 | |
Jaewoong Jung | acf18d7 | 2019-05-02 14:55:29 -0700 | [diff] [blame] | 1455 | // Returns whether this module should have the dex file stored uncompressed in the APK. |
| 1456 | func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool { |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1457 | if ctx.Config().UnbundledBuild() || a.preprocessed { |
Jaewoong Jung | acf18d7 | 2019-05-02 14:55:29 -0700 | [diff] [blame] | 1458 | return false |
| 1459 | } |
| 1460 | |
| 1461 | // Uncompress dex in APKs of privileged apps |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 1462 | if ctx.Config().UncompressPrivAppDex() && a.Privileged() { |
Jaewoong Jung | acf18d7 | 2019-05-02 14:55:29 -0700 | [diff] [blame] | 1463 | return true |
| 1464 | } |
| 1465 | |
| 1466 | return shouldUncompressDex(ctx, &a.dexpreopter) |
| 1467 | } |
| 1468 | |
Jaewoong Jung | ea1bdb0 | 2019-05-09 14:36:34 -0700 | [diff] [blame] | 1469 | func (a *AndroidAppImport) uncompressDex( |
| 1470 | ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) { |
| 1471 | rule := android.NewRuleBuilder() |
| 1472 | rule.Command(). |
| 1473 | Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath). |
Colin Cross | ee94d6a | 2019-07-08 17:08:34 -0700 | [diff] [blame] | 1474 | BuiltTool(ctx, "zip2zip"). |
Jaewoong Jung | ea1bdb0 | 2019-05-09 14:36:34 -0700 | [diff] [blame] | 1475 | FlagWithInput("-i ", inputPath). |
| 1476 | FlagWithOutput("-o ", outputPath). |
| 1477 | FlagWithArg("-0 ", "'classes*.dex'"). |
| 1478 | Textf(`; else cp -f %s %s; fi`, inputPath, outputPath) |
| 1479 | rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files") |
| 1480 | } |
| 1481 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1482 | func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1483 | a.generateAndroidBuildActions(ctx) |
| 1484 | } |
| 1485 | |
Jooyung Han | 39ee119 | 2020-03-23 20:21:11 +0900 | [diff] [blame] | 1486 | func (a *AndroidAppImport) InstallApkName() string { |
| 1487 | return a.BaseModuleName() |
| 1488 | } |
| 1489 | |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1490 | func (a *AndroidAppImport) generateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 1491 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
| 1492 | if !apexInfo.IsForPlatform() { |
| 1493 | a.hideApexVariantFromMake = true |
| 1494 | } |
| 1495 | |
Jaewoong Jung | 961d4fd | 2019-08-22 14:25:58 -0700 | [diff] [blame] | 1496 | numCertPropsSet := 0 |
| 1497 | if String(a.properties.Certificate) != "" { |
| 1498 | numCertPropsSet++ |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1499 | } |
Jaewoong Jung | 961d4fd | 2019-08-22 14:25:58 -0700 | [diff] [blame] | 1500 | if Bool(a.properties.Presigned) { |
| 1501 | numCertPropsSet++ |
| 1502 | } |
| 1503 | if Bool(a.properties.Default_dev_cert) { |
| 1504 | numCertPropsSet++ |
| 1505 | } |
| 1506 | if numCertPropsSet != 1 { |
| 1507 | ctx.ModuleErrorf("One and only one of certficate, presigned, and default_dev_cert properties must be set") |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1508 | } |
| 1509 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 1510 | _, certificates := collectAppDeps(ctx, a, false, false) |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1511 | |
| 1512 | // TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1513 | // TODO: LOCAL_PACKAGE_SPLITS |
| 1514 | |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1515 | srcApk := a.prebuilt.SingleSourcePath(ctx) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1516 | |
| 1517 | if a.usesLibrary.enforceUsesLibraries() { |
| 1518 | srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk) |
| 1519 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1520 | |
| 1521 | // TODO: Install or embed JNI libraries |
| 1522 | |
| 1523 | // Uncompress JNI libraries in the apk |
| 1524 | jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk") |
| 1525 | a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath) |
| 1526 | |
Kyeongkab.Nam | c499714 | 2019-11-22 11:38:16 +0900 | [diff] [blame] | 1527 | var installDir android.InstallPath |
| 1528 | if Bool(a.properties.Privileged) { |
| 1529 | installDir = android.PathForModuleInstall(ctx, "priv-app", a.BaseModuleName()) |
Jaewoong Jung | 7c5bd83 | 2020-01-13 09:55:39 -0800 | [diff] [blame] | 1530 | } else if ctx.InstallInTestcases() { |
| 1531 | installDir = android.PathForModuleInstall(ctx, a.BaseModuleName(), ctx.DeviceConfig().DeviceArch()) |
Kyeongkab.Nam | c499714 | 2019-11-22 11:38:16 +0900 | [diff] [blame] | 1532 | } else { |
| 1533 | installDir = android.PathForModuleInstall(ctx, "app", a.BaseModuleName()) |
| 1534 | } |
| 1535 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1536 | a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk") |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1537 | a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned) |
Jaewoong Jung | acf18d7 | 2019-05-02 14:55:29 -0700 | [diff] [blame] | 1538 | a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1539 | |
| 1540 | a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries() |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 1541 | a.dexpreopter.classLoaderContexts = a.usesLibrary.classLoaderContextForUsesLibDeps(ctx) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1542 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1543 | dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed) |
Jaewoong Jung | ea1bdb0 | 2019-05-09 14:36:34 -0700 | [diff] [blame] | 1544 | if a.dexpreopter.uncompressedDex { |
| 1545 | dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk") |
| 1546 | a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath) |
| 1547 | dexOutput = dexUncompressed |
| 1548 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1549 | |
Jooyung Han | 39ee119 | 2020-03-23 20:21:11 +0900 | [diff] [blame] | 1550 | apkFilename := proptools.StringDefault(a.properties.Filename, a.BaseModuleName()+".apk") |
| 1551 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1552 | // TODO: Handle EXTERNAL |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1553 | |
| 1554 | // Sign or align the package if package has not been preprocessed |
| 1555 | if a.preprocessed { |
| 1556 | a.outputFile = srcApk |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 1557 | a.certificate = PresignedCertificate |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1558 | } else if !Bool(a.properties.Presigned) { |
Jaewoong Jung | 961d4fd | 2019-08-22 14:25:58 -0700 | [diff] [blame] | 1559 | // If the certificate property is empty at this point, default_dev_cert must be set to true. |
| 1560 | // Which makes processMainCert's behavior for the empty cert string WAI. |
| 1561 | certificates = processMainCert(a.ModuleBase, String(a.properties.Certificate), certificates, ctx) |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1562 | if len(certificates) != 1 { |
| 1563 | ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates) |
| 1564 | } |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 1565 | a.certificate = certificates[0] |
Jooyung Han | 39ee119 | 2020-03-23 20:21:11 +0900 | [diff] [blame] | 1566 | signed := android.PathForModuleOut(ctx, "signed", apkFilename) |
Liz Kammer | 2497899 | 2020-05-13 15:49:21 -0700 | [diff] [blame] | 1567 | var lineageFile android.Path |
| 1568 | if lineage := String(a.properties.Lineage); lineage != "" { |
| 1569 | lineageFile = android.PathForModuleSrc(ctx, lineage) |
| 1570 | } |
Liz Kammer | 2bc57f6 | 2020-05-13 15:49:21 -0700 | [diff] [blame] | 1571 | SignAppPackage(ctx, signed, dexOutput, certificates, nil, lineageFile) |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1572 | a.outputFile = signed |
| 1573 | } else { |
Jooyung Han | 39ee119 | 2020-03-23 20:21:11 +0900 | [diff] [blame] | 1574 | alignedApk := android.PathForModuleOut(ctx, "zip-aligned", apkFilename) |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1575 | TransformZipAlign(ctx, alignedApk, dexOutput) |
| 1576 | a.outputFile = alignedApk |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 1577 | a.certificate = PresignedCertificate |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1578 | } |
| 1579 | |
| 1580 | // TODO: Optionally compress the output apk. |
| 1581 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 1582 | if apexInfo.IsForPlatform() { |
Jiyong Park | 592a6a4 | 2020-04-21 22:34:28 +0900 | [diff] [blame] | 1583 | a.installPath = ctx.InstallFile(installDir, apkFilename, a.outputFile) |
| 1584 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1585 | |
| 1586 | // TODO: androidmk converter jni libs |
| 1587 | } |
| 1588 | |
| 1589 | func (a *AndroidAppImport) Prebuilt() *android.Prebuilt { |
| 1590 | return &a.prebuilt |
| 1591 | } |
| 1592 | |
| 1593 | func (a *AndroidAppImport) Name() string { |
| 1594 | return a.prebuilt.Name(a.ModuleBase.Name()) |
| 1595 | } |
| 1596 | |
Dario Freni | cde2a03 | 2019-10-27 00:29:22 +0100 | [diff] [blame] | 1597 | func (a *AndroidAppImport) OutputFile() android.Path { |
| 1598 | return a.outputFile |
| 1599 | } |
| 1600 | |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 1601 | func (a *AndroidAppImport) JacocoReportClassesFile() android.Path { |
| 1602 | return nil |
| 1603 | } |
| 1604 | |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 1605 | func (a *AndroidAppImport) Certificate() Certificate { |
| 1606 | return a.certificate |
| 1607 | } |
| 1608 | |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1609 | var dpiVariantGroupType reflect.Type |
| 1610 | var archVariantGroupType reflect.Type |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1611 | |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1612 | func initAndroidAppImportVariantGroupTypes() { |
| 1613 | dpiVariantGroupType = createVariantGroupType(supportedDpis, "Dpi_variants") |
| 1614 | |
| 1615 | archNames := make([]string, len(android.ArchTypeList())) |
| 1616 | for i, archType := range android.ArchTypeList() { |
| 1617 | archNames[i] = archType.Name |
| 1618 | } |
| 1619 | archVariantGroupType = createVariantGroupType(archNames, "Arch") |
| 1620 | } |
| 1621 | |
| 1622 | // Populates all variant struct properties at creation time. |
| 1623 | func (a *AndroidAppImport) populateAllVariantStructs() { |
| 1624 | a.dpiVariants = reflect.New(dpiVariantGroupType).Interface() |
| 1625 | a.AddProperties(a.dpiVariants) |
| 1626 | |
| 1627 | a.archVariants = reflect.New(archVariantGroupType).Interface() |
| 1628 | a.AddProperties(a.archVariants) |
| 1629 | } |
| 1630 | |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 1631 | func (a *AndroidAppImport) Privileged() bool { |
| 1632 | return Bool(a.properties.Privileged) |
| 1633 | } |
| 1634 | |
Sasha Smundak | 613cbb1 | 2020-06-05 10:27:23 -0700 | [diff] [blame] | 1635 | func (a *AndroidAppImport) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool { |
Jiyong Park | 592a6a4 | 2020-04-21 22:34:28 +0900 | [diff] [blame] | 1636 | // android_app_import might have extra dependencies via uses_libs property. |
| 1637 | // Don't track the dependency as we don't automatically add those libraries |
| 1638 | // to the classpath. It should be explicitly added to java_libs property of APEX |
| 1639 | return false |
| 1640 | } |
| 1641 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 1642 | func (a *AndroidAppImport) sdkVersion() sdkSpec { |
| 1643 | return sdkSpecFrom("") |
| 1644 | } |
| 1645 | |
| 1646 | func (a *AndroidAppImport) minSdkVersion() sdkSpec { |
| 1647 | return sdkSpecFrom("") |
| 1648 | } |
| 1649 | |
Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 1650 | func (j *AndroidAppImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, |
| 1651 | sdkVersion android.ApiLevel) error { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 1652 | // Do not check for prebuilts against the min_sdk_version of enclosing APEX |
| 1653 | return nil |
| 1654 | } |
| 1655 | |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1656 | func createVariantGroupType(variants []string, variantGroupName string) reflect.Type { |
| 1657 | props := reflect.TypeOf((*AndroidAppImportProperties)(nil)) |
| 1658 | |
| 1659 | variantFields := make([]reflect.StructField, len(variants)) |
| 1660 | for i, variant := range variants { |
| 1661 | variantFields[i] = reflect.StructField{ |
| 1662 | Name: proptools.FieldNameForProperty(variant), |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1663 | Type: props, |
| 1664 | } |
| 1665 | } |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1666 | |
| 1667 | variantGroupStruct := reflect.StructOf(variantFields) |
| 1668 | return reflect.StructOf([]reflect.StructField{ |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1669 | { |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1670 | Name: variantGroupName, |
| 1671 | Type: variantGroupStruct, |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1672 | }, |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1673 | }) |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1674 | } |
| 1675 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1676 | // android_app_import imports a prebuilt apk with additional processing specified in the module. |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1677 | // DPI-specific apk source files can be specified using dpi_variants. Example: |
| 1678 | // |
| 1679 | // android_app_import { |
| 1680 | // name: "example_import", |
| 1681 | // apk: "prebuilts/example.apk", |
| 1682 | // dpi_variants: { |
| 1683 | // mdpi: { |
| 1684 | // apk: "prebuilts/example_mdpi.apk", |
| 1685 | // }, |
| 1686 | // xhdpi: { |
| 1687 | // apk: "prebuilts/example_xhdpi.apk", |
| 1688 | // }, |
| 1689 | // }, |
| 1690 | // certificate: "PRESIGNED", |
| 1691 | // } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1692 | func AndroidAppImportFactory() android.Module { |
| 1693 | module := &AndroidAppImport{} |
| 1694 | module.AddProperties(&module.properties) |
| 1695 | module.AddProperties(&module.dexpreoptProperties) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1696 | module.AddProperties(&module.usesLibrary.usesLibraryProperties) |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1697 | module.populateAllVariantStructs() |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1698 | android.AddLoadHook(module, func(ctx android.LoadHookContext) { |
Jaewoong Jung | 1ce9ac6 | 2019-08-13 14:11:33 -0700 | [diff] [blame] | 1699 | module.processVariants(ctx) |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1700 | }) |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1701 | |
Jiyong Park | 592a6a4 | 2020-04-21 22:34:28 +0900 | [diff] [blame] | 1702 | android.InitApexModule(module) |
Jaewoong Jung | 6abfbf7 | 2020-05-26 20:10:08 -0700 | [diff] [blame] | 1703 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1704 | android.InitDefaultableModule(module) |
Jaewoong Jung | 3e18b19 | 2019-06-11 12:25:34 -0700 | [diff] [blame] | 1705 | android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk") |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1706 | |
| 1707 | return module |
| 1708 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1709 | |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1710 | type androidTestImportProperties struct { |
| 1711 | // Whether the prebuilt apk can be installed without additional processing. Default is false. |
| 1712 | Preprocessed *bool |
| 1713 | } |
| 1714 | |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1715 | type AndroidTestImport struct { |
| 1716 | AndroidAppImport |
| 1717 | |
| 1718 | testProperties testProperties |
| 1719 | |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1720 | testImportProperties androidTestImportProperties |
| 1721 | |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1722 | data android.Paths |
| 1723 | } |
| 1724 | |
| 1725 | func (a *AndroidTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1726 | a.preprocessed = Bool(a.testImportProperties.Preprocessed) |
| 1727 | |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1728 | a.generateAndroidBuildActions(ctx) |
| 1729 | |
| 1730 | a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data) |
| 1731 | } |
| 1732 | |
Jaewoong Jung | 7c5bd83 | 2020-01-13 09:55:39 -0800 | [diff] [blame] | 1733 | func (a *AndroidTestImport) InstallInTestcases() bool { |
| 1734 | return true |
| 1735 | } |
| 1736 | |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1737 | // android_test_import imports a prebuilt test apk with additional processing specified in the |
| 1738 | // module. DPI or arch variant configurations can be made as with android_app_import. |
| 1739 | func AndroidTestImportFactory() android.Module { |
| 1740 | module := &AndroidTestImport{} |
| 1741 | module.AddProperties(&module.properties) |
| 1742 | module.AddProperties(&module.dexpreoptProperties) |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1743 | module.AddProperties(&module.testProperties) |
Liz Kammer | 3b70b3f | 2020-05-20 14:36:30 -0700 | [diff] [blame] | 1744 | module.AddProperties(&module.testImportProperties) |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1745 | module.populateAllVariantStructs() |
| 1746 | android.AddLoadHook(module, func(ctx android.LoadHookContext) { |
| 1747 | module.processVariants(ctx) |
| 1748 | }) |
| 1749 | |
Colin Cross | c80828d | 2020-05-06 22:29:10 -0700 | [diff] [blame] | 1750 | module.dexpreopter.isTest = true |
| 1751 | |
Jiyong Park | 592a6a4 | 2020-04-21 22:34:28 +0900 | [diff] [blame] | 1752 | android.InitApexModule(module) |
Jaewoong Jung | 243688e | 2020-05-01 15:50:08 -0700 | [diff] [blame] | 1753 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1754 | android.InitDefaultableModule(module) |
Jaewoong Jung | b28eb5f | 2019-08-27 15:01:50 -0700 | [diff] [blame] | 1755 | android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk") |
| 1756 | |
| 1757 | return module |
| 1758 | } |
| 1759 | |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1760 | type RuntimeResourceOverlay struct { |
| 1761 | android.ModuleBase |
| 1762 | android.DefaultableModuleBase |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1763 | android.OverridableModuleBase |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1764 | aapt |
| 1765 | |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1766 | properties RuntimeResourceOverlayProperties |
| 1767 | overridableProperties OverridableRuntimeResourceOverlayProperties |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1768 | |
Jaewoong Jung | 78ec5d8 | 2020-01-31 10:11:47 -0800 | [diff] [blame] | 1769 | certificate Certificate |
| 1770 | |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1771 | outputFile android.Path |
| 1772 | installDir android.InstallPath |
| 1773 | } |
| 1774 | |
| 1775 | type RuntimeResourceOverlayProperties struct { |
| 1776 | // the name of a certificate in the default certificate directory or an android_app_certificate |
| 1777 | // module name in the form ":module". |
| 1778 | Certificate *string |
| 1779 | |
Liz Kammer | 966b2f0 | 2020-05-19 16:15:25 -0700 | [diff] [blame] | 1780 | // Name of the signing certificate lineage file. |
| 1781 | Lineage *string |
| 1782 | |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1783 | // optional theme name. If specified, the overlay package will be applied |
| 1784 | // only when the ro.boot.vendor.overlay.theme system property is set to the same value. |
| 1785 | Theme *string |
| 1786 | |
| 1787 | // if not blank, set to the version of the sdk to compile against. |
| 1788 | // Defaults to compiling against the current platform. |
| 1789 | Sdk_version *string |
| 1790 | |
| 1791 | // if not blank, set the minimum version of the sdk that the compiled artifacts will run against. |
| 1792 | // Defaults to sdk_version if not set. |
| 1793 | Min_sdk_version *string |
Jaewoong Jung | fe3c7f6 | 2020-04-09 16:15:30 -0700 | [diff] [blame] | 1794 | |
| 1795 | // list of android_library modules whose resources are extracted and linked against statically |
| 1796 | Static_libs []string |
| 1797 | |
| 1798 | // list of android_app modules whose resources are extracted and linked against |
| 1799 | Resource_libs []string |
Jaewoong Jung | ad0177b | 2020-04-24 15:22:40 -0700 | [diff] [blame] | 1800 | |
| 1801 | // Names of modules to be overridden. Listed modules can only be other overlays |
| 1802 | // (in Make or Soong). |
| 1803 | // This does not completely prevent installation of the overridden overlays, but if both |
| 1804 | // overlays would be installed by default (in PRODUCT_PACKAGES) the other overlay will be removed |
| 1805 | // from PRODUCT_PACKAGES. |
| 1806 | Overrides []string |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1807 | } |
| 1808 | |
Jiyong Park | 69aeba9 | 2020-04-24 21:16:36 +0900 | [diff] [blame] | 1809 | // RuntimeResourceOverlayModule interface is used by the apex package to gather information from |
| 1810 | // a RuntimeResourceOverlay module. |
| 1811 | type RuntimeResourceOverlayModule interface { |
| 1812 | android.Module |
| 1813 | OutputFile() android.Path |
| 1814 | Certificate() Certificate |
| 1815 | Theme() string |
| 1816 | } |
| 1817 | |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1818 | func (r *RuntimeResourceOverlay) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 1819 | sdkDep := decodeSdkDep(ctx, sdkContext(r)) |
| 1820 | if sdkDep.hasFrameworkLibs() { |
| 1821 | r.aapt.deps(ctx, sdkDep) |
| 1822 | } |
| 1823 | |
| 1824 | cert := android.SrcIsModule(String(r.properties.Certificate)) |
| 1825 | if cert != "" { |
| 1826 | ctx.AddDependency(ctx.Module(), certificateTag, cert) |
| 1827 | } |
Jaewoong Jung | fe3c7f6 | 2020-04-09 16:15:30 -0700 | [diff] [blame] | 1828 | |
| 1829 | ctx.AddVariationDependencies(nil, staticLibTag, r.properties.Static_libs...) |
| 1830 | ctx.AddVariationDependencies(nil, libTag, r.properties.Resource_libs...) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1831 | } |
| 1832 | |
| 1833 | func (r *RuntimeResourceOverlay) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 1834 | // Compile and link resources |
| 1835 | r.aapt.hasNoCode = true |
Jaewoong Jung | f0f747c | 2020-01-24 10:30:02 -0800 | [diff] [blame] | 1836 | // Do not remove resources without default values nor dedupe resource configurations with the same value |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1837 | aaptLinkFlags := []string{"--no-resource-deduping", "--no-resource-removal"} |
| 1838 | // Allow the override of "package name" and "overlay target package name" |
| 1839 | manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName()) |
| 1840 | if overridden || r.overridableProperties.Package_name != nil { |
| 1841 | // The product override variable has a priority over the package_name property. |
| 1842 | if !overridden { |
| 1843 | manifestPackageName = *r.overridableProperties.Package_name |
| 1844 | } |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 1845 | aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, false)...) |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1846 | } |
| 1847 | if r.overridableProperties.Target_package_name != nil { |
| 1848 | aaptLinkFlags = append(aaptLinkFlags, |
| 1849 | "--rename-overlay-target-package "+*r.overridableProperties.Target_package_name) |
| 1850 | } |
| 1851 | r.aapt.buildActions(ctx, r, aaptLinkFlags...) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1852 | |
| 1853 | // Sign the built package |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 1854 | _, certificates := collectAppDeps(ctx, r, false, false) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1855 | certificates = processMainCert(r.ModuleBase, String(r.properties.Certificate), certificates, ctx) |
| 1856 | signed := android.PathForModuleOut(ctx, "signed", r.Name()+".apk") |
Liz Kammer | 966b2f0 | 2020-05-19 16:15:25 -0700 | [diff] [blame] | 1857 | var lineageFile android.Path |
| 1858 | if lineage := String(r.properties.Lineage); lineage != "" { |
| 1859 | lineageFile = android.PathForModuleSrc(ctx, lineage) |
| 1860 | } |
Liz Kammer | 7fe241f | 2020-05-19 16:15:25 -0700 | [diff] [blame] | 1861 | SignAppPackage(ctx, signed, r.aapt.exportPackage, certificates, nil, lineageFile) |
Jaewoong Jung | 78ec5d8 | 2020-01-31 10:11:47 -0800 | [diff] [blame] | 1862 | r.certificate = certificates[0] |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1863 | |
| 1864 | r.outputFile = signed |
| 1865 | r.installDir = android.PathForModuleInstall(ctx, "overlay", String(r.properties.Theme)) |
| 1866 | ctx.InstallFile(r.installDir, r.outputFile.Base(), r.outputFile) |
| 1867 | } |
| 1868 | |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 1869 | func (r *RuntimeResourceOverlay) sdkVersion() sdkSpec { |
| 1870 | return sdkSpecFrom(String(r.properties.Sdk_version)) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1871 | } |
| 1872 | |
| 1873 | func (r *RuntimeResourceOverlay) systemModules() string { |
| 1874 | return "" |
| 1875 | } |
| 1876 | |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 1877 | func (r *RuntimeResourceOverlay) minSdkVersion() sdkSpec { |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1878 | if r.properties.Min_sdk_version != nil { |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 1879 | return sdkSpecFrom(*r.properties.Min_sdk_version) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1880 | } |
| 1881 | return r.sdkVersion() |
| 1882 | } |
| 1883 | |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 1884 | func (r *RuntimeResourceOverlay) targetSdkVersion() sdkSpec { |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1885 | return r.sdkVersion() |
| 1886 | } |
| 1887 | |
Jiyong Park | 69aeba9 | 2020-04-24 21:16:36 +0900 | [diff] [blame] | 1888 | func (r *RuntimeResourceOverlay) Certificate() Certificate { |
| 1889 | return r.certificate |
| 1890 | } |
| 1891 | |
| 1892 | func (r *RuntimeResourceOverlay) OutputFile() android.Path { |
| 1893 | return r.outputFile |
| 1894 | } |
| 1895 | |
| 1896 | func (r *RuntimeResourceOverlay) Theme() string { |
| 1897 | return String(r.properties.Theme) |
| 1898 | } |
| 1899 | |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1900 | // runtime_resource_overlay generates a resource-only apk file that can overlay application and |
| 1901 | // system resources at run time. |
| 1902 | func RuntimeResourceOverlayFactory() android.Module { |
| 1903 | module := &RuntimeResourceOverlay{} |
| 1904 | module.AddProperties( |
| 1905 | &module.properties, |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1906 | &module.aaptProperties, |
| 1907 | &module.overridableProperties) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1908 | |
Roshan Pius | 4df2bc7 | 2020-04-27 09:42:27 -0700 | [diff] [blame] | 1909 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1910 | android.InitDefaultableModule(module) |
| 1911 | android.InitOverridableModule(module, &module.properties.Overrides) |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 1912 | return module |
| 1913 | } |
| 1914 | |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1915 | type UsesLibraryProperties struct { |
| 1916 | // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file. |
| 1917 | Uses_libs []string |
| 1918 | |
| 1919 | // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with |
| 1920 | // required=false. |
| 1921 | Optional_uses_libs []string |
| 1922 | |
| 1923 | // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults |
| 1924 | // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future. |
| 1925 | Enforce_uses_libs *bool |
Ulya Trafimovich | 21a7375 | 2020-09-01 17:33:48 +0100 | [diff] [blame] | 1926 | |
Ulya Trafimovich | 54027b5 | 2020-09-09 14:08:23 +0100 | [diff] [blame] | 1927 | // Optional name of the <uses-library> provided by this module. This is needed for non-SDK |
| 1928 | // libraries, because SDK ones are automatically picked up by Soong. The <uses-library> name |
| 1929 | // normally is the same as the module name, but there are exceptions. |
| 1930 | Provides_uses_lib *string |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1931 | } |
| 1932 | |
| 1933 | // usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the |
| 1934 | // <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the |
| 1935 | // uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps |
| 1936 | // with knowledge of their shared libraries. |
| 1937 | type usesLibrary struct { |
| 1938 | usesLibraryProperties UsesLibraryProperties |
| 1939 | } |
| 1940 | |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 1941 | func (u *usesLibrary) addLib(lib string, optional bool) { |
| 1942 | if !android.InList(lib, u.usesLibraryProperties.Uses_libs) && !android.InList(lib, u.usesLibraryProperties.Optional_uses_libs) { |
| 1943 | if optional { |
| 1944 | u.usesLibraryProperties.Optional_uses_libs = append(u.usesLibraryProperties.Optional_uses_libs, lib) |
| 1945 | } else { |
| 1946 | u.usesLibraryProperties.Uses_libs = append(u.usesLibraryProperties.Uses_libs, lib) |
| 1947 | } |
| 1948 | } |
| 1949 | } |
| 1950 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 1951 | func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) { |
Colin Cross | 3245b2c | 2019-06-07 13:18:09 -0700 | [diff] [blame] | 1952 | if !ctx.Config().UnbundledBuild() { |
| 1953 | ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...) |
| 1954 | ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...) |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 1955 | // Only add these extra dependencies if the module depends on framework libs. This avoids |
| 1956 | // creating a cyclic dependency: |
| 1957 | // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res. |
| 1958 | if hasFrameworkLibs { |
Ulya Trafimovich | 5f364b6 | 2020-06-30 12:39:01 +0100 | [diff] [blame] | 1959 | // Dexpreopt needs paths to the dex jars of these libraries in order to construct |
| 1960 | // class loader context for dex2oat. Add them as a dependency with a special tag. |
Ulya Trafimovich | b521811 | 2020-10-07 15:11:32 +0100 | [diff] [blame] | 1961 | ctx.AddVariationDependencies(nil, usesLibCompat29Tag, dexpreopt.CompatUsesLibs29...) |
| 1962 | ctx.AddVariationDependencies(nil, usesLibCompat28Tag, dexpreopt.OptionalCompatUsesLibs28...) |
| 1963 | ctx.AddVariationDependencies(nil, usesLibCompat30Tag, dexpreopt.OptionalCompatUsesLibs30...) |
Colin Cross | 3245b2c | 2019-06-07 13:18:09 -0700 | [diff] [blame] | 1964 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1965 | } |
| 1966 | } |
| 1967 | |
| 1968 | // presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the |
| 1969 | // build. |
| 1970 | func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string { |
| 1971 | optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries()) |
| 1972 | return optionalUsesLibs |
| 1973 | } |
| 1974 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 1975 | // Returns a map of module names of shared library dependencies to the paths |
Ulya Trafimovich | d4bcea4 | 2020-06-03 14:57:22 +0100 | [diff] [blame] | 1976 | // to their dex jars on host and on device. |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 1977 | func (u *usesLibrary) classLoaderContextForUsesLibDeps(ctx android.ModuleContext) dexpreopt.ClassLoaderContextMap { |
| 1978 | clcMap := make(dexpreopt.ClassLoaderContextMap) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1979 | |
| 1980 | if !ctx.Config().UnbundledBuild() { |
Ulya Trafimovich | b521811 | 2020-10-07 15:11:32 +0100 | [diff] [blame] | 1981 | ctx.VisitDirectDeps(func(m android.Module) { |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 1982 | if tag, ok := ctx.OtherModuleDependencyTag(m).(usesLibraryDependencyTag); ok { |
Ulya Trafimovich | b521811 | 2020-10-07 15:11:32 +0100 | [diff] [blame] | 1983 | dep := ctx.OtherModuleName(m) |
| 1984 | if lib, ok := m.(Dependency); ok { |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 1985 | clcMap.AddContextForSdk(ctx, tag.sdkVersion, dep, |
| 1986 | lib.DexJarBuildPath(), lib.DexJarInstallPath(), lib.ExportedSdkLibs()) |
Ulya Trafimovich | b521811 | 2020-10-07 15:11:32 +0100 | [diff] [blame] | 1987 | } else if ctx.Config().AllowMissingDependencies() { |
| 1988 | ctx.AddMissingDependencies([]string{dep}) |
| 1989 | } else { |
| 1990 | ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library", dep) |
| 1991 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1992 | } |
| 1993 | }) |
| 1994 | } |
| 1995 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame^] | 1996 | return clcMap |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1997 | } |
| 1998 | |
| 1999 | // enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs |
| 2000 | // properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true |
| 2001 | // unconditionally in the future. |
| 2002 | func (u *usesLibrary) enforceUsesLibraries() bool { |
| 2003 | defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 || |
| 2004 | len(u.usesLibraryProperties.Optional_uses_libs) > 0 |
| 2005 | return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs) |
| 2006 | } |
| 2007 | |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 2008 | // Freeze the value of `enforce_uses_libs` based on the current values of `uses_libs` and `optional_uses_libs`. |
| 2009 | func (u *usesLibrary) freezeEnforceUsesLibraries() { |
| 2010 | enforce := u.enforceUsesLibraries() |
| 2011 | u.usesLibraryProperties.Enforce_uses_libs = &enforce |
| 2012 | } |
| 2013 | |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 2014 | // verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified |
| 2015 | // in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest. |
| 2016 | func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path { |
| 2017 | outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml") |
| 2018 | |
| 2019 | rule := android.NewRuleBuilder() |
Colin Cross | ee94d6a | 2019-07-08 17:08:34 -0700 | [diff] [blame] | 2020 | cmd := rule.Command().BuiltTool(ctx, "manifest_check"). |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 2021 | Flag("--enforce-uses-libraries"). |
| 2022 | Input(manifest). |
| 2023 | FlagWithOutput("-o ", outputFile) |
| 2024 | |
| 2025 | for _, lib := range u.usesLibraryProperties.Uses_libs { |
| 2026 | cmd.FlagWithArg("--uses-library ", lib) |
| 2027 | } |
| 2028 | |
| 2029 | for _, lib := range u.usesLibraryProperties.Optional_uses_libs { |
| 2030 | cmd.FlagWithArg("--optional-uses-library ", lib) |
| 2031 | } |
| 2032 | |
| 2033 | rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>") |
| 2034 | |
| 2035 | return outputFile |
| 2036 | } |
| 2037 | |
| 2038 | // verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified |
| 2039 | // in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK. |
| 2040 | func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path { |
| 2041 | outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base()) |
| 2042 | |
| 2043 | rule := android.NewRuleBuilder() |
| 2044 | aapt := ctx.Config().HostToolPath(ctx, "aapt") |
| 2045 | rule.Command(). |
| 2046 | Textf("aapt_binary=%s", aapt.String()).Implicit(aapt). |
| 2047 | Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")). |
| 2048 | Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")). |
| 2049 | Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk) |
| 2050 | rule.Command().Text("cp -f").Input(apk).Output(outputFile) |
| 2051 | |
| 2052 | rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>") |
| 2053 | |
| 2054 | return outputFile |
| 2055 | } |