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 | |
Jaewoong Jung | f9b4465 | 2020-12-21 12:29:12 -0800 | [diff] [blame] | 17 | // This file contains the module implementations for android_app, android_test, and some more |
| 18 | // related module types, including their override variants. |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 19 | |
| 20 | import ( |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 21 | "path/filepath" |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 22 | "sort" |
Jaewoong Jung | a5e5abc | 2019-04-26 14:31:50 -0700 | [diff] [blame] | 23 | "strings" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 24 | |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 25 | "github.com/google/blueprint" |
| 26 | "github.com/google/blueprint/proptools" |
| 27 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 28 | "android/soong/android" |
Rupert Shuttleworth | 5c4881c | 2021-07-28 06:21:31 -0400 | [diff] [blame] | 29 | "android/soong/bazel" |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 30 | "android/soong/cc" |
Ulya Trafimovich | d4bcea4 | 2020-06-03 14:57:22 +0100 | [diff] [blame] | 31 | "android/soong/dexpreopt" |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 32 | "android/soong/tradefed" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 33 | ) |
| 34 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 35 | func init() { |
Paul Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 36 | RegisterAppBuildComponents(android.InitRegistrationContext) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 37 | } |
| 38 | |
Paul Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 39 | func RegisterAppBuildComponents(ctx android.RegistrationContext) { |
| 40 | ctx.RegisterModuleType("android_app", AndroidAppFactory) |
| 41 | ctx.RegisterModuleType("android_test", AndroidTestFactory) |
| 42 | ctx.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory) |
| 43 | ctx.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory) |
| 44 | ctx.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory) |
| 45 | ctx.RegisterModuleType("override_android_test", OverrideAndroidTestModuleFactory) |
Paul Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 46 | } |
| 47 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 48 | // AndroidManifest.xml merging |
| 49 | // package splits |
| 50 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 51 | type appProperties struct { |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 52 | // 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] | 53 | Additional_certificates []string |
| 54 | |
| 55 | // If set, create package-export.apk, which other packages can |
| 56 | // use to get PRODUCT-agnostic resource data like IDs and type definitions. |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 57 | Export_package_resources *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 58 | |
Colin Cross | 1605606 | 2017-12-13 22:46:28 -0800 | [diff] [blame] | 59 | // Specifies that this app should be installed to the priv-app directory, |
| 60 | // where the system will grant it additional privileges not available to |
| 61 | // normal apps. |
| 62 | Privileged *bool |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 63 | |
| 64 | // list of resource labels to generate individual resource packages |
| 65 | Package_splits []string |
Jason Monk | d4122be | 2018-08-10 09:33:36 -0400 | [diff] [blame] | 66 | |
| 67 | // Names of modules to be overridden. Listed modules can only be other binaries |
| 68 | // (in Make or Soong). |
| 69 | // This does not completely prevent installation of the overridden binaries, but if both |
| 70 | // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed |
| 71 | // from PRODUCT_PACKAGES. |
| 72 | Overrides []string |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 73 | |
| 74 | // list of native libraries that will be provided in or alongside the resulting jar |
| 75 | Jni_libs []string `android:"arch_variant"` |
| 76 | |
Colin Cross | 7204cf0 | 2020-05-06 17:51:39 -0700 | [diff] [blame] | 77 | // 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] | 78 | // sdk_version. |
| 79 | Jni_uses_platform_apis *bool |
| 80 | |
Colin Cross | 7204cf0 | 2020-05-06 17:51:39 -0700 | [diff] [blame] | 81 | // if true, use JNI libraries that link against SDK APIs even if this module does not set |
| 82 | // sdk_version. |
| 83 | Jni_uses_sdk_apis *bool |
| 84 | |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 85 | // STL library to use for JNI libraries. |
| 86 | Stl *string `android:"arch_variant"` |
| 87 | |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 88 | // Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest |
| 89 | // 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] | 90 | // sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to true for |
| 91 | // android_app modules that are embedded to APEXes, defaults to false for other module types where the native |
| 92 | // libraries are generally preinstalled outside the APK. |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 93 | Use_embedded_native_libs *bool |
Colin Cross | 46abdad | 2019-02-07 13:07:08 -0800 | [diff] [blame] | 94 | |
| 95 | // Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that |
| 96 | // they are used from inside the APK at runtime. |
| 97 | Use_embedded_dex *bool |
Colin Cross | 47fa9d3 | 2019-03-26 10:51:39 -0700 | [diff] [blame] | 98 | |
| 99 | // Forces native libraries to always be packaged into the APK, |
| 100 | // Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed. |
| 101 | // True for android_test* modules. |
| 102 | AlwaysPackageNativeLibs bool `blueprint:"mutated"` |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 103 | |
| 104 | // If set, find and merge all NOTICE files that this module and its dependencies have and store |
| 105 | // it in the APK as an asset. |
| 106 | Embed_notices *bool |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 107 | |
| 108 | // cc.Coverage related properties |
| 109 | PreventInstall bool `blueprint:"mutated"` |
| 110 | HideFromMake bool `blueprint:"mutated"` |
| 111 | IsCoverageVariant bool `blueprint:"mutated"` |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 112 | |
| 113 | // Whether this app is considered mainline updatable or not. When set to true, this will enforce |
Artur Satayev | f40fc85 | 2020-04-16 13:43:02 +0100 | [diff] [blame] | 114 | // additional rules to make sure an app can safely be updated. Default is false. |
| 115 | // Prefer using other specific properties if build behaviour must be changed; avoid using this |
| 116 | // flag for anything but neverallow rules (unless the behaviour change is invisible to owners). |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 117 | Updatable *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 120 | // android_app properties that can be overridden by override_android_app |
| 121 | type overridableAppProperties struct { |
| 122 | // The name of a certificate in the default certificate directory, blank to use the default product certificate, |
| 123 | // or an android_app_certificate module name in the form ":module". |
| 124 | Certificate *string |
Jaewoong Jung | 6f373f6 | 2019-03-13 10:13:24 -0700 | [diff] [blame] | 125 | |
Jaewoong Jung | 1c1b6e6 | 2021-03-09 15:02:31 -0800 | [diff] [blame] | 126 | // Name of the signing certificate lineage file or filegroup module. |
| 127 | Lineage *string `android:"path"` |
Liz Kammer | e2b27f4 | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 128 | |
Jaewoong Jung | 6f373f6 | 2019-03-13 10:13:24 -0700 | [diff] [blame] | 129 | // the package name of this app. The package name in the manifest file is used if one was not given. |
| 130 | Package_name *string |
Baligh Uddin | 5b16dfb | 2020-02-11 17:27:19 -0800 | [diff] [blame] | 131 | |
| 132 | // the logging parent of this app. |
| 133 | Logging_parent *string |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 134 | |
| 135 | // Whether to rename the package in resources to the override name rather than the base name. Defaults to true. |
| 136 | Rename_resources_package *bool |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 137 | } |
| 138 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 139 | type AndroidApp struct { |
Romain Jobredeaux | 1282c42 | 2021-10-29 10:52:59 -0400 | [diff] [blame] | 140 | android.BazelModuleBase |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 141 | Library |
| 142 | aapt |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 143 | android.OverridableModuleBase |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 144 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 145 | certificate Certificate |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 146 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 147 | appProperties appProperties |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 148 | |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 149 | overridableAppProperties overridableAppProperties |
| 150 | |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 151 | jniLibs []jniLib |
| 152 | installPathForJNISymbols android.Path |
| 153 | embeddedJniLibs bool |
| 154 | jniCoverageOutputs android.Paths |
Colin Cross | f623721 | 2018-10-29 23:14:58 -0700 | [diff] [blame] | 155 | |
| 156 | bundleFile android.Path |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 157 | |
| 158 | // the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES. |
| 159 | installApkName string |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 160 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 161 | installDir android.InstallPath |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 162 | |
Jaewoong Jung | 7dd4ae2 | 2019-09-27 17:13:15 -0700 | [diff] [blame] | 163 | onDeviceDir string |
| 164 | |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 165 | additionalAaptFlags []string |
Jaewoong Jung | 9877279 | 2019-07-01 17:15:13 -0700 | [diff] [blame] | 166 | |
| 167 | noticeOutputs android.NoticeOutputs |
Jiyong Park | cfaa164 | 2020-02-28 16:51:07 +0900 | [diff] [blame] | 168 | |
| 169 | overriddenManifestPackageName string |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 170 | |
| 171 | android.ApexBundleDepsInfo |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 172 | } |
| 173 | |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 174 | func (a *AndroidApp) IsInstallable() bool { |
| 175 | return Bool(a.properties.Installable) |
| 176 | } |
| 177 | |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 178 | func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths { |
| 179 | return nil |
| 180 | } |
| 181 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 182 | func (a *AndroidApp) ExportedStaticPackages() android.Paths { |
| 183 | return nil |
| 184 | } |
| 185 | |
Sundong Ahn | e1f05aa | 2019-08-27 13:55:42 +0900 | [diff] [blame] | 186 | func (a *AndroidApp) OutputFile() android.Path { |
| 187 | return a.outputFile |
| 188 | } |
| 189 | |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 190 | func (a *AndroidApp) Certificate() Certificate { |
| 191 | return a.certificate |
| 192 | } |
| 193 | |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 194 | func (a *AndroidApp) JniCoverageOutputs() android.Paths { |
| 195 | return a.jniCoverageOutputs |
| 196 | } |
| 197 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 198 | var _ AndroidLibraryDependency = (*AndroidApp)(nil) |
| 199 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 200 | type Certificate struct { |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 201 | Pem, Key android.Path |
| 202 | presigned bool |
| 203 | } |
| 204 | |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 205 | var PresignedCertificate = Certificate{presigned: true} |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 206 | |
| 207 | func (c Certificate) AndroidMkString() string { |
| 208 | if c.presigned { |
| 209 | return "PRESIGNED" |
| 210 | } else { |
| 211 | return c.Pem.String() |
| 212 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 215 | func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 216 | a.Module.deps(ctx) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 217 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 218 | if String(a.appProperties.Stl) == "c++_shared" && !a.SdkVersion(ctx).Specified() { |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 219 | ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared") |
| 220 | } |
| 221 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 222 | sdkDep := decodeSdkDep(ctx, android.SdkContext(a)) |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 223 | if sdkDep.hasFrameworkLibs() { |
| 224 | a.aapt.deps(ctx, sdkDep) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 225 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 226 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 227 | usesSDK := a.SdkVersion(ctx).Specified() && a.SdkVersion(ctx).Kind != android.SdkCorePlatform |
Colin Cross | 3c00770 | 2020-05-08 11:20:24 -0700 | [diff] [blame] | 228 | |
| 229 | if usesSDK && Bool(a.appProperties.Jni_uses_sdk_apis) { |
| 230 | ctx.PropertyErrorf("jni_uses_sdk_apis", |
| 231 | "can only be set for modules that do not set sdk_version") |
| 232 | } else if !usesSDK && Bool(a.appProperties.Jni_uses_platform_apis) { |
| 233 | ctx.PropertyErrorf("jni_uses_platform_apis", |
| 234 | "can only be set for modules that set sdk_version") |
| 235 | } |
| 236 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 237 | for _, jniTarget := range ctx.MultiTargets() { |
Colin Cross | 0f7d2ef | 2019-10-16 11:03:10 -0700 | [diff] [blame] | 238 | variation := append(jniTarget.Variations(), |
| 239 | blueprint.Variation{Mutator: "link", Variation: "shared"}) |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 240 | |
| 241 | // If the app builds against an Android SDK use the SDK variant of JNI dependencies |
| 242 | // unless jni_uses_platform_apis is set. |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 243 | // Don't require the SDK variant for apps that are shipped on vendor, etc., as they already |
| 244 | // have stable APIs through the VNDK. |
| 245 | if (usesSDK && !a.RequiresStableAPIs(ctx) && |
| 246 | !Bool(a.appProperties.Jni_uses_platform_apis)) || |
Colin Cross | 7204cf0 | 2020-05-06 17:51:39 -0700 | [diff] [blame] | 247 | Bool(a.appProperties.Jni_uses_sdk_apis) { |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 248 | variation = append(variation, blueprint.Variation{Mutator: "sdk", Variation: "sdk"}) |
| 249 | } |
Colin Cross | de78d13 | 2020-10-09 18:59:49 -0700 | [diff] [blame] | 250 | ctx.AddFarVariationDependencies(variation, jniLibTag, a.appProperties.Jni_libs...) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 251 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 252 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 253 | a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs()) |
Jaewoong Jung | b639a6a | 2019-05-10 15:16:29 -0700 | [diff] [blame] | 254 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 255 | |
Jaewoong Jung | b639a6a | 2019-05-10 15:16:29 -0700 | [diff] [blame] | 256 | func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) { |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 257 | cert := android.SrcIsModule(a.getCertString(ctx)) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 258 | if cert != "" { |
| 259 | ctx.AddDependency(ctx.Module(), certificateTag, cert) |
| 260 | } |
| 261 | |
| 262 | for _, cert := range a.appProperties.Additional_certificates { |
| 263 | cert = android.SrcIsModule(cert) |
| 264 | if cert != "" { |
| 265 | ctx.AddDependency(ctx.Module(), certificateTag, cert) |
| 266 | } else { |
| 267 | ctx.PropertyErrorf("additional_certificates", |
| 268 | `must be names of android_app_certificate modules in the form ":module"`) |
| 269 | } |
| 270 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Jeongik Cha | 538c0d0 | 2019-07-11 15:54:27 +0900 | [diff] [blame] | 273 | func (a *AndroidTestHelperApp) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 274 | a.generateAndroidBuildActions(ctx) |
| 275 | } |
| 276 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 277 | func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 278 | a.checkAppSdkVersions(ctx) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 279 | a.generateAndroidBuildActions(ctx) |
| 280 | } |
| 281 | |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 282 | func (a *AndroidApp) checkAppSdkVersions(ctx android.ModuleContext) { |
Artur Satayev | 849f844 | 2020-04-28 14:57:42 +0100 | [diff] [blame] | 283 | if a.Updatable() { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 284 | if !a.SdkVersion(ctx).Stable() { |
| 285 | ctx.PropertyErrorf("sdk_version", "Updatable apps must use stable SDKs, found %v", a.SdkVersion(ctx)) |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 286 | } |
Artur Satayev | f40fc85 | 2020-04-16 13:43:02 +0100 | [diff] [blame] | 287 | if String(a.deviceProperties.Min_sdk_version) == "" { |
| 288 | ctx.PropertyErrorf("updatable", "updatable apps must set min_sdk_version.") |
| 289 | } |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 290 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 291 | if minSdkVersion, err := a.MinSdkVersion(ctx).EffectiveVersion(ctx); err == nil { |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 292 | a.checkJniLibsSdkVersion(ctx, minSdkVersion) |
satayev | b3fd411 | 2021-12-02 13:59:35 +0000 | [diff] [blame] | 293 | android.CheckMinSdkVersion(ctx, minSdkVersion, a.WalkPayloadDeps) |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 294 | } else { |
| 295 | ctx.PropertyErrorf("min_sdk_version", "%s", err.Error()) |
| 296 | } |
Artur Satayev | 2db1c3f | 2020-04-08 19:09:30 +0100 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | a.checkPlatformAPI(ctx) |
| 300 | a.checkSdkVersions(ctx) |
| 301 | } |
| 302 | |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 303 | // If an updatable APK sets min_sdk_version, min_sdk_vesion of JNI libs should match with it. |
| 304 | // This check is enforced for "updatable" APKs (including APK-in-APEX). |
| 305 | // b/155209650: until min_sdk_version is properly supported, use sdk_version instead. |
| 306 | // because, sdk_version is overridden by min_sdk_version (if set as smaller) |
Jaewoong Jung | bc15e3a | 2021-03-10 17:02:43 -0800 | [diff] [blame] | 307 | // and sdkLinkType is checked with dependencies so we can be sure that the whole dependency tree |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 308 | // will meet the requirements. |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 309 | func (a *AndroidApp) checkJniLibsSdkVersion(ctx android.ModuleContext, minSdkVersion android.ApiLevel) { |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 310 | // It's enough to check direct JNI deps' sdk_version because all transitive deps from JNI deps are checked in cc.checkLinkType() |
| 311 | ctx.VisitDirectDeps(func(m android.Module) { |
| 312 | if !IsJniDepTag(ctx.OtherModuleDependencyTag(m)) { |
| 313 | return |
| 314 | } |
| 315 | dep, _ := m.(*cc.Module) |
Jooyung Han | 652d5b3 | 2020-05-20 17:12:13 +0900 | [diff] [blame] | 316 | // The domain of cc.sdk_version is "current" and <number> |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 317 | // We can rely on android.SdkSpec to convert it to <number> so that "current" is |
| 318 | // handled properly regardless of sdk finalization. |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 319 | jniSdkVersion, err := android.SdkSpecFrom(ctx, dep.SdkVersion()).EffectiveVersion(ctx) |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 320 | if err != nil || minSdkVersion.LessThan(jniSdkVersion) { |
Jooyung Han | bbc3fb7 | 2020-04-29 14:01:06 +0900 | [diff] [blame] | 321 | ctx.OtherModuleErrorf(dep, "sdk_version(%v) is higher than min_sdk_version(%v) of the containing android_app(%v)", |
| 322 | dep.SdkVersion(), minSdkVersion, ctx.ModuleName()) |
| 323 | return |
| 324 | } |
| 325 | |
| 326 | }) |
| 327 | } |
| 328 | |
Sasha Smundak | 6ad7725 | 2019-05-01 13:16:22 -0700 | [diff] [blame] | 329 | // 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] | 330 | // extractNativeLibs application flag should be set to false in the manifest. |
Sasha Smundak | 6ad7725 | 2019-05-01 13:16:22 -0700 | [diff] [blame] | 331 | func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 332 | minSdkVersion, err := a.MinSdkVersion(ctx).EffectiveVersion(ctx) |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 333 | if err != nil { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 334 | ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.MinSdkVersion(ctx), err) |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 335 | } |
| 336 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 337 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 338 | return (minSdkVersion.FinalOrFutureInt() >= 23 && Bool(a.appProperties.Use_embedded_native_libs)) || |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 339 | !apexInfo.IsForPlatform() |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 340 | } |
| 341 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 342 | // Returns whether this module should have the dex file stored uncompressed in the APK. |
| 343 | func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool { |
Colin Cross | 46abdad | 2019-02-07 13:07:08 -0800 | [diff] [blame] | 344 | if Bool(a.appProperties.Use_embedded_dex) { |
| 345 | return true |
| 346 | } |
| 347 | |
Colin Cross | 53a87f5 | 2019-06-25 13:35:30 -0700 | [diff] [blame] | 348 | // Uncompress dex in APKs of privileged apps (even for unbundled builds, they may |
| 349 | // be preinstalled as prebuilts). |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 350 | if ctx.Config().UncompressPrivAppDex() && a.Privileged() { |
Nicolas Geoffray | fa6e9ec | 2019-02-12 13:12:16 +0000 | [diff] [blame] | 351 | return true |
| 352 | } |
| 353 | |
Colin Cross | 53a87f5 | 2019-06-25 13:35:30 -0700 | [diff] [blame] | 354 | if ctx.Config().UnbundledBuild() { |
| 355 | return false |
| 356 | } |
| 357 | |
Jaewoong Jung | acf18d7 | 2019-05-02 14:55:29 -0700 | [diff] [blame] | 358 | return shouldUncompressDex(ctx, &a.dexpreopter) |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 359 | } |
| 360 | |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 361 | func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 362 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 363 | return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) || |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 364 | !apexInfo.IsForPlatform() || a.appProperties.AlwaysPackageNativeLibs |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 367 | func generateAaptRenamePackageFlags(packageName string, renameResourcesPackage bool) []string { |
| 368 | aaptFlags := []string{"--rename-manifest-package " + packageName} |
| 369 | if renameResourcesPackage { |
| 370 | // Required to rename the package name in the resources table. |
| 371 | aaptFlags = append(aaptFlags, "--rename-resources-package "+packageName) |
| 372 | } |
| 373 | return aaptFlags |
| 374 | } |
| 375 | |
Jiyong Park | cfaa164 | 2020-02-28 16:51:07 +0900 | [diff] [blame] | 376 | func (a *AndroidApp) OverriddenManifestPackageName() string { |
| 377 | return a.overriddenManifestPackageName |
| 378 | } |
| 379 | |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 380 | func (a *AndroidApp) renameResourcesPackage() bool { |
| 381 | return proptools.BoolDefault(a.overridableAppProperties.Rename_resources_package, true) |
| 382 | } |
| 383 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 384 | func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) { |
Lorenzo Colitti | fa9b3f3 | 2021-03-30 10:38:26 +0900 | [diff] [blame] | 385 | usePlatformAPI := proptools.Bool(a.Module.deviceProperties.Platform_apis) |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 386 | if ctx.Module().(android.SdkContext).SdkVersion(ctx).Kind == android.SdkModule { |
Lorenzo Colitti | fa9b3f3 | 2021-03-30 10:38:26 +0900 | [diff] [blame] | 387 | usePlatformAPI = true |
| 388 | } |
| 389 | a.aapt.usesNonSdkApis = usePlatformAPI |
David Brazdil | d25060a | 2019-02-18 18:24:16 +0000 | [diff] [blame] | 390 | |
Jaewoong Jung | c27ab66 | 2019-05-30 15:51:14 -0700 | [diff] [blame] | 391 | // Ask manifest_fixer to add or update the application element indicating this app has no code. |
| 392 | a.aapt.hasNoCode = !a.hasCode(ctx) |
| 393 | |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 394 | aaptLinkFlags := []string{} |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 395 | |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 396 | // 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] | 397 | hasProduct := android.PrefixInList(a.aaptProperties.Aaptflags, "--product") |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 398 | if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 399 | aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics()) |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 400 | } |
| 401 | |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 402 | if !Bool(a.aaptProperties.Aapt_include_all_resources) { |
| 403 | // Product AAPT config |
| 404 | for _, aaptConfig := range ctx.Config().ProductAAPTConfig() { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 405 | aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig) |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 406 | } |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 407 | |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 408 | // Product AAPT preferred config |
| 409 | if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 410 | aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig()) |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 411 | } |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 414 | manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName()) |
Jaewoong Jung | 6f373f6 | 2019-03-13 10:13:24 -0700 | [diff] [blame] | 415 | if overridden || a.overridableAppProperties.Package_name != nil { |
| 416 | // The product override variable has a priority over the package_name property. |
| 417 | if !overridden { |
| 418 | manifestPackageName = *a.overridableAppProperties.Package_name |
| 419 | } |
Liz Kammer | 9f9fd02 | 2020-06-18 19:44:06 +0000 | [diff] [blame] | 420 | aaptLinkFlags = append(aaptLinkFlags, generateAaptRenamePackageFlags(manifestPackageName, a.renameResourcesPackage())...) |
Jiyong Park | cfaa164 | 2020-02-28 16:51:07 +0900 | [diff] [blame] | 421 | a.overriddenManifestPackageName = manifestPackageName |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 422 | } |
| 423 | |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 424 | aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...) |
| 425 | |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 426 | a.aapt.splitNames = a.appProperties.Package_splits |
Baligh Uddin | 5b16dfb | 2020-02-11 17:27:19 -0800 | [diff] [blame] | 427 | a.aapt.LoggingParent = String(a.overridableAppProperties.Logging_parent) |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 428 | a.aapt.buildActions(ctx, android.SdkContext(a), a.classLoaderContexts, aaptLinkFlags...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 429 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 430 | // apps manifests are handled by aapt, don't let Module see them |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 431 | a.properties.Manifest = nil |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 432 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 433 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 434 | func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) { |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 435 | var staticLibProguardFlagFiles android.Paths |
| 436 | ctx.VisitDirectDeps(func(m android.Module) { |
| 437 | if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag { |
| 438 | staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...) |
| 439 | } |
| 440 | }) |
| 441 | |
| 442 | staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles) |
| 443 | |
| 444 | a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...) |
| 445 | a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile) |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 446 | } |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 447 | |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 448 | func (a *AndroidApp) installPath(ctx android.ModuleContext) android.InstallPath { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 449 | var installDir string |
| 450 | if ctx.ModuleName() == "framework-res" { |
| 451 | // framework-res.apk is installed as system/framework/framework-res.apk |
| 452 | installDir = "framework" |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 453 | } else if a.Privileged() { |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 454 | installDir = filepath.Join("priv-app", a.installApkName) |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 455 | } else { |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 456 | installDir = filepath.Join("app", a.installApkName) |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 457 | } |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 458 | |
| 459 | return android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk") |
| 460 | } |
| 461 | |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 462 | func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path { |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 463 | a.dexpreopter.installPath = a.installPath(ctx) |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 464 | a.dexpreopter.isApp = true |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 465 | if a.dexProperties.Uncompress_dex == nil { |
David Srbecky | e033cba | 2020-05-20 22:20:28 +0100 | [diff] [blame] | 466 | // If the value was not force-set by the user, use reasonable default based on the module. |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 467 | a.dexProperties.Uncompress_dex = proptools.BoolPtr(a.shouldUncompressDex(ctx)) |
David Srbecky | e033cba | 2020-05-20 22:20:28 +0100 | [diff] [blame] | 468 | } |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 469 | a.dexpreopter.uncompressedDex = *a.dexProperties.Uncompress_dex |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 470 | a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries() |
Ulya Trafimovich | b23d28c | 2020-10-08 12:53:58 +0100 | [diff] [blame] | 471 | a.dexpreopter.classLoaderContexts = a.classLoaderContexts |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 472 | a.dexpreopter.manifestFile = a.mergedManifestFile |
Colin Cross | fa9bfcd | 2021-11-10 16:42:38 -0800 | [diff] [blame] | 473 | a.dexpreopter.preventInstall = a.appProperties.PreventInstall |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 474 | |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 475 | if ctx.ModuleName() != "framework-res" { |
| 476 | a.Module.compile(ctx, a.aaptSrcJar) |
| 477 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 478 | |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 479 | return a.dexJarFile.PathOrNil() |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 480 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 481 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 482 | func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 483 | var jniJarFile android.WritablePath |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 484 | if len(jniLibs) > 0 { |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 485 | a.jniLibs = jniLibs |
Jaewoong Jung | bc625cd | 2019-05-06 15:48:44 -0700 | [diff] [blame] | 486 | if a.shouldEmbedJnis(ctx) { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 487 | jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip") |
Colin Cross | c68db4b | 2021-11-11 18:59:15 -0800 | [diff] [blame] | 488 | a.installPathForJNISymbols = a.installPath(ctx) |
Sasha Smundak | 6ad7725 | 2019-05-01 13:16:22 -0700 | [diff] [blame] | 489 | TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx)) |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 490 | for _, jni := range jniLibs { |
| 491 | if jni.coverageFile.Valid() { |
Jaewoong Jung | 46984ee | 2020-04-07 13:07:55 -0700 | [diff] [blame] | 492 | // Only collect coverage for the first target arch if this is a multilib target. |
| 493 | // TODO(jungjw): Ideally, we want to collect both reports, but that would cause coverage |
| 494 | // data file path collisions since the current coverage file path format doesn't contain |
| 495 | // arch-related strings. This is fine for now though; the code coverage team doesn't use |
| 496 | // multi-arch targets such as test_suite_* for coverage collections yet. |
| 497 | // |
| 498 | // Work with the team to come up with a new format that handles multilib modules properly |
| 499 | // and change this. |
| 500 | if len(ctx.Config().Targets[android.Android]) == 1 || |
Jaewoong Jung | 642916f | 2020-10-09 17:25:15 -0700 | [diff] [blame] | 501 | ctx.Config().AndroidFirstDeviceTarget.Arch.ArchType == jni.target.Arch.ArchType { |
Jaewoong Jung | 46984ee | 2020-04-07 13:07:55 -0700 | [diff] [blame] | 502 | a.jniCoverageOutputs = append(a.jniCoverageOutputs, jni.coverageFile.Path()) |
| 503 | } |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 504 | } |
| 505 | } |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 506 | a.embeddedJniLibs = true |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 507 | } |
| 508 | } |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 509 | return jniJarFile |
| 510 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 511 | |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 512 | func (a *AndroidApp) JNISymbolsInstalls(installPath string) android.RuleBuilderInstalls { |
| 513 | var jniSymbols android.RuleBuilderInstalls |
| 514 | for _, jniLib := range a.jniLibs { |
| 515 | if jniLib.unstrippedFile != nil { |
| 516 | jniSymbols = append(jniSymbols, android.RuleBuilderInstall{ |
| 517 | From: jniLib.unstrippedFile, |
| 518 | To: filepath.Join(installPath, targetToJniDir(jniLib.target), jniLib.unstrippedFile.Base()), |
| 519 | }) |
| 520 | } |
| 521 | } |
| 522 | return jniSymbols |
| 523 | } |
| 524 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 525 | func (a *AndroidApp) noticeBuildActions(ctx android.ModuleContext) { |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 526 | // Collect NOTICE files from all dependencies. |
| 527 | seenModules := make(map[android.Module]bool) |
| 528 | noticePathSet := make(map[android.Path]bool) |
| 529 | |
| 530 | ctx.WalkDeps(func(child android.Module, parent android.Module) bool { |
| 531 | // Have we already seen this? |
| 532 | if _, ok := seenModules[child]; ok { |
| 533 | return false |
| 534 | } |
| 535 | seenModules[child] = true |
| 536 | |
| 537 | // Skip host modules. |
Jiyong Park | 1613e55 | 2020-09-14 19:43:17 +0900 | [diff] [blame] | 538 | if child.Target().Os.Class == android.Host { |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 539 | return false |
| 540 | } |
| 541 | |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 542 | paths := child.(android.Module).NoticeFiles() |
| 543 | if len(paths) > 0 { |
| 544 | for _, path := range paths { |
| 545 | noticePathSet[path] = true |
| 546 | } |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 547 | } |
| 548 | return true |
| 549 | }) |
| 550 | |
| 551 | // If the app has one, add it too. |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 552 | if len(a.NoticeFiles()) > 0 { |
| 553 | for _, path := range a.NoticeFiles() { |
| 554 | noticePathSet[path] = true |
| 555 | } |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | if len(noticePathSet) == 0 { |
Jaewoong Jung | 9877279 | 2019-07-01 17:15:13 -0700 | [diff] [blame] | 559 | return |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 560 | } |
| 561 | var noticePaths []android.Path |
| 562 | for path := range noticePathSet { |
| 563 | noticePaths = append(noticePaths, path) |
| 564 | } |
| 565 | sort.Slice(noticePaths, func(i, j int) bool { |
| 566 | return noticePaths[i].String() < noticePaths[j].String() |
| 567 | }) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 568 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 569 | a.noticeOutputs = android.BuildNoticeOutput(ctx, a.installDir, a.installApkName+".apk", noticePaths) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 570 | } |
| 571 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 572 | // Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it |
| 573 | // isn't a cert module reference. Also checks and enforces system cert restriction if applicable. |
| 574 | func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate { |
| 575 | if android.SrcIsModule(certPropValue) == "" { |
| 576 | var mainCert Certificate |
| 577 | if certPropValue != "" { |
| 578 | defaultDir := ctx.Config().DefaultAppCertificateDir(ctx) |
| 579 | mainCert = Certificate{ |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 580 | Pem: defaultDir.Join(ctx, certPropValue+".x509.pem"), |
| 581 | Key: defaultDir.Join(ctx, certPropValue+".pk8"), |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 582 | } |
| 583 | } else { |
| 584 | pem, key := ctx.Config().DefaultAppCertificate(ctx) |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 585 | mainCert = Certificate{ |
| 586 | Pem: pem, |
| 587 | Key: key, |
| 588 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 589 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 590 | certificates = append([]Certificate{mainCert}, certificates...) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 591 | } |
| 592 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 593 | if !m.Platform() { |
| 594 | certPath := certificates[0].Pem.String() |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 595 | systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String() |
| 596 | if strings.HasPrefix(certPath, systemCertPath) { |
| 597 | enforceSystemCert := ctx.Config().EnforceSystemCertificate() |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 598 | allowed := ctx.Config().EnforceSystemCertificateAllowList() |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 599 | |
Colin Cross | 440e0d0 | 2020-06-11 11:32:11 -0700 | [diff] [blame] | 600 | if enforceSystemCert && !inList(m.Name(), allowed) { |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 601 | ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.") |
| 602 | } |
| 603 | } |
| 604 | } |
| 605 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 606 | return certificates |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 607 | } |
| 608 | |
Jooyung Han | 39ee119 | 2020-03-23 20:21:11 +0900 | [diff] [blame] | 609 | func (a *AndroidApp) InstallApkName() string { |
| 610 | return a.installApkName |
| 611 | } |
| 612 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 613 | func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 614 | var apkDeps android.Paths |
| 615 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 616 | if !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform() { |
| 617 | a.hideApexVariantFromMake = true |
| 618 | } |
| 619 | |
Jeongik Cha | 538c0d0 | 2019-07-11 15:54:27 +0900 | [diff] [blame] | 620 | a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx) |
| 621 | a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex) |
| 622 | |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 623 | // Check if the install APK name needs to be overridden. |
Jooyung Han | 29e2f6d | 2022-01-08 12:13:59 +0900 | [diff] [blame] | 624 | a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Stem()) |
Jaewoong Jung | 9d22a91 | 2019-01-23 16:27:47 -0800 | [diff] [blame] | 625 | |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 626 | if ctx.ModuleName() == "framework-res" { |
| 627 | // framework-res.apk is installed as system/framework/framework-res.apk |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 628 | a.installDir = android.PathForModuleInstall(ctx, "framework") |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 629 | } else if a.Privileged() { |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 630 | a.installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName) |
| 631 | } else if ctx.InstallInTestcases() { |
Jaewoong Jung | 326a941 | 2019-11-21 10:41:00 -0800 | [diff] [blame] | 632 | a.installDir = android.PathForModuleInstall(ctx, a.installApkName, ctx.DeviceConfig().DeviceArch()) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 633 | } else { |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 634 | a.installDir = android.PathForModuleInstall(ctx, "app", a.installApkName) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 635 | } |
Jaewoong Jung | 7dd4ae2 | 2019-09-27 17:13:15 -0700 | [diff] [blame] | 636 | a.onDeviceDir = android.InstallPathToOnDevicePath(ctx, a.installDir) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 637 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 638 | a.noticeBuildActions(ctx) |
Jaewoong Jung | 9877279 | 2019-07-01 17:15:13 -0700 | [diff] [blame] | 639 | if Bool(a.appProperties.Embed_notices) || ctx.Config().IsEnvTrue("ALWAYS_EMBED_NOTICES") { |
| 640 | a.aapt.noticeFile = a.noticeOutputs.HtmlGzOutput |
| 641 | } |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 642 | |
Ulya Trafimovich | b23d28c | 2020-10-08 12:53:58 +0100 | [diff] [blame] | 643 | a.classLoaderContexts = a.usesLibrary.classLoaderContextForUsesLibDeps(ctx) |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 644 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 645 | // Process all building blocks, from AAPT to certificates. |
| 646 | a.aaptBuildActions(ctx) |
| 647 | |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 648 | // The decision to enforce <uses-library> checks is made before adding implicit SDK libraries. |
| 649 | a.usesLibrary.freezeEnforceUsesLibraries() |
| 650 | |
| 651 | // Add implicit SDK libraries to <uses-library> list. |
Ulya Trafimovich | fc0f6e3 | 2021-08-12 16:16:11 +0100 | [diff] [blame] | 652 | requiredUsesLibs, optionalUsesLibs := a.classLoaderContexts.UsesLibs() |
| 653 | for _, usesLib := range requiredUsesLibs { |
| 654 | a.usesLibrary.addLib(usesLib, false) |
| 655 | } |
| 656 | for _, usesLib := range optionalUsesLibs { |
| 657 | a.usesLibrary.addLib(usesLib, true) |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 658 | } |
| 659 | |
| 660 | // Check that the <uses-library> list is coherent with the manifest. |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 661 | if a.usesLibrary.enforceUsesLibraries() { |
| 662 | manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile) |
| 663 | apkDeps = append(apkDeps, manifestCheckFile) |
| 664 | } |
| 665 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 666 | a.proguardBuildActions(ctx) |
| 667 | |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 668 | a.linter.mergedManifest = a.aapt.mergedManifestFile |
| 669 | a.linter.manifest = a.aapt.manifestPath |
| 670 | a.linter.resources = a.aapt.resourceFiles |
Colin Cross | c0efd1d | 2020-07-03 11:56:24 -0700 | [diff] [blame] | 671 | a.linter.buildModuleReportZip = ctx.Config().UnbundledBuildApps() |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 672 | |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 673 | dexJarFile := a.dexBuildActions(ctx) |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 674 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 675 | 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] | 676 | jniJarFile := a.jniBuildActions(jniLibs, ctx) |
| 677 | |
| 678 | if ctx.Failed() { |
| 679 | return |
| 680 | } |
| 681 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 682 | certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx) |
| 683 | a.certificate = certificates[0] |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 684 | |
| 685 | // Build a final signed app package. |
Jaewoong Jung | 5a49881 | 2019-11-07 14:14:38 -0800 | [diff] [blame] | 686 | packageFile := android.PathForModuleOut(ctx, a.installApkName+".apk") |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 687 | v4SigningRequested := Bool(a.Module.deviceProperties.V4_signature) |
| 688 | var v4SignatureFile android.WritablePath = nil |
| 689 | if v4SigningRequested { |
| 690 | v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+".apk.idsig") |
| 691 | } |
Liz Kammer | e2b27f4 | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 692 | var lineageFile android.Path |
| 693 | if lineage := String(a.overridableAppProperties.Lineage); lineage != "" { |
| 694 | lineageFile = android.PathForModuleSrc(ctx, lineage) |
| 695 | } |
Liz Kammer | 70dd74d | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 696 | CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps, v4SignatureFile, lineageFile) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 697 | a.outputFile = packageFile |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 698 | if v4SigningRequested { |
| 699 | a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile) |
| 700 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 701 | |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 702 | for _, split := range a.aapt.splits { |
| 703 | // Sign the split APKs |
Jaewoong Jung | 5a49881 | 2019-11-07 14:14:38 -0800 | [diff] [blame] | 704 | packageFile := android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk") |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 705 | if v4SigningRequested { |
| 706 | v4SignatureFile = android.PathForModuleOut(ctx, a.installApkName+"_"+split.suffix+".apk.idsig") |
| 707 | } |
Liz Kammer | 70dd74d | 2020-05-07 13:24:05 -0700 | [diff] [blame] | 708 | CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps, v4SignatureFile, lineageFile) |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 709 | a.extraOutputFiles = append(a.extraOutputFiles, packageFile) |
Songchun Fan | 17d69e3 | 2020-03-24 20:32:24 -0700 | [diff] [blame] | 710 | if v4SigningRequested { |
| 711 | a.extraOutputFiles = append(a.extraOutputFiles, v4SignatureFile) |
| 712 | } |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 713 | } |
| 714 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 715 | // Build an app bundle. |
Colin Cross | f623721 | 2018-10-29 23:14:58 -0700 | [diff] [blame] | 716 | bundleFile := android.PathForModuleOut(ctx, "base.zip") |
| 717 | BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile) |
| 718 | a.bundleFile = bundleFile |
| 719 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 720 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
| 721 | |
Jaewoong Jung | 590b1ae | 2019-01-22 16:40:58 -0800 | [diff] [blame] | 722 | // Install the app package. |
Colin Cross | fa9bfcd | 2021-11-10 16:42:38 -0800 | [diff] [blame] | 723 | if (Bool(a.Module.properties.Installable) || ctx.Host()) && apexInfo.IsForPlatform() && |
| 724 | !a.appProperties.PreventInstall { |
| 725 | |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 726 | var extraInstalledPaths android.Paths |
Jiyong Park | 8ba50f9 | 2019-11-13 15:01:01 +0900 | [diff] [blame] | 727 | for _, extra := range a.extraOutputFiles { |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 728 | installed := ctx.InstallFile(a.installDir, extra.Base(), extra) |
| 729 | extraInstalledPaths = append(extraInstalledPaths, installed) |
Jiyong Park | 8ba50f9 | 2019-11-13 15:01:01 +0900 | [diff] [blame] | 730 | } |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 731 | ctx.InstallFile(a.installDir, a.outputFile.Base(), a.outputFile, extraInstalledPaths...) |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 732 | } |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 733 | |
| 734 | a.buildAppDependencyInfo(ctx) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 735 | } |
| 736 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 737 | type appDepsInterface interface { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 738 | SdkVersion(ctx android.EarlyModuleContext) android.SdkSpec |
| 739 | MinSdkVersion(ctx android.EarlyModuleContext) android.SdkSpec |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 740 | RequiresStableAPIs(ctx android.BaseModuleContext) bool |
| 741 | } |
| 742 | |
| 743 | func collectAppDeps(ctx android.ModuleContext, app appDepsInterface, |
| 744 | shouldCollectRecursiveNativeDeps bool, |
Colin Cross | 094cde4 | 2020-02-15 10:38:00 -0800 | [diff] [blame] | 745 | checkNativeSdkVersion bool) ([]jniLib, []Certificate) { |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 746 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 747 | var jniLibs []jniLib |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 748 | var certificates []Certificate |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 749 | seenModulePaths := make(map[string]bool) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 750 | |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 751 | if checkNativeSdkVersion { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 752 | checkNativeSdkVersion = app.SdkVersion(ctx).Specified() && |
| 753 | app.SdkVersion(ctx).Kind != android.SdkCorePlatform && !app.RequiresStableAPIs(ctx) |
Colin Cross | c2d2405 | 2020-05-13 11:05:02 -0700 | [diff] [blame] | 754 | } |
| 755 | |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 756 | ctx.WalkDeps(func(module android.Module, parent android.Module) bool { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 757 | otherName := ctx.OtherModuleName(module) |
| 758 | tag := ctx.OtherModuleDependencyTag(module) |
| 759 | |
Colin Cross | f0913fb | 2020-07-29 12:59:39 -0700 | [diff] [blame] | 760 | if IsJniDepTag(tag) || cc.IsSharedDepTag(tag) { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 761 | if dep, ok := module.(*cc.Module); ok { |
Colin Cross | 95f1ca0 | 2020-10-29 20:47:22 -0700 | [diff] [blame] | 762 | if dep.IsNdk(ctx.Config()) || dep.IsStubs() { |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 763 | return false |
| 764 | } |
| 765 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 766 | lib := dep.OutputFile() |
| 767 | if lib.Valid() { |
Cole Faust | 64cb7c9 | 2021-09-14 17:32:49 -0700 | [diff] [blame] | 768 | path := lib.Path() |
| 769 | if seenModulePaths[path.String()] { |
| 770 | return false |
| 771 | } |
| 772 | seenModulePaths[path.String()] = true |
| 773 | |
| 774 | if checkNativeSdkVersion && dep.SdkVersion() == "" { |
| 775 | ctx.PropertyErrorf("jni_libs", "JNI dependency %q uses platform APIs, but this module does not", |
| 776 | otherName) |
| 777 | } |
| 778 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 779 | jniLibs = append(jniLibs, jniLib{ |
Colin Cross | 403cc15 | 2020-07-06 14:15:24 -0700 | [diff] [blame] | 780 | name: ctx.OtherModuleName(module), |
| 781 | path: path, |
| 782 | target: module.Target(), |
| 783 | coverageFile: dep.CoverageOutputFile(), |
| 784 | unstrippedFile: dep.UnstrippedOutputFile(), |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 785 | }) |
| 786 | } else { |
| 787 | ctx.ModuleErrorf("dependency %q missing output file", otherName) |
| 788 | } |
| 789 | } else { |
| 790 | ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 791 | } |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 792 | |
| 793 | return shouldCollectRecursiveNativeDeps |
| 794 | } |
| 795 | |
| 796 | if tag == certificateTag { |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 797 | if dep, ok := module.(*AndroidAppCertificate); ok { |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 798 | certificates = append(certificates, dep.Certificate) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 799 | } else { |
| 800 | ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName) |
| 801 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 802 | } |
Peter Collingbourne | ad84f97 | 2019-12-17 16:46:18 -0800 | [diff] [blame] | 803 | |
| 804 | return false |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 805 | }) |
| 806 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 807 | return jniLibs, certificates |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 808 | } |
| 809 | |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 810 | func (a *AndroidApp) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) { |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 811 | ctx.WalkDeps(func(child, parent android.Module) bool { |
| 812 | isExternal := !a.DepIsInSameApex(ctx, child) |
| 813 | if am, ok := child.(android.ApexModule); ok { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 814 | if !do(ctx, parent, am, isExternal) { |
| 815 | return false |
| 816 | } |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 817 | } |
| 818 | return !isExternal |
| 819 | }) |
| 820 | } |
| 821 | |
| 822 | func (a *AndroidApp) buildAppDependencyInfo(ctx android.ModuleContext) { |
| 823 | if ctx.Host() { |
| 824 | return |
| 825 | } |
| 826 | |
| 827 | depsInfo := android.DepNameToDepInfoMap{} |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 828 | a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool { |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 829 | depName := to.Name() |
Artur Satayev | 533b98c | 2021-03-11 18:03:42 +0000 | [diff] [blame] | 830 | |
| 831 | // Skip dependencies that are only available to APEXes; they are developed with updatability |
| 832 | // in mind and don't need manual approval. |
| 833 | if to.(android.ApexModule).NotAvailableForPlatform() { |
| 834 | return true |
| 835 | } |
| 836 | |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 837 | if info, exist := depsInfo[depName]; exist { |
| 838 | info.From = append(info.From, from.Name()) |
| 839 | info.IsExternal = info.IsExternal && externalDep |
| 840 | depsInfo[depName] = info |
| 841 | } else { |
| 842 | toMinSdkVersion := "(no version)" |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 843 | if m, ok := to.(interface { |
| 844 | MinSdkVersion(ctx android.EarlyModuleContext) android.SdkSpec |
| 845 | }); ok { |
| 846 | if v := m.MinSdkVersion(ctx); !v.ApiLevel.IsNone() { |
| 847 | toMinSdkVersion = v.ApiLevel.String() |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 848 | } |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 849 | } else if m, ok := to.(interface{ MinSdkVersion() string }); ok { |
| 850 | // TODO(b/175678607) eliminate the use of MinSdkVersion returning |
| 851 | // string |
| 852 | if v := m.MinSdkVersion(); v != "" { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 853 | toMinSdkVersion = v |
| 854 | } |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 855 | } |
| 856 | depsInfo[depName] = android.ApexModuleDepInfo{ |
| 857 | To: depName, |
| 858 | From: []string{from.Name()}, |
| 859 | IsExternal: externalDep, |
| 860 | MinSdkVersion: toMinSdkVersion, |
| 861 | } |
| 862 | } |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 863 | return true |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 864 | }) |
| 865 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 866 | a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(ctx).String(), depsInfo) |
Artur Satayev | 1111b84 | 2020-04-27 19:05:28 +0100 | [diff] [blame] | 867 | } |
| 868 | |
Artur Satayev | 849f844 | 2020-04-28 14:57:42 +0100 | [diff] [blame] | 869 | func (a *AndroidApp) Updatable() bool { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 870 | return Bool(a.appProperties.Updatable) |
Artur Satayev | 849f844 | 2020-04-28 14:57:42 +0100 | [diff] [blame] | 871 | } |
| 872 | |
Colin Cross | 0ea8ba8 | 2019-06-06 14:33:29 -0700 | [diff] [blame] | 873 | func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string { |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 874 | certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName()) |
| 875 | if overridden { |
Jaewoong Jung | acb6db3 | 2019-02-28 16:22:30 +0000 | [diff] [blame] | 876 | return ":" + certificate |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 877 | } |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 878 | return String(a.overridableAppProperties.Certificate) |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame] | 879 | } |
| 880 | |
Jiyong Park | 0f80c18 | 2020-01-31 02:49:53 +0900 | [diff] [blame] | 881 | func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { |
| 882 | if IsJniDepTag(ctx.OtherModuleDependencyTag(dep)) { |
| 883 | return true |
| 884 | } |
| 885 | return a.Library.DepIsInSameApex(ctx, dep) |
| 886 | } |
| 887 | |
Jiyong Park | b7c639e | 2019-08-19 14:56:02 +0900 | [diff] [blame] | 888 | // For OutputFileProducer interface |
| 889 | func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) { |
| 890 | switch tag { |
| 891 | case ".aapt.srcjar": |
| 892 | return []android.Path{a.aaptSrcJar}, nil |
Anton Hansson | 092aca4 | 2020-08-13 19:37:22 +0100 | [diff] [blame] | 893 | case ".export-package.apk": |
| 894 | return []android.Path{a.exportPackage}, nil |
Jiyong Park | b7c639e | 2019-08-19 14:56:02 +0900 | [diff] [blame] | 895 | } |
| 896 | return a.Library.OutputFiles(tag) |
| 897 | } |
| 898 | |
Jiyong Park | f748731 | 2019-10-17 12:54:30 +0900 | [diff] [blame] | 899 | func (a *AndroidApp) Privileged() bool { |
| 900 | return Bool(a.appProperties.Privileged) |
| 901 | } |
| 902 | |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 903 | func (a *AndroidApp) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool { |
Colin Cross | 1a6acd4 | 2020-06-16 17:51:46 -0700 | [diff] [blame] | 904 | return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled() |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 905 | } |
| 906 | |
Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 907 | func (a *AndroidApp) SetPreventInstall() { |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 908 | a.appProperties.PreventInstall = true |
| 909 | } |
| 910 | |
| 911 | func (a *AndroidApp) HideFromMake() { |
| 912 | a.appProperties.HideFromMake = true |
| 913 | } |
| 914 | |
| 915 | func (a *AndroidApp) MarkAsCoverageVariant(coverage bool) { |
| 916 | a.appProperties.IsCoverageVariant = coverage |
| 917 | } |
| 918 | |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 919 | func (a *AndroidApp) EnableCoverageIfNeeded() {} |
| 920 | |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 921 | var _ cc.Coverage = (*AndroidApp)(nil) |
| 922 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 923 | // 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] | 924 | func AndroidAppFactory() android.Module { |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 925 | module := &AndroidApp{} |
| 926 | |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 927 | module.Module.dexProperties.Optimize.EnabledByDefault = true |
| 928 | module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true) |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 929 | |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 930 | module.Module.properties.Instrument = true |
Colin Cross | 9ae1b92 | 2018-06-26 17:59:05 -0700 | [diff] [blame] | 931 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 932 | |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 933 | module.addHostAndDeviceProperties() |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 934 | module.AddProperties( |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 935 | &module.aaptProperties, |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 936 | &module.appProperties, |
Ulya Trafimovich | 21a7375 | 2020-09-01 17:33:48 +0100 | [diff] [blame] | 937 | &module.overridableAppProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 938 | |
Ulya Trafimovich | 22890c4 | 2021-01-05 12:04:17 +0000 | [diff] [blame] | 939 | module.usesLibrary.enforce = true |
| 940 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 941 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 942 | android.InitDefaultableModule(module) |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 943 | android.InitOverridableModule(module, &module.appProperties.Overrides) |
Jiyong Park | 52cd06f | 2019-11-11 10:14:32 +0900 | [diff] [blame] | 944 | android.InitApexModule(module) |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 945 | android.InitBazelModule(module) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 946 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 947 | return module |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 948 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 949 | |
| 950 | type appTestProperties struct { |
Liz Kammer | 6b0c552 | 2020-04-28 16:10:55 -0700 | [diff] [blame] | 951 | // The name of the android_app module that the tests will run against. |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 952 | Instrumentation_for *string |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 953 | |
| 954 | // if specified, the instrumentation target package name in the manifest is overwritten by it. |
| 955 | Instrumentation_target_package *string |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | type AndroidTest struct { |
| 959 | AndroidApp |
| 960 | |
| 961 | appTestProperties appTestProperties |
| 962 | |
| 963 | testProperties testProperties |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 964 | |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 965 | testConfig android.Path |
| 966 | extraTestConfigs android.Paths |
| 967 | data android.Paths |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 968 | } |
| 969 | |
Jaewoong Jung | 0949f31 | 2019-09-11 10:25:18 -0700 | [diff] [blame] | 970 | func (a *AndroidTest) InstallInTestcases() bool { |
| 971 | return true |
| 972 | } |
| 973 | |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 974 | func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
easoncylee | 5bcff5d | 2020-04-30 14:57:06 +0800 | [diff] [blame] | 975 | var configs []tradefed.Config |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 976 | if a.appTestProperties.Instrumentation_target_package != nil { |
| 977 | a.additionalAaptFlags = append(a.additionalAaptFlags, |
| 978 | "--rename-instrumentation-target-package "+*a.appTestProperties.Instrumentation_target_package) |
| 979 | } else if a.appTestProperties.Instrumentation_for != nil { |
| 980 | // Check if the instrumentation target package is overridden. |
Jaewoong Jung | 4102e5d | 2019-02-27 16:26:28 -0800 | [diff] [blame] | 981 | manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for) |
| 982 | if overridden { |
| 983 | a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName) |
| 984 | } |
| 985 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 986 | a.generateAndroidBuildActions(ctx) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 987 | |
easoncylee | 5bcff5d | 2020-04-30 14:57:06 +0800 | [diff] [blame] | 988 | for _, module := range a.testProperties.Test_mainline_modules { |
| 989 | configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param", Value: module}) |
| 990 | } |
| 991 | |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 992 | testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config, |
easoncylee | 5bcff5d | 2020-04-30 14:57:06 +0800 | [diff] [blame] | 993 | a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs) |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 994 | a.testConfig = a.FixTestConfig(ctx, testConfig) |
Dan Shi | 95d1942 | 2020-08-15 12:24:26 -0700 | [diff] [blame] | 995 | a.extraTestConfigs = android.PathsForModuleSrc(ctx, a.testProperties.Test_options.Extra_test_configs) |
Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 996 | a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 997 | } |
| 998 | |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 999 | func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Path { |
| 1000 | if testConfig == nil { |
| 1001 | return nil |
| 1002 | } |
| 1003 | |
| 1004 | fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml") |
Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 1005 | rule := android.NewRuleBuilder(pctx, ctx) |
| 1006 | command := rule.Command().BuiltTool("test_config_fixer").Input(testConfig).Output(fixedConfig) |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 1007 | fixNeeded := false |
| 1008 | |
Jooyung Han | 29e2f6d | 2022-01-08 12:13:59 +0900 | [diff] [blame] | 1009 | // Auto-generated test config uses `ModuleName` as the APK name. So fix it if it is not the case. |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 1010 | if ctx.ModuleName() != a.installApkName { |
| 1011 | fixNeeded = true |
| 1012 | command.FlagWithArg("--test-file-name ", a.installApkName+".apk") |
| 1013 | } |
| 1014 | |
| 1015 | if a.overridableAppProperties.Package_name != nil { |
| 1016 | fixNeeded = true |
| 1017 | command.FlagWithInput("--manifest ", a.manifestPath). |
| 1018 | FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name) |
| 1019 | } |
| 1020 | |
| 1021 | if fixNeeded { |
Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 1022 | rule.Build("fix_test_config", "fix test config") |
Jaewoong Jung | 3998234 | 2020-01-14 10:27:18 -0800 | [diff] [blame] | 1023 | return fixedConfig |
| 1024 | } |
| 1025 | return testConfig |
| 1026 | } |
| 1027 | |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 1028 | func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) { |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 1029 | a.AndroidApp.DepsMutator(ctx) |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
| 1032 | func (a *AndroidTest) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) { |
| 1033 | a.AndroidApp.OverridablePropertiesDepsMutator(ctx) |
Colin Cross | 4b964c0 | 2018-10-15 16:18:06 -0700 | [diff] [blame] | 1034 | if a.appTestProperties.Instrumentation_for != nil { |
| 1035 | // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac, |
| 1036 | // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so |
| 1037 | // use instrumentationForTag instead of libTag. |
| 1038 | ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for)) |
| 1039 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 1042 | // android_test compiles test sources and Android resources into an Android application package `.apk` file and |
| 1043 | // 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] | 1044 | func AndroidTestFactory() android.Module { |
| 1045 | module := &AndroidTest{} |
| 1046 | |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 1047 | module.Module.dexProperties.Optimize.EnabledByDefault = true |
Colin Cross | 5067db9 | 2018-09-17 16:46:35 -0700 | [diff] [blame] | 1048 | |
| 1049 | module.Module.properties.Instrument = true |
Colin Cross | 9ae1b92 | 2018-06-26 17:59:05 -0700 | [diff] [blame] | 1050 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 1051 | module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true) |
Colin Cross | 47fa9d3 | 2019-03-26 10:51:39 -0700 | [diff] [blame] | 1052 | module.appProperties.AlwaysPackageNativeLibs = true |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 1053 | module.Module.dexpreopter.isTest = true |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 1054 | module.Module.linter.test = true |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1055 | |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 1056 | module.addHostAndDeviceProperties() |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1057 | module.AddProperties( |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1058 | &module.aaptProperties, |
| 1059 | &module.appProperties, |
Dan Willemsen | f5531d2 | 2018-07-16 17:21:19 -0700 | [diff] [blame] | 1060 | &module.appTestProperties, |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1061 | &module.overridableAppProperties, |
Dan Willemsen | f5531d2 | 2018-07-16 17:21:19 -0700 | [diff] [blame] | 1062 | &module.testProperties) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1063 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 1064 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1065 | android.InitDefaultableModule(module) |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1066 | android.InitOverridableModule(module, &module.appProperties.Overrides) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 1067 | return module |
| 1068 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1069 | |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1070 | type appTestHelperAppProperties struct { |
| 1071 | // list of compatibility suites (for example "cts", "vts") that the module should be |
| 1072 | // installed into. |
| 1073 | Test_suites []string `android:"arch_variant"` |
Dan Shi | 6ffaaa8 | 2019-09-26 11:41:36 -0700 | [diff] [blame] | 1074 | |
| 1075 | // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml |
| 1076 | // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true |
| 1077 | // explicitly. |
| 1078 | Auto_gen_config *bool |
Colin Cross | cfb0f5e | 2021-09-24 15:47:17 -0700 | [diff] [blame] | 1079 | |
| 1080 | // Install the test into a folder named for the module in all test suites. |
| 1081 | Per_testcase_directory *bool |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | type AndroidTestHelperApp struct { |
| 1085 | AndroidApp |
| 1086 | |
| 1087 | appTestHelperAppProperties appTestHelperAppProperties |
| 1088 | } |
| 1089 | |
Jaewoong Jung | 326a941 | 2019-11-21 10:41:00 -0800 | [diff] [blame] | 1090 | func (a *AndroidTestHelperApp) InstallInTestcases() bool { |
| 1091 | return true |
| 1092 | } |
| 1093 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 1094 | // android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that |
| 1095 | // will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a |
| 1096 | // test. |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1097 | func AndroidTestHelperAppFactory() android.Module { |
| 1098 | module := &AndroidTestHelperApp{} |
| 1099 | |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 1100 | module.Module.dexProperties.Optimize.EnabledByDefault = true |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1101 | |
| 1102 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 1103 | module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true) |
Colin Cross | 47fa9d3 | 2019-03-26 10:51:39 -0700 | [diff] [blame] | 1104 | module.appProperties.AlwaysPackageNativeLibs = true |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 1105 | module.Module.dexpreopter.isTest = true |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 1106 | module.Module.linter.test = true |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1107 | |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 1108 | module.addHostAndDeviceProperties() |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1109 | module.AddProperties( |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1110 | &module.aaptProperties, |
| 1111 | &module.appProperties, |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1112 | &module.appTestHelperAppProperties, |
Ulya Trafimovich | 21a7375 | 2020-09-01 17:33:48 +0100 | [diff] [blame] | 1113 | &module.overridableAppProperties) |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1114 | |
| 1115 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 1116 | android.InitDefaultableModule(module) |
Anton Hansson | 3d2b6b4 | 2020-01-10 15:06:01 +0000 | [diff] [blame] | 1117 | android.InitApexModule(module) |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 1118 | return module |
| 1119 | } |
| 1120 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1121 | type AndroidAppCertificate struct { |
| 1122 | android.ModuleBase |
Rupert Shuttleworth | 6e4950a | 2021-07-27 01:34:59 -0400 | [diff] [blame] | 1123 | android.BazelModuleBase |
| 1124 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1125 | properties AndroidAppCertificateProperties |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 1126 | Certificate Certificate |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | type AndroidAppCertificateProperties struct { |
| 1130 | // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name. |
| 1131 | Certificate *string |
| 1132 | } |
| 1133 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 1134 | // android_app_certificate modules can be referenced by the certificates property of android_app modules to select |
| 1135 | // the signing key. |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1136 | func AndroidAppCertificateFactory() android.Module { |
| 1137 | module := &AndroidAppCertificate{} |
| 1138 | module.AddProperties(&module.properties) |
| 1139 | android.InitAndroidModule(module) |
Rupert Shuttleworth | 6e4950a | 2021-07-27 01:34:59 -0400 | [diff] [blame] | 1140 | android.InitBazelModule(module) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1141 | return module |
| 1142 | } |
| 1143 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1144 | func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 1145 | cert := String(c.properties.Certificate) |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 1146 | c.Certificate = Certificate{ |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 1147 | Pem: android.PathForModuleSrc(ctx, cert+".x509.pem"), |
| 1148 | Key: android.PathForModuleSrc(ctx, cert+".pk8"), |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 1149 | } |
| 1150 | } |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1151 | |
| 1152 | type OverrideAndroidApp struct { |
| 1153 | android.ModuleBase |
| 1154 | android.OverrideModuleBase |
| 1155 | } |
| 1156 | |
Sasha Smundak | 613cbb1 | 2020-06-05 10:27:23 -0700 | [diff] [blame] | 1157 | func (i *OverrideAndroidApp) GenerateAndroidBuildActions(_ android.ModuleContext) { |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1158 | // All the overrides happen in the base module. |
| 1159 | // TODO(jungjw): Check the base module type. |
| 1160 | } |
| 1161 | |
| 1162 | // override_android_app is used to create an android_app module based on another android_app by overriding |
| 1163 | // some of its properties. |
| 1164 | func OverrideAndroidAppModuleFactory() android.Module { |
| 1165 | m := &OverrideAndroidApp{} |
Jooyung Han | 01d80d8 | 2022-01-08 12:16:32 +0900 | [diff] [blame] | 1166 | m.AddProperties( |
| 1167 | &OverridableDeviceProperties{}, |
| 1168 | &overridableAppProperties{}, |
| 1169 | ) |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1170 | |
Jaewoong Jung | b639a6a | 2019-05-10 15:16:29 -0700 | [diff] [blame] | 1171 | android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon) |
Jaewoong Jung | 525443a | 2019-02-28 15:35:54 -0800 | [diff] [blame] | 1172 | android.InitOverrideModule(m) |
| 1173 | return m |
| 1174 | } |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 1175 | |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1176 | type OverrideAndroidTest struct { |
| 1177 | android.ModuleBase |
| 1178 | android.OverrideModuleBase |
| 1179 | } |
| 1180 | |
Sasha Smundak | 613cbb1 | 2020-06-05 10:27:23 -0700 | [diff] [blame] | 1181 | func (i *OverrideAndroidTest) GenerateAndroidBuildActions(_ android.ModuleContext) { |
Jaewoong Jung | 26dedd3 | 2019-06-06 08:45:58 -0700 | [diff] [blame] | 1182 | // All the overrides happen in the base module. |
| 1183 | // TODO(jungjw): Check the base module type. |
| 1184 | } |
| 1185 | |
| 1186 | // override_android_test is used to create an android_app module based on another android_test by overriding |
| 1187 | // some of its properties. |
| 1188 | func OverrideAndroidTestModuleFactory() android.Module { |
| 1189 | m := &OverrideAndroidTest{} |
| 1190 | m.AddProperties(&overridableAppProperties{}) |
| 1191 | m.AddProperties(&appTestProperties{}) |
| 1192 | |
| 1193 | android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon) |
| 1194 | android.InitOverrideModule(m) |
| 1195 | return m |
| 1196 | } |
| 1197 | |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1198 | type UsesLibraryProperties struct { |
| 1199 | // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file. |
| 1200 | Uses_libs []string |
| 1201 | |
| 1202 | // A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with |
| 1203 | // required=false. |
| 1204 | Optional_uses_libs []string |
| 1205 | |
| 1206 | // If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults |
| 1207 | // to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future. |
| 1208 | Enforce_uses_libs *bool |
Ulya Trafimovich | 21a7375 | 2020-09-01 17:33:48 +0100 | [diff] [blame] | 1209 | |
Ulya Trafimovich | 54027b5 | 2020-09-09 14:08:23 +0100 | [diff] [blame] | 1210 | // Optional name of the <uses-library> provided by this module. This is needed for non-SDK |
| 1211 | // libraries, because SDK ones are automatically picked up by Soong. The <uses-library> name |
| 1212 | // normally is the same as the module name, but there are exceptions. |
| 1213 | Provides_uses_lib *string |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1214 | } |
| 1215 | |
| 1216 | // usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the |
| 1217 | // <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the |
| 1218 | // uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps |
| 1219 | // with knowledge of their shared libraries. |
| 1220 | type usesLibrary struct { |
| 1221 | usesLibraryProperties UsesLibraryProperties |
Ulya Trafimovich | 22890c4 | 2021-01-05 12:04:17 +0000 | [diff] [blame] | 1222 | |
| 1223 | // Whether to enforce verify_uses_library check. |
| 1224 | enforce bool |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1225 | } |
| 1226 | |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 1227 | func (u *usesLibrary) addLib(lib string, optional bool) { |
| 1228 | if !android.InList(lib, u.usesLibraryProperties.Uses_libs) && !android.InList(lib, u.usesLibraryProperties.Optional_uses_libs) { |
| 1229 | if optional { |
| 1230 | u.usesLibraryProperties.Optional_uses_libs = append(u.usesLibraryProperties.Optional_uses_libs, lib) |
| 1231 | } else { |
| 1232 | u.usesLibraryProperties.Uses_libs = append(u.usesLibraryProperties.Uses_libs, lib) |
| 1233 | } |
| 1234 | } |
| 1235 | } |
| 1236 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 1237 | func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, hasFrameworkLibs bool) { |
Jeongik Cha | 4b073cd | 2021-06-08 11:35:00 +0900 | [diff] [blame] | 1238 | if !ctx.Config().UnbundledBuild() || ctx.Config().UnbundledBuildImage() { |
Ulya Trafimovich | 0b1c70e | 2021-08-20 15:39:12 +0100 | [diff] [blame] | 1239 | reqTag := makeUsesLibraryDependencyTag(dexpreopt.AnySdkVersion, false, false) |
| 1240 | ctx.AddVariationDependencies(nil, reqTag, u.usesLibraryProperties.Uses_libs...) |
| 1241 | |
| 1242 | optTag := makeUsesLibraryDependencyTag(dexpreopt.AnySdkVersion, true, false) |
| 1243 | ctx.AddVariationDependencies(nil, optTag, u.presentOptionalUsesLibs(ctx)...) |
| 1244 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 1245 | // Only add these extra dependencies if the module depends on framework libs. This avoids |
| 1246 | // creating a cyclic dependency: |
| 1247 | // e.g. framework-res -> org.apache.http.legacy -> ... -> framework-res. |
| 1248 | if hasFrameworkLibs { |
Ulya Trafimovich | 0b1c70e | 2021-08-20 15:39:12 +0100 | [diff] [blame] | 1249 | // Add implicit <uses-library> dependencies on compatibility libraries. Some of them are |
| 1250 | // optional, and some required --- this depends on the most common usage of the library |
| 1251 | // and may be wrong for some apps (they need explicit `uses_libs`/`optional_uses_libs`). |
| 1252 | |
| 1253 | compat28OptTag := makeUsesLibraryDependencyTag(28, true, true) |
| 1254 | ctx.AddVariationDependencies(nil, compat28OptTag, dexpreopt.OptionalCompatUsesLibs28...) |
| 1255 | |
| 1256 | compat29ReqTag := makeUsesLibraryDependencyTag(29, false, true) |
| 1257 | ctx.AddVariationDependencies(nil, compat29ReqTag, dexpreopt.CompatUsesLibs29...) |
| 1258 | |
| 1259 | compat30OptTag := makeUsesLibraryDependencyTag(30, true, true) |
| 1260 | ctx.AddVariationDependencies(nil, compat30OptTag, dexpreopt.OptionalCompatUsesLibs30...) |
Colin Cross | 3245b2c | 2019-06-07 13:18:09 -0700 | [diff] [blame] | 1261 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1262 | } |
| 1263 | } |
| 1264 | |
| 1265 | // presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the |
| 1266 | // build. |
| 1267 | func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string { |
| 1268 | optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries()) |
| 1269 | return optionalUsesLibs |
| 1270 | } |
| 1271 | |
Ulya Trafimovich | eea486a | 2021-02-26 11:38:21 +0000 | [diff] [blame] | 1272 | // Helper function to replace string in a list. |
| 1273 | func replaceInList(list []string, oldstr, newstr string) { |
| 1274 | for i, str := range list { |
| 1275 | if str == oldstr { |
| 1276 | list[i] = newstr |
| 1277 | } |
| 1278 | } |
| 1279 | } |
| 1280 | |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1281 | // Returns a map of module names of shared library dependencies to the paths to their dex jars on |
| 1282 | // host and on device. |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 1283 | func (u *usesLibrary) classLoaderContextForUsesLibDeps(ctx android.ModuleContext) dexpreopt.ClassLoaderContextMap { |
| 1284 | clcMap := make(dexpreopt.ClassLoaderContextMap) |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1285 | |
| 1286 | // Skip when UnbundledBuild() is true, but UnbundledBuildImage() is false. With |
| 1287 | // UnbundledBuildImage() it is necessary to generate dexpreopt.config for post-dexpreopting. |
| 1288 | if ctx.Config().UnbundledBuild() && !ctx.Config().UnbundledBuildImage() { |
| 1289 | return clcMap |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1290 | } |
| 1291 | |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1292 | ctx.VisitDirectDeps(func(m android.Module) { |
| 1293 | tag, isUsesLibTag := ctx.OtherModuleDependencyTag(m).(usesLibraryDependencyTag) |
| 1294 | if !isUsesLibTag { |
| 1295 | return |
| 1296 | } |
| 1297 | |
Ulya Trafimovich | e14f80b | 2021-07-15 15:05:48 +0100 | [diff] [blame] | 1298 | dep := android.RemoveOptionalPrebuiltPrefix(ctx.OtherModuleName(m)) |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1299 | |
Ulya Trafimovich | 840efb6 | 2021-07-15 14:34:40 +0100 | [diff] [blame] | 1300 | // Skip stub libraries. A dependency on the implementation library has been added earlier, |
| 1301 | // so it will be added to CLC, but the stub shouldn't be. Stub libraries can be distingushed |
| 1302 | // from implementation libraries by their name, which is different as it has a suffix. |
| 1303 | if comp, ok := m.(SdkLibraryComponentDependency); ok { |
| 1304 | if impl := comp.OptionalSdkLibraryImplementation(); impl != nil && *impl != dep { |
| 1305 | return |
| 1306 | } |
| 1307 | } |
| 1308 | |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1309 | if lib, ok := m.(UsesLibraryDependency); ok { |
Ulya Trafimovich | e14f80b | 2021-07-15 15:05:48 +0100 | [diff] [blame] | 1310 | libName := dep |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1311 | if ulib, ok := m.(ProvidesUsesLib); ok && ulib.ProvidesUsesLib() != nil { |
Ulya Trafimovich | e14f80b | 2021-07-15 15:05:48 +0100 | [diff] [blame] | 1312 | libName = *ulib.ProvidesUsesLib() |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1313 | // Replace module name with library name in `uses_libs`/`optional_uses_libs` in |
| 1314 | // order to pass verify_uses_libraries check (which compares these properties |
| 1315 | // against library names written in the manifest). |
| 1316 | replaceInList(u.usesLibraryProperties.Uses_libs, dep, libName) |
| 1317 | replaceInList(u.usesLibraryProperties.Optional_uses_libs, dep, libName) |
| 1318 | } |
Ulya Trafimovich | 0b1c70e | 2021-08-20 15:39:12 +0100 | [diff] [blame] | 1319 | clcMap.AddContext(ctx, tag.sdkVersion, libName, tag.optional, tag.implicit, |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 1320 | lib.DexJarBuildPath().PathOrNil(), lib.DexJarInstallPath(), |
| 1321 | lib.ClassLoaderContexts()) |
Ulya Trafimovich | 2444671 | 2021-07-15 14:59:34 +0100 | [diff] [blame] | 1322 | } else if ctx.Config().AllowMissingDependencies() { |
| 1323 | ctx.AddMissingDependencies([]string{dep}) |
| 1324 | } else { |
| 1325 | ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library", dep) |
| 1326 | } |
| 1327 | }) |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 1328 | return clcMap |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1329 | } |
| 1330 | |
| 1331 | // enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs |
| 1332 | // properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true |
| 1333 | // unconditionally in the future. |
| 1334 | func (u *usesLibrary) enforceUsesLibraries() bool { |
| 1335 | defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 || |
| 1336 | len(u.usesLibraryProperties.Optional_uses_libs) > 0 |
Ulya Trafimovich | 22890c4 | 2021-01-05 12:04:17 +0000 | [diff] [blame] | 1337 | return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, u.enforce || defaultEnforceUsesLibs) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1338 | } |
| 1339 | |
Ulya Trafimovich | fc24ad3 | 2020-08-19 16:32:54 +0100 | [diff] [blame] | 1340 | // Freeze the value of `enforce_uses_libs` based on the current values of `uses_libs` and `optional_uses_libs`. |
| 1341 | func (u *usesLibrary) freezeEnforceUsesLibraries() { |
| 1342 | enforce := u.enforceUsesLibraries() |
| 1343 | u.usesLibraryProperties.Enforce_uses_libs = &enforce |
| 1344 | } |
| 1345 | |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1346 | // verifyUsesLibraries checks the <uses-library> tags in the manifest against the ones specified |
| 1347 | // in the `uses_libs`/`optional_uses_libs` properties. The input can be either an XML manifest, or |
| 1348 | // an APK with the manifest embedded in it (manifest_check will know which one it is by the file |
| 1349 | // extension: APKs are supposed to end with '.apk'). |
| 1350 | func (u *usesLibrary) verifyUsesLibraries(ctx android.ModuleContext, inputFile android.Path, |
Ulya Trafimovich | a76d660 | 2021-03-16 15:34:50 +0000 | [diff] [blame] | 1351 | outputFile android.WritablePath) android.Path { |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1352 | |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 1353 | statusFile := dexpreopt.UsesLibrariesStatusFile(ctx) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1354 | |
Ulya Trafimovich | 6e55ef1 | 2021-03-04 12:37:50 +0000 | [diff] [blame] | 1355 | // Disable verify_uses_libraries check if dexpreopt is globally disabled. Without dexpreopt the |
| 1356 | // check is not necessary, and although it is good to have, it is difficult to maintain on |
| 1357 | // non-linux build platforms where dexpreopt is generally disabled (the check may fail due to |
| 1358 | // various unrelated reasons, such as a failure to get manifest from an APK). |
Ulya Trafimovich | 39dd0a4 | 2021-03-29 14:57:34 +0100 | [diff] [blame] | 1359 | global := dexpreopt.GetGlobalConfig(ctx) |
| 1360 | if global.DisablePreopt || global.OnlyPreoptBootImageAndSystemServer { |
Ulya Trafimovich | a76d660 | 2021-03-16 15:34:50 +0000 | [diff] [blame] | 1361 | return inputFile |
Ulya Trafimovich | 6e55ef1 | 2021-03-04 12:37:50 +0000 | [diff] [blame] | 1362 | } |
| 1363 | |
Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 1364 | rule := android.NewRuleBuilder(pctx, ctx) |
| 1365 | cmd := rule.Command().BuiltTool("manifest_check"). |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1366 | Flag("--enforce-uses-libraries"). |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1367 | Input(inputFile). |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 1368 | FlagWithOutput("--enforce-uses-libraries-status ", statusFile). |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1369 | FlagWithInput("--aapt ", ctx.Config().HostToolPath(ctx, "aapt")) |
| 1370 | |
| 1371 | if outputFile != nil { |
| 1372 | cmd.FlagWithOutput("-o ", outputFile) |
| 1373 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1374 | |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 1375 | if dexpreopt.GetGlobalConfig(ctx).RelaxUsesLibraryCheck { |
| 1376 | cmd.Flag("--enforce-uses-libraries-relax") |
| 1377 | } |
| 1378 | |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1379 | for _, lib := range u.usesLibraryProperties.Uses_libs { |
| 1380 | cmd.FlagWithArg("--uses-library ", lib) |
| 1381 | } |
| 1382 | |
| 1383 | for _, lib := range u.usesLibraryProperties.Optional_uses_libs { |
| 1384 | cmd.FlagWithArg("--optional-uses-library ", lib) |
| 1385 | } |
| 1386 | |
Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 1387 | rule.Build("verify_uses_libraries", "verify <uses-library>") |
Ulya Trafimovich | a76d660 | 2021-03-16 15:34:50 +0000 | [diff] [blame] | 1388 | return outputFile |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1389 | } |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1390 | |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1391 | // verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against |
| 1392 | // the build system and returns the path to a copy of the manifest. |
| 1393 | func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path { |
| 1394 | outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml") |
Ulya Trafimovich | a76d660 | 2021-03-16 15:34:50 +0000 | [diff] [blame] | 1395 | return u.verifyUsesLibraries(ctx, manifest, outputFile) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1396 | } |
| 1397 | |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1398 | // verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the build |
| 1399 | // system and returns the path to a copy of the APK. |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1400 | func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path { |
Ulya Trafimovich | 0aba252 | 2021-03-03 16:38:37 +0000 | [diff] [blame] | 1401 | u.verifyUsesLibraries(ctx, apk, nil) // for APKs manifest_check does not write output file |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1402 | outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base()) |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 1403 | return outputFile |
| 1404 | } |
Rupert Shuttleworth | 5c4881c | 2021-07-28 06:21:31 -0400 | [diff] [blame] | 1405 | |
| 1406 | // For Bazel / bp2build |
| 1407 | |
| 1408 | type bazelAndroidAppCertificateAttributes struct { |
| 1409 | Certificate string |
| 1410 | } |
| 1411 | |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 1412 | func (m *AndroidAppCertificate) ConvertWithBp2build(ctx android.TopDownMutatorContext) { |
| 1413 | androidAppCertificateBp2Build(ctx, m) |
Rupert Shuttleworth | 5c4881c | 2021-07-28 06:21:31 -0400 | [diff] [blame] | 1414 | } |
| 1415 | |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 1416 | func androidAppCertificateBp2Build(ctx android.TopDownMutatorContext, module *AndroidAppCertificate) { |
Rupert Shuttleworth | 5c4881c | 2021-07-28 06:21:31 -0400 | [diff] [blame] | 1417 | var certificate string |
| 1418 | if module.properties.Certificate != nil { |
| 1419 | certificate = *module.properties.Certificate |
| 1420 | } |
| 1421 | |
| 1422 | attrs := &bazelAndroidAppCertificateAttributes{ |
| 1423 | Certificate: certificate, |
| 1424 | } |
| 1425 | |
| 1426 | props := bazel.BazelTargetModuleProperties{ |
| 1427 | Rule_class: "android_app_certificate", |
| 1428 | Bzl_load_location: "//build/bazel/rules:android_app_certificate.bzl", |
| 1429 | } |
| 1430 | |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 447f6c9 | 2021-08-31 20:30:36 +0000 | [diff] [blame] | 1431 | ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: module.Name()}, attrs) |
Rupert Shuttleworth | 5c4881c | 2021-07-28 06:21:31 -0400 | [diff] [blame] | 1432 | } |
Romain Jobredeaux | 1282c42 | 2021-10-29 10:52:59 -0400 | [diff] [blame] | 1433 | |
| 1434 | type bazelAndroidAppAttributes struct { |
Romain Jobredeaux | e8acade | 2022-02-02 12:16:58 -0500 | [diff] [blame^] | 1435 | *javaLibraryAttributes |
Romain Jobredeaux | 1282c42 | 2021-10-29 10:52:59 -0400 | [diff] [blame] | 1436 | Manifest bazel.Label |
| 1437 | Custom_package *string |
| 1438 | Resource_files bazel.LabelListAttribute |
| 1439 | } |
| 1440 | |
Liz Kammer | be46fcc | 2021-11-01 15:32:43 -0400 | [diff] [blame] | 1441 | // ConvertWithBp2build is used to convert android_app to Bazel. |
| 1442 | func (a *AndroidApp) ConvertWithBp2build(ctx android.TopDownMutatorContext) { |
Romain Jobredeaux | e8acade | 2022-02-02 12:16:58 -0500 | [diff] [blame^] | 1443 | libAttrs := a.convertLibraryAttrsBp2Build(ctx) |
Romain Jobredeaux | 1282c42 | 2021-10-29 10:52:59 -0400 | [diff] [blame] | 1444 | |
| 1445 | manifest := proptools.StringDefault(a.aaptProperties.Manifest, "AndroidManifest.xml") |
| 1446 | |
| 1447 | resourceFiles := bazel.LabelList{ |
| 1448 | Includes: []bazel.Label{}, |
| 1449 | } |
| 1450 | for _, dir := range android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Resource_dirs, "res") { |
| 1451 | files := android.RootToModuleRelativePaths(ctx, androidResourceGlob(ctx, dir)) |
| 1452 | resourceFiles.Includes = append(resourceFiles.Includes, files...) |
| 1453 | } |
| 1454 | |
| 1455 | attrs := &bazelAndroidAppAttributes{ |
Romain Jobredeaux | e8acade | 2022-02-02 12:16:58 -0500 | [diff] [blame^] | 1456 | libAttrs, |
| 1457 | android.BazelLabelForModuleSrcSingle(ctx, manifest), |
Romain Jobredeaux | 1282c42 | 2021-10-29 10:52:59 -0400 | [diff] [blame] | 1458 | // TODO(b/209576404): handle package name override by product variable PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES |
Romain Jobredeaux | e8acade | 2022-02-02 12:16:58 -0500 | [diff] [blame^] | 1459 | a.overridableAppProperties.Package_name, |
| 1460 | bazel.MakeLabelListAttribute(resourceFiles), |
Romain Jobredeaux | 1282c42 | 2021-10-29 10:52:59 -0400 | [diff] [blame] | 1461 | } |
| 1462 | props := bazel.BazelTargetModuleProperties{Rule_class: "android_binary", |
| 1463 | Bzl_load_location: "@rules_android//rules:rules.bzl"} |
| 1464 | |
| 1465 | ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: a.Name()}, attrs) |
| 1466 | |
| 1467 | } |