Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 1 | // Copyright 2015 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package java |
| 16 | |
| 17 | // This file contains the module types for compiling Android apps. |
| 18 | |
| 19 | import ( |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 20 | "path/filepath" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 21 | "strings" |
| 22 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 23 | "github.com/google/blueprint" |
Colin Cross | 76b5f0c | 2017-08-29 16:02:06 -0700 | [diff] [blame] | 24 | "github.com/google/blueprint/proptools" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 25 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 26 | "android/soong/android" |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 27 | "android/soong/cc" |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 28 | "android/soong/tradefed" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 29 | ) |
| 30 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 31 | func init() { |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 32 | android.RegisterModuleType("android_app", AndroidAppFactory) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 33 | android.RegisterModuleType("android_test", AndroidTestFactory) |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 34 | android.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 35 | android.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 36 | } |
| 37 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 38 | // AndroidManifest.xml merging |
| 39 | // package splits |
| 40 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 41 | type appProperties struct { |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 42 | // The name of a certificate in the default certificate directory, blank to use the default product certificate, |
| 43 | // or an android_app_certificate module name in the form ":module". |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 44 | Certificate *string |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 45 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 46 | // 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] | 47 | Additional_certificates []string |
| 48 | |
| 49 | // If set, create package-export.apk, which other packages can |
| 50 | // use to get PRODUCT-agnostic resource data like IDs and type definitions. |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 51 | Export_package_resources *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 52 | |
Colin Cross | 1605606 | 2017-12-13 22:46:28 -0800 | [diff] [blame] | 53 | // Specifies that this app should be installed to the priv-app directory, |
| 54 | // where the system will grant it additional privileges not available to |
| 55 | // normal apps. |
| 56 | Privileged *bool |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 57 | |
| 58 | // list of resource labels to generate individual resource packages |
| 59 | Package_splits []string |
Jason Monk | d4122be | 2018-08-10 09:33:36 -0400 | [diff] [blame] | 60 | |
| 61 | // Names of modules to be overridden. Listed modules can only be other binaries |
| 62 | // (in Make or Soong). |
| 63 | // This does not completely prevent installation of the overridden binaries, but if both |
| 64 | // binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will be removed |
| 65 | // from PRODUCT_PACKAGES. |
| 66 | Overrides []string |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 67 | |
| 68 | // list of native libraries that will be provided in or alongside the resulting jar |
| 69 | Jni_libs []string `android:"arch_variant"` |
| 70 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 71 | EmbedJNI bool `blueprint:"mutated"` |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 74 | type AndroidApp struct { |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 75 | Library |
| 76 | aapt |
| 77 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 78 | certificate Certificate |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 79 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 80 | appProperties appProperties |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 81 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 82 | installJniLibs []jniLib |
Colin Cross | f623721 | 2018-10-29 23:14:58 -0700 | [diff] [blame] | 83 | |
| 84 | bundleFile android.Path |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 85 | } |
| 86 | |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 87 | func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths { |
| 88 | return nil |
| 89 | } |
| 90 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 91 | func (a *AndroidApp) ExportedStaticPackages() android.Paths { |
| 92 | return nil |
| 93 | } |
| 94 | |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 95 | func (a *AndroidApp) ExportedManifest() android.Path { |
| 96 | return a.manifestPath |
| 97 | } |
| 98 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 99 | var _ AndroidLibraryDependency = (*AndroidApp)(nil) |
| 100 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 101 | type Certificate struct { |
| 102 | Pem, Key android.Path |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 105 | func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 106 | a.Module.deps(ctx) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 107 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 108 | if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) { |
Colin Cross | 83bb316 | 2018-06-25 15:48:06 -0700 | [diff] [blame] | 109 | a.aapt.deps(ctx, sdkContext(a)) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 110 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 111 | |
| 112 | for _, jniTarget := range ctx.MultiTargets() { |
| 113 | variation := []blueprint.Variation{ |
| 114 | {Mutator: "arch", Variation: jniTarget.String()}, |
| 115 | {Mutator: "link", Variation: "shared"}, |
| 116 | } |
| 117 | tag := &jniDependencyTag{ |
| 118 | target: jniTarget, |
| 119 | } |
| 120 | ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...) |
| 121 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 122 | |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame^] | 123 | cert := android.SrcIsModule(a.getCertString(ctx)) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 124 | if cert != "" { |
| 125 | ctx.AddDependency(ctx.Module(), certificateTag, cert) |
| 126 | } |
| 127 | |
| 128 | for _, cert := range a.appProperties.Additional_certificates { |
| 129 | cert = android.SrcIsModule(cert) |
| 130 | if cert != "" { |
| 131 | ctx.AddDependency(ctx.Module(), certificateTag, cert) |
| 132 | } else { |
| 133 | ctx.PropertyErrorf("additional_certificates", |
| 134 | `must be names of android_app_certificate modules in the form ":module"`) |
| 135 | } |
| 136 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 139 | func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 140 | a.generateAndroidBuildActions(ctx) |
| 141 | } |
| 142 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 143 | // Returns whether this module should have the dex file stored uncompressed in the APK. |
| 144 | func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool { |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 145 | if ctx.Config().UnbundledBuild() { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 146 | return false |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 149 | // Uncompress dex in APKs of privileged apps, and modules used by privileged apps. |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 150 | return ctx.Config().UncompressPrivAppDex() && |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 151 | (Bool(a.appProperties.Privileged) || |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 152 | inList(ctx.ModuleName(), ctx.Config().ModulesLoadedByPrivilegedModules())) |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 155 | func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 156 | aaptLinkFlags := []string{} |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 157 | |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 158 | // Add TARGET_AAPT_CHARACTERISTICS values to AAPT link flags if they exist and --product flags were not provided. |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 159 | hasProduct := false |
| 160 | for _, f := range a.aaptProperties.Aaptflags { |
| 161 | if strings.HasPrefix(f, "--product") { |
| 162 | hasProduct = true |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 163 | break |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 164 | } |
| 165 | } |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 166 | if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 167 | aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics()) |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 170 | if !Bool(a.aaptProperties.Aapt_include_all_resources) { |
| 171 | // Product AAPT config |
| 172 | for _, aaptConfig := range ctx.Config().ProductAAPTConfig() { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 173 | aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig) |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 174 | } |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 175 | |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 176 | // Product AAPT preferred config |
| 177 | if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 178 | aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig()) |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 179 | } |
Colin Cross | e78dcd3 | 2018-04-19 15:25:19 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 182 | // TODO: LOCAL_PACKAGE_OVERRIDES |
| 183 | // $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \ |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 184 | |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 185 | manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName()) |
| 186 | if overridden { |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 187 | aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName) |
Jiyong Park | 7f67f48 | 2019-01-05 12:57:48 +0900 | [diff] [blame] | 188 | } |
| 189 | |
Jaewoong Jung | de4c02f | 2019-01-22 11:19:56 -0800 | [diff] [blame] | 190 | a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 191 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 192 | // apps manifests are handled by aapt, don't let Module see them |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 193 | a.properties.Manifest = nil |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 194 | |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 195 | var staticLibProguardFlagFiles android.Paths |
| 196 | ctx.VisitDirectDeps(func(m android.Module) { |
| 197 | if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag { |
| 198 | staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...) |
| 199 | } |
| 200 | }) |
| 201 | |
| 202 | staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles) |
| 203 | |
| 204 | a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...) |
| 205 | a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile) |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 206 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 207 | a.deviceProperties.UncompressDex = a.shouldUncompressDex(ctx) |
| 208 | |
| 209 | var installDir string |
| 210 | if ctx.ModuleName() == "framework-res" { |
| 211 | // framework-res.apk is installed as system/framework/framework-res.apk |
| 212 | installDir = "framework" |
| 213 | } else if Bool(a.appProperties.Privileged) { |
| 214 | installDir = filepath.Join("priv-app", ctx.ModuleName()) |
| 215 | } else { |
| 216 | installDir = filepath.Join("app", ctx.ModuleName()) |
| 217 | } |
| 218 | a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, ctx.ModuleName()+".apk") |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 219 | |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 220 | if ctx.ModuleName() != "framework-res" { |
| 221 | a.Module.compile(ctx, a.aaptSrcJar) |
| 222 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 223 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 224 | dexJarFile := a.maybeStrippedDexJarFile |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 225 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 226 | var certificates []Certificate |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 227 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 228 | var jniJarFile android.WritablePath |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 229 | jniLibs, certificateDeps := a.collectAppDeps(ctx) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 230 | if len(jniLibs) > 0 { |
| 231 | embedJni := ctx.Config().UnbundledBuild() || a.appProperties.EmbedJNI |
| 232 | if embedJni { |
| 233 | jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip") |
| 234 | TransformJniLibsToJar(ctx, jniJarFile, jniLibs) |
| 235 | } else { |
| 236 | a.installJniLibs = jniLibs |
| 237 | } |
| 238 | } |
| 239 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 240 | if ctx.Failed() { |
| 241 | return |
| 242 | } |
| 243 | |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame^] | 244 | cert := a.getCertString(ctx) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 245 | certModule := android.SrcIsModule(cert) |
| 246 | if certModule != "" { |
| 247 | a.certificate = certificateDeps[0] |
| 248 | certificateDeps = certificateDeps[1:] |
| 249 | } else if cert != "" { |
| 250 | defaultDir := ctx.Config().DefaultAppCertificateDir(ctx) |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 251 | a.certificate = Certificate{ |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 252 | defaultDir.Join(ctx, cert+".x509.pem"), |
| 253 | defaultDir.Join(ctx, cert+".pk8"), |
| 254 | } |
| 255 | } else { |
| 256 | pem, key := ctx.Config().DefaultAppCertificate(ctx) |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 257 | a.certificate = Certificate{pem, key} |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 260 | certificates = append([]Certificate{a.certificate}, certificateDeps...) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 261 | |
Colin Cross | 5a1af88 | 2019-01-17 14:31:52 -0800 | [diff] [blame] | 262 | packageFile := android.PathForModuleOut(ctx, ctx.ModuleName()+".apk") |
Colin Cross | 5a0dcd5 | 2018-10-05 14:20:06 -0700 | [diff] [blame] | 263 | CreateAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates) |
Jeongik Cha | c946414 | 2019-01-07 12:07:27 +0900 | [diff] [blame] | 264 | |
| 265 | if !a.Module.Platform() { |
| 266 | certPath := a.certificate.Pem.String() |
| 267 | systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String() |
| 268 | if strings.HasPrefix(certPath, systemCertPath) { |
| 269 | enforceSystemCert := ctx.Config().EnforceSystemCertificate() |
| 270 | whitelist := ctx.Config().EnforceSystemCertificateWhitelist() |
| 271 | |
| 272 | if enforceSystemCert && !inList(a.Module.Name(), whitelist) { |
| 273 | ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.") |
| 274 | } |
| 275 | } |
| 276 | } |
| 277 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 278 | a.outputFile = packageFile |
| 279 | |
Colin Cross | f623721 | 2018-10-29 23:14:58 -0700 | [diff] [blame] | 280 | bundleFile := android.PathForModuleOut(ctx, "base.zip") |
| 281 | BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile) |
| 282 | a.bundleFile = bundleFile |
| 283 | |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 284 | if ctx.ModuleName() == "framework-res" { |
| 285 | // framework-res.apk is installed as system/framework/framework-res.apk |
| 286 | ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"), ctx.ModuleName()+".apk", a.outputFile) |
Colin Cross | 1605606 | 2017-12-13 22:46:28 -0800 | [diff] [blame] | 287 | } else if Bool(a.appProperties.Privileged) { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 288 | ctx.InstallFile(android.PathForModuleInstall(ctx, "priv-app", ctx.ModuleName()), ctx.ModuleName()+".apk", a.outputFile) |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 289 | } else { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 290 | ctx.InstallFile(android.PathForModuleInstall(ctx, "app", ctx.ModuleName()), ctx.ModuleName()+".apk", a.outputFile) |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 291 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 294 | func (a *AndroidApp) collectAppDeps(ctx android.ModuleContext) ([]jniLib, []Certificate) { |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 295 | var jniLibs []jniLib |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 296 | var certificates []Certificate |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 297 | |
| 298 | ctx.VisitDirectDeps(func(module android.Module) { |
| 299 | otherName := ctx.OtherModuleName(module) |
| 300 | tag := ctx.OtherModuleDependencyTag(module) |
| 301 | |
| 302 | if jniTag, ok := tag.(*jniDependencyTag); ok { |
| 303 | if dep, ok := module.(*cc.Module); ok { |
| 304 | lib := dep.OutputFile() |
| 305 | if lib.Valid() { |
| 306 | jniLibs = append(jniLibs, jniLib{ |
| 307 | name: ctx.OtherModuleName(module), |
| 308 | path: lib.Path(), |
| 309 | target: jniTag.target, |
| 310 | }) |
| 311 | } else { |
| 312 | ctx.ModuleErrorf("dependency %q missing output file", otherName) |
| 313 | } |
| 314 | } else { |
| 315 | ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName) |
| 316 | |
| 317 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 318 | } else if tag == certificateTag { |
| 319 | if dep, ok := module.(*AndroidAppCertificate); ok { |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 320 | certificates = append(certificates, dep.Certificate) |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 321 | } else { |
| 322 | ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName) |
| 323 | } |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 324 | } |
| 325 | }) |
| 326 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 327 | return jniLibs, certificates |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 328 | } |
| 329 | |
Jaewoong Jung | 2ad817c | 2019-01-18 14:27:16 -0800 | [diff] [blame^] | 330 | func (a *AndroidApp) getCertString(ctx android.BaseContext) string { |
| 331 | certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName()) |
| 332 | if overridden { |
| 333 | return ":" + certificate |
| 334 | } |
| 335 | return String(a.appProperties.Certificate) |
| 336 | } |
| 337 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 338 | func AndroidAppFactory() android.Module { |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 339 | module := &AndroidApp{} |
| 340 | |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 341 | module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true) |
| 342 | module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true) |
| 343 | |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 344 | module.Module.properties.Instrument = true |
Colin Cross | 9ae1b92 | 2018-06-26 17:59:05 -0700 | [diff] [blame] | 345 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 346 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 347 | module.AddProperties( |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 348 | &module.Module.properties, |
| 349 | &module.Module.deviceProperties, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 350 | &module.Module.dexpreoptProperties, |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 351 | &module.Module.protoProperties, |
| 352 | &module.aaptProperties, |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 353 | &module.appProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 354 | |
Colin Cross | a9d8bee | 2018-10-02 13:59:46 -0700 | [diff] [blame] | 355 | module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool { |
| 356 | return class == android.Device && ctx.Config().DevicePrefer32BitApps() |
| 357 | }) |
| 358 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 359 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 360 | android.InitDefaultableModule(module) |
| 361 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 362 | return module |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 363 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 364 | |
| 365 | type appTestProperties struct { |
| 366 | Instrumentation_for *string |
| 367 | } |
| 368 | |
| 369 | type AndroidTest struct { |
| 370 | AndroidApp |
| 371 | |
| 372 | appTestProperties appTestProperties |
| 373 | |
| 374 | testProperties testProperties |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 375 | |
| 376 | testConfig android.Path |
Colin Cross | d96ca35 | 2018-08-10 16:06:24 -0700 | [diff] [blame] | 377 | data android.Paths |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 381 | a.generateAndroidBuildActions(ctx) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 382 | |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 383 | a.testConfig = tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config, a.testProperties.Test_config_template, a.manifestPath) |
Colin Cross | d96ca35 | 2018-08-10 16:06:24 -0700 | [diff] [blame] | 384 | a.data = ctx.ExpandSources(a.testProperties.Data, nil) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 388 | android.ExtractSourceDeps(ctx, a.testProperties.Test_config) |
Jack He | 3333889 | 2018-09-19 02:21:28 -0700 | [diff] [blame] | 389 | android.ExtractSourceDeps(ctx, a.testProperties.Test_config_template) |
Colin Cross | d96ca35 | 2018-08-10 16:06:24 -0700 | [diff] [blame] | 390 | android.ExtractSourcesDeps(ctx, a.testProperties.Data) |
Colin Cross | 303e21f | 2018-08-07 16:49:25 -0700 | [diff] [blame] | 391 | a.AndroidApp.DepsMutator(ctx) |
Colin Cross | 4b964c0 | 2018-10-15 16:18:06 -0700 | [diff] [blame] | 392 | if a.appTestProperties.Instrumentation_for != nil { |
| 393 | // The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac, |
| 394 | // but not added to the aapt2 link includes like a normal android_app or android_library dependency, so |
| 395 | // use instrumentationForTag instead of libTag. |
| 396 | ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for)) |
| 397 | } |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | func AndroidTestFactory() android.Module { |
| 401 | module := &AndroidTest{} |
| 402 | |
| 403 | module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true) |
Colin Cross | 5067db9 | 2018-09-17 16:46:35 -0700 | [diff] [blame] | 404 | |
| 405 | module.Module.properties.Instrument = true |
Colin Cross | 9ae1b92 | 2018-06-26 17:59:05 -0700 | [diff] [blame] | 406 | module.Module.properties.Installable = proptools.BoolPtr(true) |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 407 | module.appProperties.EmbedJNI = true |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 408 | module.Module.dexpreopter.isTest = true |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 409 | |
| 410 | module.AddProperties( |
| 411 | &module.Module.properties, |
| 412 | &module.Module.deviceProperties, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 413 | &module.Module.dexpreoptProperties, |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 414 | &module.Module.protoProperties, |
| 415 | &module.aaptProperties, |
| 416 | &module.appProperties, |
Dan Willemsen | f5531d2 | 2018-07-16 17:21:19 -0700 | [diff] [blame] | 417 | &module.appTestProperties, |
| 418 | &module.testProperties) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 419 | |
Colin Cross | a4f0881 | 2018-10-02 22:03:40 -0700 | [diff] [blame] | 420 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 421 | android.InitDefaultableModule(module) |
Colin Cross | ae5caf5 | 2018-05-22 11:11:52 -0700 | [diff] [blame] | 422 | return module |
| 423 | } |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 424 | |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 425 | type appTestHelperAppProperties struct { |
| 426 | // list of compatibility suites (for example "cts", "vts") that the module should be |
| 427 | // installed into. |
| 428 | Test_suites []string `android:"arch_variant"` |
| 429 | } |
| 430 | |
| 431 | type AndroidTestHelperApp struct { |
| 432 | AndroidApp |
| 433 | |
| 434 | appTestHelperAppProperties appTestHelperAppProperties |
| 435 | } |
| 436 | |
| 437 | func AndroidTestHelperAppFactory() android.Module { |
| 438 | module := &AndroidTestHelperApp{} |
| 439 | |
| 440 | module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true) |
| 441 | |
| 442 | module.Module.properties.Installable = proptools.BoolPtr(true) |
| 443 | module.appProperties.EmbedJNI = true |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 444 | module.Module.dexpreopter.isTest = true |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 445 | |
| 446 | module.AddProperties( |
| 447 | &module.Module.properties, |
| 448 | &module.Module.deviceProperties, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 449 | &module.Module.dexpreoptProperties, |
Colin Cross | 252fc6f | 2018-10-04 15:22:03 -0700 | [diff] [blame] | 450 | &module.Module.protoProperties, |
| 451 | &module.aaptProperties, |
| 452 | &module.appProperties, |
| 453 | &module.appTestHelperAppProperties) |
| 454 | |
| 455 | android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 456 | android.InitDefaultableModule(module) |
| 457 | return module |
| 458 | } |
| 459 | |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 460 | type AndroidAppCertificate struct { |
| 461 | android.ModuleBase |
| 462 | properties AndroidAppCertificateProperties |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 463 | Certificate Certificate |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | type AndroidAppCertificateProperties struct { |
| 467 | // Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name. |
| 468 | Certificate *string |
| 469 | } |
| 470 | |
| 471 | func AndroidAppCertificateFactory() android.Module { |
| 472 | module := &AndroidAppCertificate{} |
| 473 | module.AddProperties(&module.properties) |
| 474 | android.InitAndroidModule(module) |
| 475 | return module |
| 476 | } |
| 477 | |
| 478 | func (c *AndroidAppCertificate) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 479 | } |
| 480 | |
| 481 | func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 482 | cert := String(c.properties.Certificate) |
Jiyong Park | c00cbd9 | 2018-10-30 21:20:05 +0900 | [diff] [blame] | 483 | c.Certificate = Certificate{ |
Colin Cross | bd01e2a | 2018-10-04 15:21:03 -0700 | [diff] [blame] | 484 | android.PathForModuleSrc(ctx, cert+".x509.pem"), |
| 485 | android.PathForModuleSrc(ctx, cert+".pk8"), |
| 486 | } |
| 487 | } |