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