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