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