blob: df53375aeb4b25c6cb16a23b05362ffd6f99987d [file] [log] [blame]
Colin Cross30e076a2015-04-13 13:58:27 -07001// 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
15package java
16
17// This file contains the module types for compiling Android apps.
18
19import (
Colin Cross30e076a2015-04-13 13:58:27 -070020 "path/filepath"
21 "strings"
22
Colin Cross76b5f0c2017-08-29 16:02:06 -070023 "github.com/google/blueprint/proptools"
Colin Cross30e076a2015-04-13 13:58:27 -070024
Colin Cross635c3b02016-05-18 15:37:25 -070025 "android/soong/android"
Colin Cross30e076a2015-04-13 13:58:27 -070026)
27
Colin Cross3bc7ffa2017-11-22 16:19:37 -080028func init() {
29 android.RegisterPreSingletonType("overlay", OverlaySingletonFactory)
Colin Cross5ab4e6d2017-11-22 16:20:45 -080030 android.RegisterModuleType("android_app", AndroidAppFactory)
Colin Cross3bc7ffa2017-11-22 16:19:37 -080031}
32
Colin Cross30e076a2015-04-13 13:58:27 -070033// AAR prebuilts
34// AndroidManifest.xml merging
35// package splits
36
Colin Cross7d5136f2015-05-11 13:39:40 -070037type 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 Zhangea568a42017-11-08 21:20:04 -080040 Certificate *string
Colin Cross7d5136f2015-05-11 13:39:40 -070041
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 Zhangea568a42017-11-08 21:20:04 -080047 Export_package_resources *bool
Colin Cross7d5136f2015-05-11 13:39:40 -070048
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 Cross86a63ff2017-09-27 17:33:10 -070060 // Android resources
61 Resource_dirs []string
Colin Crosscb933592017-11-22 13:49:43 -080062
63 Instrumentation_for *string
Colin Cross16056062017-12-13 22:46:28 -080064
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 Cross7d5136f2015-05-11 13:39:40 -070069}
70
Colin Cross30e076a2015-04-13 13:58:27 -070071type AndroidApp struct {
Colin Cross46c9b8b2017-06-22 16:51:17 -070072 Module
Colin Cross30e076a2015-04-13 13:58:27 -070073
Colin Cross7d5136f2015-05-11 13:39:40 -070074 appProperties androidAppProperties
Colin Cross30e076a2015-04-13 13:58:27 -070075
Colin Cross3bc7ffa2017-11-22 16:19:37 -080076 aaptSrcJar android.Path
77 exportPackage android.Path
Colin Cross890ff552017-11-30 20:13:19 -080078 rroDirs android.Paths
79 manifestPath android.Path
Colin Crosse1731a52017-12-14 11:22:55 -080080 certificate certificate
81}
82
83type certificate struct {
84 pem, key android.Path
Colin Cross30e076a2015-04-13 13:58:27 -070085}
86
Colin Cross46c9b8b2017-06-22 16:51:17 -070087func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
88 a.Module.deps(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -070089
Colin Cross3bc7ffa2017-11-22 16:19:37 -080090 if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) {
Nan Zhangea568a42017-11-08 21:20:04 -080091 switch String(a.deviceProperties.Sdk_version) { // TODO: Res_sdk_version?
Colin Cross5ab4e6d2017-11-22 16:20:45 -080092 case "current", "system_current", "test_current", "":
Colin Crossbe1da472017-07-07 15:59:46 -070093 ctx.AddDependency(ctx.Module(), frameworkResTag, "framework-res")
Colin Cross30e076a2015-04-13 13:58:27 -070094 default:
95 // We'll already have a dependency on an sdk prebuilt android.jar
96 }
97 }
Colin Cross30e076a2015-04-13 13:58:27 -070098}
99
Colin Cross46c9b8b2017-06-22 16:51:17 -0700100func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross890ff552017-11-30 20:13:19 -0800101 linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, manifestPath := a.aapt2Flags(ctx)
Colin Cross30e076a2015-04-13 13:58:27 -0700102
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800103 packageRes := android.PathForModuleOut(ctx, "package-res.apk")
104 srcJar := android.PathForModuleGen(ctx, "R.jar")
105 proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
Colin Cross30e076a2015-04-13 13:58:27 -0700106
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800107 var compiledRes, compiledOverlay android.Paths
108 for _, dir := range resDirs {
109 compiledRes = append(compiledRes, aapt2Compile(ctx, dir.dir, dir.files).Paths()...)
Colin Cross30e076a2015-04-13 13:58:27 -0700110 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800111 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 Cross30e076a2015-04-13 13:58:27 -0700124
Colin Cross46c9b8b2017-06-22 16:51:17 -0700125 // apps manifests are handled by aapt, don't let Module see them
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700126 a.properties.Manifest = nil
Colin Cross30e076a2015-04-13 13:58:27 -0700127
128 //if !ctx.ContainsProperty("proguard.enabled") {
129 // a.properties.Proguard.Enabled = true
130 //}
131
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800132 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 Cross30e076a2015-04-13 13:58:27 -0700139
Colin Crosse1731a52017-12-14 11:22:55 -0800140 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 Cross30e076a2015-04-13 13:58:27 -0700156 }
157
Colin Crosse1731a52017-12-14 11:22:55 -0800158 certificates := []certificate{a.certificate}
Colin Cross30e076a2015-04-13 13:58:27 -0700159 for _, c := range a.appProperties.Additional_certificates {
Colin Crosse1731a52017-12-14 11:22:55 -0800160 certificates = append(certificates, certificate{
161 android.PathForSource(ctx, c+".x509.pem"),
162 android.PathForSource(ctx, c+".pk8"),
163 })
Colin Cross30e076a2015-04-13 13:58:27 -0700164 }
165
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800166 packageFile := android.PathForModuleOut(ctx, "package.apk")
167
168 CreateAppPackage(ctx, packageFile, a.exportPackage, a.outputFile, certificates)
169
170 a.outputFile = packageFile
Colin Cross890ff552017-11-30 20:13:19 -0800171 a.rroDirs = rroDirs
172 a.manifestPath = manifestPath
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800173
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800174 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 Cross16056062017-12-13 22:46:28 -0800177 } else if Bool(a.appProperties.Privileged) {
178 ctx.InstallFile(android.PathForModuleInstall(ctx, "priv-app"), ctx.ModuleName()+".apk", a.outputFile)
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800179 } else {
180 ctx.InstallFile(android.PathForModuleInstall(ctx, "app"), ctx.ModuleName()+".apk", a.outputFile)
181 }
Colin Cross30e076a2015-04-13 13:58:27 -0700182}
183
184var aaptIgnoreFilenames = []string{
185 ".svn",
186 ".git",
187 ".ds_store",
188 "*.scc",
189 ".*",
190 "CVS",
191 "thumbs.db",
192 "picasa.ini",
193 "*~",
194}
195
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800196type globbedResourceDir struct {
197 dir android.Path
198 files android.Paths
199}
200
201func (a *AndroidApp) aapt2Flags(ctx android.ModuleContext) (flags []string, deps android.Paths,
Colin Cross890ff552017-11-30 20:13:19 -0800202 resDirs, overlayDirs []globbedResourceDir, rroDirs android.Paths, manifestPath android.Path) {
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800203
Colin Cross30e076a2015-04-13 13:58:27 -0700204 hasVersionCode := false
205 hasVersionName := false
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800206 hasProduct := false
207 for _, f := range a.appProperties.Aaptflags {
Colin Cross30e076a2015-04-13 13:58:27 -0700208 if strings.HasPrefix(f, "--version-code") {
209 hasVersionCode = true
210 } else if strings.HasPrefix(f, "--version-name") {
211 hasVersionName = true
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800212 } else if strings.HasPrefix(f, "--product") {
213 hasProduct = true
Colin Cross30e076a2015-04-13 13:58:27 -0700214 }
215 }
216
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800217 var linkFlags []string
Colin Cross30e076a2015-04-13 13:58:27 -0700218
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800219 // 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 Cross635c3b02016-05-18 15:37:25 -0700225 assetDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.appProperties.Asset_dirs, "assets")
Colin Cross86a63ff2017-09-27 17:33:10 -0700226 resourceDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.appProperties.Resource_dirs, "res")
Colin Cross30e076a2015-04-13 13:58:27 -0700227
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800228 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 Cross890ff552017-11-30 20:13:19 -0800236 resOverlayDirs, resRRODirs := overlayResourceGlob(ctx, dir)
237 overlayDirs = append(overlayDirs, resOverlayDirs...)
238 rroDirs = append(rroDirs, resRRODirs...)
Colin Cross30e076a2015-04-13 13:58:27 -0700239 }
240
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800241 var assetFiles android.Paths
242 for _, dir := range assetDirs {
243 assetFiles = append(assetFiles, resourceGlob(ctx, dir)...)
Colin Cross30e076a2015-04-13 13:58:27 -0700244 }
245
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800246 // App manifest file
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700247 var manifestFile string
248 if a.properties.Manifest == nil {
Colin Cross30e076a2015-04-13 13:58:27 -0700249 manifestFile = "AndroidManifest.xml"
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700250 } else {
251 manifestFile = *a.properties.Manifest
Colin Cross30e076a2015-04-13 13:58:27 -0700252 }
253
Colin Cross890ff552017-11-30 20:13:19 -0800254 manifestPath = android.PathForModuleSrc(ctx, manifestFile)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800255 linkFlags = append(linkFlags, "--manifest "+manifestPath.String())
256 linkDeps = append(linkDeps, manifestPath)
Colin Cross30e076a2015-04-13 13:58:27 -0700257
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800258 linkFlags = append(linkFlags, android.JoinWithPrefix(assetDirs.Strings(), "-A "))
259 linkDeps = append(linkDeps, assetFiles...)
Colin Cross30e076a2015-04-13 13:58:27 -0700260
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800261 // Include dirs
Colin Crossd11fcda2017-10-23 17:59:01 -0700262 ctx.VisitDirectDeps(func(module android.Module) {
Colin Cross74d73e22017-08-02 11:05:49 -0700263 var depFiles android.Paths
Colin Crossfc3674a2017-09-18 17:41:52 -0700264 if javaDep, ok := module.(Dependency); ok {
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800265 // TODO: shared android libraries
Colin Cross30e076a2015-04-13 13:58:27 -0700266 if ctx.OtherModuleName(module) == "framework-res" {
Colin Cross74d73e22017-08-02 11:05:49 -0700267 depFiles = android.Paths{javaDep.(*AndroidApp).exportPackage}
Colin Cross30e076a2015-04-13 13:58:27 -0700268 }
269 }
Colin Cross74d73e22017-08-02 11:05:49 -0700270
271 for _, dep := range depFiles {
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800272 linkFlags = append(linkFlags, "-I "+dep.String())
Colin Cross30e076a2015-04-13 13:58:27 -0700273 }
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800274 linkDeps = append(linkDeps, depFiles...)
Colin Cross30e076a2015-04-13 13:58:27 -0700275 })
276
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800277 // SDK version flags
Nan Zhangea568a42017-11-08 21:20:04 -0800278 sdkVersion := String(a.deviceProperties.Sdk_version)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800279 switch sdkVersion {
280 case "", "current", "system_current", "test_current":
Colin Cross42f3a762017-12-02 16:14:26 -0800281 sdkVersion = proptools.NinjaEscape([]string{ctx.Config().AppsDefaultVersionName()})[0]
Colin Cross30e076a2015-04-13 13:58:27 -0700282 }
283
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800284 linkFlags = append(linkFlags, "--min-sdk-version "+sdkVersion)
285 linkFlags = append(linkFlags, "--target-sdk-version "+sdkVersion)
Colin Cross30e076a2015-04-13 13:58:27 -0700286
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800287 // Product characteristics
Colin Cross6510f912017-11-29 00:27:14 -0800288 if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
289 linkFlags = append(linkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800290 }
291
292 // Product AAPT config
Colin Cross6510f912017-11-29 00:27:14 -0800293 for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800294 linkFlags = append(linkFlags, "-c", aaptConfig)
295 }
296
297 // Product AAPT preferred config
Colin Cross6510f912017-11-29 00:27:14 -0800298 if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
299 linkFlags = append(linkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800300 }
301
302 // Version code
Colin Cross30e076a2015-04-13 13:58:27 -0700303 if !hasVersionCode {
Colin Cross6510f912017-11-29 00:27:14 -0800304 linkFlags = append(linkFlags, "--version-code", ctx.Config().PlatformSdkVersion())
Colin Cross30e076a2015-04-13 13:58:27 -0700305 }
306
307 if !hasVersionName {
Colin Cross6510f912017-11-29 00:27:14 -0800308 versionName := proptools.NinjaEscape([]string{ctx.Config().AppsDefaultVersionName()})[0]
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800309 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 Cross30e076a2015-04-13 13:58:27 -0700316 }
317
318 // TODO: LOCAL_PACKAGE_OVERRIDES
319 // $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
320
Colin Cross890ff552017-11-30 20:13:19 -0800321 return linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, manifestPath
Colin Cross30e076a2015-04-13 13:58:27 -0700322}
323
Colin Cross36242852017-06-23 15:06:31 -0700324func AndroidAppFactory() android.Module {
Colin Cross30e076a2015-04-13 13:58:27 -0700325 module := &AndroidApp{}
326
Colin Cross36242852017-06-23 15:06:31 -0700327 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -0700328 &module.Module.properties,
329 &module.Module.deviceProperties,
330 &module.appProperties)
Colin Cross36242852017-06-23 15:06:31 -0700331
332 android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
333 return module
Colin Cross30e076a2015-04-13 13:58:27 -0700334}
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800335
336func 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
350type overlayGlobResult struct {
351 dir string
352 paths android.DirectorySortedPaths
Colin Cross890ff552017-11-30 20:13:19 -0800353
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 Cross3bc7ffa2017-11-22 16:19:37 -0800357}
358
359const overlayDataKey = "overlayDataKey"
360
Colin Cross890ff552017-11-30 20:13:19 -0800361func overlayResourceGlob(ctx android.ModuleContext, dir android.Path) (res []globbedResourceDir,
362 rroDirs android.Paths) {
363
Colin Cross6510f912017-11-29 00:27:14 -0800364 overlayData := ctx.Config().Get(overlayDataKey).([]overlayGlobResult)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800365
Colin Cross890ff552017-11-30 20:13:19 -0800366 // 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 Cross3bc7ffa2017-11-22 16:19:37 -0800376
377 for _, data := range overlayData {
378 files := data.paths.PathsInDirectory(filepath.Join(data.dir, dir.String()))
379 if len(files) > 0 {
Colin Cross890ff552017-11-30 20:13:19 -0800380 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 Cross3bc7ffa2017-11-22 16:19:37 -0800392 }
393 }
394
Colin Cross890ff552017-11-30 20:13:19 -0800395 return res, rroDirs
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800396}
397
398func OverlaySingletonFactory() android.Singleton {
399 return overlaySingleton{}
400}
401
402type overlaySingleton struct{}
403
404func (overlaySingleton) GenerateBuildActions(ctx android.SingletonContext) {
Colin Cross890ff552017-11-30 20:13:19 -0800405
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 Cross3bc7ffa2017-11-22 16:19:37 -0800412 var overlayData []overlayGlobResult
Colin Crossaabf6792017-11-29 00:27:14 -0800413 for _, overlay := range ctx.Config().ResourceOverlays() {
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800414 var result overlayGlobResult
415 result.dir = overlay
Colin Cross890ff552017-11-30 20:13:19 -0800416
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 Cross3bc7ffa2017-11-22 16:19:37 -0800424 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 Crossaabf6792017-11-29 00:27:14 -0800442 ctx.Config().Once(overlayDataKey, func() interface{} {
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800443 return overlayData
444 })
445}