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 | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 20 | "path/filepath" |
| 21 | "strings" |
| 22 | |
Colin Cross | 76b5f0c | 2017-08-29 16:02:06 -0700 | [diff] [blame] | 23 | "github.com/google/blueprint/proptools" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 24 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 25 | "android/soong/android" |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 26 | ) |
| 27 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 28 | func init() { |
| 29 | android.RegisterPreSingletonType("overlay", OverlaySingletonFactory) |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 30 | android.RegisterModuleType("android_app", AndroidAppFactory) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 31 | } |
| 32 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 33 | // AAR prebuilts |
| 34 | // AndroidManifest.xml merging |
| 35 | // package splits |
| 36 | |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 37 | type androidAppProperties struct { |
| 38 | // path to a certificate, or the name of a certificate in the default |
| 39 | // certificate directory, or blank to use the default product certificate |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 40 | Certificate *string |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 41 | |
| 42 | // paths to extra certificates to sign the apk with |
| 43 | Additional_certificates []string |
| 44 | |
| 45 | // If set, create package-export.apk, which other packages can |
| 46 | // use to get PRODUCT-agnostic resource data like IDs and type definitions. |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 47 | Export_package_resources *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 48 | |
| 49 | // flags passed to aapt when creating the apk |
| 50 | Aaptflags []string |
| 51 | |
| 52 | // list of resource labels to generate individual resource packages |
| 53 | Package_splits []string |
| 54 | |
| 55 | // list of directories relative to the Blueprints file containing assets. |
| 56 | // Defaults to "assets" |
| 57 | Asset_dirs []string |
| 58 | |
| 59 | // list of directories relative to the Blueprints file containing |
Colin Cross | 86a63ff | 2017-09-27 17:33:10 -0700 | [diff] [blame] | 60 | // Android resources |
| 61 | Resource_dirs []string |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 62 | |
| 63 | Instrumentation_for *string |
Colin Cross | 1605606 | 2017-12-13 22:46:28 -0800 | [diff] [blame] | 64 | |
| 65 | // Specifies that this app should be installed to the priv-app directory, |
| 66 | // where the system will grant it additional privileges not available to |
| 67 | // normal apps. |
| 68 | Privileged *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 71 | type AndroidApp struct { |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 72 | Module |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 73 | |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 74 | appProperties androidAppProperties |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 75 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 76 | aaptSrcJar android.Path |
| 77 | exportPackage android.Path |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 78 | rroDirs android.Paths |
| 79 | manifestPath android.Path |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame^] | 80 | certificate certificate |
| 81 | } |
| 82 | |
| 83 | type certificate struct { |
| 84 | pem, key android.Path |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 87 | func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 88 | a.Module.deps(ctx) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 89 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 90 | if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) { |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 91 | switch String(a.deviceProperties.Sdk_version) { // TODO: Res_sdk_version? |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 92 | case "current", "system_current", "test_current", "": |
Colin Cross | be1da47 | 2017-07-07 15:59:46 -0700 | [diff] [blame] | 93 | ctx.AddDependency(ctx.Module(), frameworkResTag, "framework-res") |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 94 | default: |
| 95 | // We'll already have a dependency on an sdk prebuilt android.jar |
| 96 | } |
| 97 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 100 | func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 101 | linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, manifestPath := a.aapt2Flags(ctx) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 102 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 103 | packageRes := android.PathForModuleOut(ctx, "package-res.apk") |
| 104 | srcJar := android.PathForModuleGen(ctx, "R.jar") |
| 105 | proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options") |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 106 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 107 | var compiledRes, compiledOverlay android.Paths |
| 108 | for _, dir := range resDirs { |
| 109 | compiledRes = append(compiledRes, aapt2Compile(ctx, dir.dir, dir.files).Paths()...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 110 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 111 | for _, dir := range overlayDirs { |
| 112 | compiledOverlay = append(compiledOverlay, aapt2Compile(ctx, dir.dir, dir.files).Paths()...) |
| 113 | } |
| 114 | |
| 115 | aapt2Link(ctx, packageRes, srcJar, proguardOptionsFile, |
| 116 | linkFlags, linkDeps, compiledRes, compiledOverlay) |
| 117 | |
| 118 | a.exportPackage = packageRes |
| 119 | a.aaptSrcJar = srcJar |
| 120 | |
| 121 | ctx.CheckbuildFile(proguardOptionsFile) |
| 122 | ctx.CheckbuildFile(a.exportPackage) |
| 123 | ctx.CheckbuildFile(a.aaptSrcJar) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 124 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 125 | // apps manifests are handled by aapt, don't let Module see them |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 126 | a.properties.Manifest = nil |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 127 | |
| 128 | //if !ctx.ContainsProperty("proguard.enabled") { |
| 129 | // a.properties.Proguard.Enabled = true |
| 130 | //} |
| 131 | |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 132 | if String(a.appProperties.Instrumentation_for) == "" { |
| 133 | a.properties.Instrument = true |
| 134 | } |
| 135 | |
| 136 | if ctx.ModuleName() != "framework-res" { |
| 137 | a.Module.compile(ctx, a.aaptSrcJar) |
| 138 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 139 | |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame^] | 140 | c := String(a.appProperties.Certificate) |
| 141 | switch { |
| 142 | case c == "": |
| 143 | pem, key := ctx.Config().DefaultAppCertificate(ctx) |
| 144 | a.certificate = certificate{pem, key} |
| 145 | case strings.ContainsRune(c, '/'): |
| 146 | a.certificate = certificate{ |
| 147 | android.PathForSource(ctx, c+".x509.pem"), |
| 148 | android.PathForSource(ctx, c+".pk8"), |
| 149 | } |
| 150 | default: |
| 151 | defaultDir := ctx.Config().DefaultAppCertificateDir(ctx) |
| 152 | a.certificate = certificate{ |
| 153 | defaultDir.Join(ctx, c+".x509.pem"), |
| 154 | defaultDir.Join(ctx, c+".pk8"), |
| 155 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame^] | 158 | certificates := []certificate{a.certificate} |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 159 | for _, c := range a.appProperties.Additional_certificates { |
Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame^] | 160 | certificates = append(certificates, certificate{ |
| 161 | android.PathForSource(ctx, c+".x509.pem"), |
| 162 | android.PathForSource(ctx, c+".pk8"), |
| 163 | }) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 166 | packageFile := android.PathForModuleOut(ctx, "package.apk") |
| 167 | |
| 168 | CreateAppPackage(ctx, packageFile, a.exportPackage, a.outputFile, certificates) |
| 169 | |
| 170 | a.outputFile = packageFile |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 171 | a.rroDirs = rroDirs |
| 172 | a.manifestPath = manifestPath |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 173 | |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 174 | if ctx.ModuleName() == "framework-res" { |
| 175 | // framework-res.apk is installed as system/framework/framework-res.apk |
| 176 | ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"), ctx.ModuleName()+".apk", a.outputFile) |
Colin Cross | 1605606 | 2017-12-13 22:46:28 -0800 | [diff] [blame] | 177 | } else if Bool(a.appProperties.Privileged) { |
| 178 | ctx.InstallFile(android.PathForModuleInstall(ctx, "priv-app"), ctx.ModuleName()+".apk", a.outputFile) |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 179 | } else { |
| 180 | ctx.InstallFile(android.PathForModuleInstall(ctx, "app"), ctx.ModuleName()+".apk", a.outputFile) |
| 181 | } |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | var aaptIgnoreFilenames = []string{ |
| 185 | ".svn", |
| 186 | ".git", |
| 187 | ".ds_store", |
| 188 | "*.scc", |
| 189 | ".*", |
| 190 | "CVS", |
| 191 | "thumbs.db", |
| 192 | "picasa.ini", |
| 193 | "*~", |
| 194 | } |
| 195 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 196 | type globbedResourceDir struct { |
| 197 | dir android.Path |
| 198 | files android.Paths |
| 199 | } |
| 200 | |
| 201 | func (a *AndroidApp) aapt2Flags(ctx android.ModuleContext) (flags []string, deps android.Paths, |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 202 | resDirs, overlayDirs []globbedResourceDir, rroDirs android.Paths, manifestPath android.Path) { |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 203 | |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 204 | hasVersionCode := false |
| 205 | hasVersionName := false |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 206 | hasProduct := false |
| 207 | for _, f := range a.appProperties.Aaptflags { |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 208 | if strings.HasPrefix(f, "--version-code") { |
| 209 | hasVersionCode = true |
| 210 | } else if strings.HasPrefix(f, "--version-name") { |
| 211 | hasVersionName = true |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 212 | } else if strings.HasPrefix(f, "--product") { |
| 213 | hasProduct = true |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 214 | } |
| 215 | } |
| 216 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 217 | var linkFlags []string |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 218 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 219 | // Flags specified in Android.bp |
| 220 | linkFlags = append(linkFlags, a.appProperties.Aaptflags...) |
| 221 | |
| 222 | linkFlags = append(linkFlags, "--no-static-lib-packages") |
| 223 | |
| 224 | // Find implicit or explicit asset and resource dirs |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 225 | assetDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.appProperties.Asset_dirs, "assets") |
Colin Cross | 86a63ff | 2017-09-27 17:33:10 -0700 | [diff] [blame] | 226 | resourceDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.appProperties.Resource_dirs, "res") |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 227 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 228 | var linkDeps android.Paths |
| 229 | |
| 230 | // Glob directories into lists of paths |
| 231 | for _, dir := range resourceDirs { |
| 232 | resDirs = append(resDirs, globbedResourceDir{ |
| 233 | dir: dir, |
| 234 | files: resourceGlob(ctx, dir), |
| 235 | }) |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 236 | resOverlayDirs, resRRODirs := overlayResourceGlob(ctx, dir) |
| 237 | overlayDirs = append(overlayDirs, resOverlayDirs...) |
| 238 | rroDirs = append(rroDirs, resRRODirs...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 239 | } |
| 240 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 241 | var assetFiles android.Paths |
| 242 | for _, dir := range assetDirs { |
| 243 | assetFiles = append(assetFiles, resourceGlob(ctx, dir)...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 246 | // App manifest file |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 247 | var manifestFile string |
| 248 | if a.properties.Manifest == nil { |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 249 | manifestFile = "AndroidManifest.xml" |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 250 | } else { |
| 251 | manifestFile = *a.properties.Manifest |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 252 | } |
| 253 | |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 254 | manifestPath = android.PathForModuleSrc(ctx, manifestFile) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 255 | linkFlags = append(linkFlags, "--manifest "+manifestPath.String()) |
| 256 | linkDeps = append(linkDeps, manifestPath) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 257 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 258 | linkFlags = append(linkFlags, android.JoinWithPrefix(assetDirs.Strings(), "-A ")) |
| 259 | linkDeps = append(linkDeps, assetFiles...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 260 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 261 | // Include dirs |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 262 | ctx.VisitDirectDeps(func(module android.Module) { |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 263 | var depFiles android.Paths |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 264 | if javaDep, ok := module.(Dependency); ok { |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 265 | // TODO: shared android libraries |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 266 | if ctx.OtherModuleName(module) == "framework-res" { |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 267 | depFiles = android.Paths{javaDep.(*AndroidApp).exportPackage} |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 268 | } |
| 269 | } |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 270 | |
| 271 | for _, dep := range depFiles { |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 272 | linkFlags = append(linkFlags, "-I "+dep.String()) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 273 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 274 | linkDeps = append(linkDeps, depFiles...) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 275 | }) |
| 276 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 277 | // SDK version flags |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 278 | sdkVersion := String(a.deviceProperties.Sdk_version) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 279 | switch sdkVersion { |
| 280 | case "", "current", "system_current", "test_current": |
Colin Cross | 42f3a76 | 2017-12-02 16:14:26 -0800 | [diff] [blame] | 281 | sdkVersion = proptools.NinjaEscape([]string{ctx.Config().AppsDefaultVersionName()})[0] |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 284 | linkFlags = append(linkFlags, "--min-sdk-version "+sdkVersion) |
| 285 | linkFlags = append(linkFlags, "--target-sdk-version "+sdkVersion) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 286 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 287 | // Product characteristics |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 288 | if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 { |
| 289 | linkFlags = append(linkFlags, "--product", ctx.Config().ProductAAPTCharacteristics()) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | // Product AAPT config |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 293 | for _, aaptConfig := range ctx.Config().ProductAAPTConfig() { |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 294 | linkFlags = append(linkFlags, "-c", aaptConfig) |
| 295 | } |
| 296 | |
| 297 | // Product AAPT preferred config |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 298 | if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 { |
| 299 | linkFlags = append(linkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig()) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | // Version code |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 303 | if !hasVersionCode { |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 304 | linkFlags = append(linkFlags, "--version-code", ctx.Config().PlatformSdkVersion()) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | if !hasVersionName { |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 308 | versionName := proptools.NinjaEscape([]string{ctx.Config().AppsDefaultVersionName()})[0] |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 309 | linkFlags = append(linkFlags, "--version-name ", versionName) |
| 310 | } |
| 311 | |
| 312 | if String(a.appProperties.Instrumentation_for) != "" { |
| 313 | linkFlags = append(linkFlags, |
| 314 | "--rename-instrumentation-target-package", |
| 315 | String(a.appProperties.Instrumentation_for)) |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | // TODO: LOCAL_PACKAGE_OVERRIDES |
| 319 | // $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \ |
| 320 | |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 321 | return linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, manifestPath |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 324 | func AndroidAppFactory() android.Module { |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 325 | module := &AndroidApp{} |
| 326 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 327 | module.AddProperties( |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 328 | &module.Module.properties, |
| 329 | &module.Module.deviceProperties, |
| 330 | &module.appProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 331 | |
| 332 | android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 333 | return module |
Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 334 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 335 | |
| 336 | func resourceGlob(ctx android.ModuleContext, dir android.Path) android.Paths { |
| 337 | var ret android.Paths |
| 338 | files := ctx.Glob(filepath.Join(dir.String(), "**/*"), aaptIgnoreFilenames) |
| 339 | for _, f := range files { |
| 340 | if isDir, err := ctx.Fs().IsDir(f.String()); err != nil { |
| 341 | ctx.ModuleErrorf("error in IsDir(%s): %s", f.String(), err.Error()) |
| 342 | return nil |
| 343 | } else if !isDir { |
| 344 | ret = append(ret, f) |
| 345 | } |
| 346 | } |
| 347 | return ret |
| 348 | } |
| 349 | |
| 350 | type overlayGlobResult struct { |
| 351 | dir string |
| 352 | paths android.DirectorySortedPaths |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 353 | |
| 354 | // Set to true of the product has selected that values in this overlay should not be moved to |
| 355 | // Runtime Resource Overlay (RRO) packages. |
| 356 | excludeFromRRO bool |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | const overlayDataKey = "overlayDataKey" |
| 360 | |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 361 | func overlayResourceGlob(ctx android.ModuleContext, dir android.Path) (res []globbedResourceDir, |
| 362 | rroDirs android.Paths) { |
| 363 | |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 364 | overlayData := ctx.Config().Get(overlayDataKey).([]overlayGlobResult) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 365 | |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 366 | // Runtime resource overlays (RRO) may be turned on by the product config for some modules |
| 367 | rroEnabled := false |
| 368 | enforceRROTargets := ctx.Config().ProductVariables.EnforceRROTargets |
| 369 | if enforceRROTargets != nil { |
| 370 | if len(*enforceRROTargets) == 1 && (*enforceRROTargets)[0] == "*" { |
| 371 | rroEnabled = true |
| 372 | } else if inList(ctx.ModuleName(), *enforceRROTargets) { |
| 373 | rroEnabled = true |
| 374 | } |
| 375 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 376 | |
| 377 | for _, data := range overlayData { |
| 378 | files := data.paths.PathsInDirectory(filepath.Join(data.dir, dir.String())) |
| 379 | if len(files) > 0 { |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 380 | overlayModuleDir := android.PathForSource(ctx, data.dir, dir.String()) |
| 381 | // If enforce RRO is enabled for this module and this overlay is not in the |
| 382 | // exclusion list, ignore the overlay. The list of ignored overlays will be |
| 383 | // passed to Make to be turned into an RRO package. |
| 384 | if rroEnabled && !data.excludeFromRRO { |
| 385 | rroDirs = append(rroDirs, overlayModuleDir) |
| 386 | } else { |
| 387 | res = append(res, globbedResourceDir{ |
| 388 | dir: overlayModuleDir, |
| 389 | files: files, |
| 390 | }) |
| 391 | } |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 395 | return res, rroDirs |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | func OverlaySingletonFactory() android.Singleton { |
| 399 | return overlaySingleton{} |
| 400 | } |
| 401 | |
| 402 | type overlaySingleton struct{} |
| 403 | |
| 404 | func (overlaySingleton) GenerateBuildActions(ctx android.SingletonContext) { |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 405 | |
| 406 | // Specific overlays may be excluded from Runtime Resource Overlays by the product config |
| 407 | var rroExcludedOverlays []string |
| 408 | if ctx.Config().ProductVariables.EnforceRROExcludedOverlays != nil { |
| 409 | rroExcludedOverlays = *ctx.Config().ProductVariables.EnforceRROExcludedOverlays |
| 410 | } |
| 411 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 412 | var overlayData []overlayGlobResult |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 413 | for _, overlay := range ctx.Config().ResourceOverlays() { |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 414 | var result overlayGlobResult |
| 415 | result.dir = overlay |
Colin Cross | 890ff55 | 2017-11-30 20:13:19 -0800 | [diff] [blame] | 416 | |
| 417 | // Mark overlays that will not have Runtime Resource Overlays enforced on them |
| 418 | for _, exclude := range rroExcludedOverlays { |
| 419 | if strings.HasPrefix(overlay, exclude) { |
| 420 | result.excludeFromRRO = true |
| 421 | } |
| 422 | } |
| 423 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 424 | files, err := ctx.GlobWithDeps(filepath.Join(overlay, "**/*"), aaptIgnoreFilenames) |
| 425 | if err != nil { |
| 426 | ctx.Errorf("failed to glob resource dir %q: %s", overlay, err.Error()) |
| 427 | continue |
| 428 | } |
| 429 | var paths android.Paths |
| 430 | for _, f := range files { |
| 431 | if isDir, err := ctx.Fs().IsDir(f); err != nil { |
| 432 | ctx.Errorf("error in IsDir(%s): %s", f, err.Error()) |
| 433 | return |
| 434 | } else if !isDir { |
| 435 | paths = append(paths, android.PathForSource(ctx, f)) |
| 436 | } |
| 437 | } |
| 438 | result.paths = android.PathsToDirectorySortedPaths(paths) |
| 439 | overlayData = append(overlayData, result) |
| 440 | } |
| 441 | |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 442 | ctx.Config().Once(overlayDataKey, func() interface{} { |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 443 | return overlayData |
| 444 | }) |
| 445 | } |