2015-04-14 04:58:27 +08:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package java
|
|
|
|
|
|
|
|
// This file contains the module types for compiling Android apps.
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2017-08-30 07:02:06 +08:00
|
|
|
"github.com/google/blueprint/proptools"
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2016-05-19 06:37:25 +08:00
|
|
|
"android/soong/android"
|
2015-04-14 04:58:27 +08:00
|
|
|
)
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
func init() {
|
|
|
|
android.RegisterPreSingletonType("overlay", OverlaySingletonFactory)
|
2017-11-23 08:20:45 +08:00
|
|
|
android.RegisterModuleType("android_app", AndroidAppFactory)
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
|
2015-04-14 04:58:27 +08:00
|
|
|
// AAR prebuilts
|
|
|
|
// AndroidManifest.xml merging
|
|
|
|
// package splits
|
|
|
|
|
2018-02-21 09:22:23 +08:00
|
|
|
type appProperties struct {
|
2015-05-12 04:39:40 +08:00
|
|
|
// path to a certificate, or the name of a certificate in the default
|
|
|
|
// certificate directory, or blank to use the default product certificate
|
2017-11-09 13:20:04 +08:00
|
|
|
Certificate *string
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
// paths to extra certificates to sign the apk with
|
|
|
|
Additional_certificates []string
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
// If set, create package-export.apk, which other packages can
|
|
|
|
// use to get PRODUCT-agnostic resource data like IDs and type definitions.
|
2017-11-09 13:20:04 +08:00
|
|
|
Export_package_resources *bool
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
// flags passed to aapt when creating the apk
|
|
|
|
Aaptflags []string
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
// list of resource labels to generate individual resource packages
|
|
|
|
Package_splits []string
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
// list of directories relative to the Blueprints file containing assets.
|
|
|
|
// Defaults to "assets"
|
|
|
|
Asset_dirs []string
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
// list of directories relative to the Blueprints file containing
|
2017-09-28 08:33:10 +08:00
|
|
|
// Android resources
|
|
|
|
Resource_dirs []string
|
2017-11-23 05:49:43 +08:00
|
|
|
|
|
|
|
Instrumentation_for *string
|
2017-12-14 14:46:28 +08:00
|
|
|
|
|
|
|
// Specifies that this app should be installed to the priv-app directory,
|
|
|
|
// where the system will grant it additional privileges not available to
|
|
|
|
// normal apps.
|
|
|
|
Privileged *bool
|
2015-05-12 04:39:40 +08:00
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
type AndroidApp struct {
|
2017-06-23 07:51:17 +08:00
|
|
|
Module
|
2015-05-12 04:39:40 +08:00
|
|
|
|
2018-02-21 09:22:23 +08:00
|
|
|
appProperties appProperties
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
aaptSrcJar android.Path
|
|
|
|
exportPackage android.Path
|
2017-12-01 12:13:19 +08:00
|
|
|
rroDirs android.Paths
|
|
|
|
manifestPath android.Path
|
2017-12-15 03:22:55 +08:00
|
|
|
certificate certificate
|
|
|
|
}
|
|
|
|
|
|
|
|
type certificate struct {
|
|
|
|
pem, key android.Path
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-06-23 07:51:17 +08:00
|
|
|
func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
a.Module.deps(ctx)
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) {
|
2017-11-09 13:20:04 +08:00
|
|
|
switch String(a.deviceProperties.Sdk_version) { // TODO: Res_sdk_version?
|
2017-11-23 08:20:45 +08:00
|
|
|
case "current", "system_current", "test_current", "":
|
2017-07-08 06:59:46 +08:00
|
|
|
ctx.AddDependency(ctx.Module(), frameworkResTag, "framework-res")
|
2015-04-14 04:58:27 +08:00
|
|
|
default:
|
|
|
|
// We'll already have a dependency on an sdk prebuilt android.jar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-23 07:51:17 +08:00
|
|
|
func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2017-12-01 12:13:19 +08:00
|
|
|
linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, manifestPath := a.aapt2Flags(ctx)
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
packageRes := android.PathForModuleOut(ctx, "package-res.apk")
|
|
|
|
srcJar := android.PathForModuleGen(ctx, "R.jar")
|
|
|
|
proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
|
|
|
|
|
|
|
|
var compiledRes, compiledOverlay android.Paths
|
|
|
|
for _, dir := range resDirs {
|
|
|
|
compiledRes = append(compiledRes, aapt2Compile(ctx, dir.dir, dir.files).Paths()...)
|
|
|
|
}
|
|
|
|
for _, dir := range overlayDirs {
|
|
|
|
compiledOverlay = append(compiledOverlay, aapt2Compile(ctx, dir.dir, dir.files).Paths()...)
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
aapt2Link(ctx, packageRes, srcJar, proguardOptionsFile,
|
|
|
|
linkFlags, linkDeps, compiledRes, compiledOverlay)
|
|
|
|
|
|
|
|
a.exportPackage = packageRes
|
|
|
|
a.aaptSrcJar = srcJar
|
|
|
|
|
|
|
|
ctx.CheckbuildFile(proguardOptionsFile)
|
|
|
|
ctx.CheckbuildFile(a.exportPackage)
|
|
|
|
ctx.CheckbuildFile(a.aaptSrcJar)
|
|
|
|
|
2017-06-23 07:51:17 +08:00
|
|
|
// apps manifests are handled by aapt, don't let Module see them
|
2015-09-24 06:26:20 +08:00
|
|
|
a.properties.Manifest = nil
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:20:45 +08:00
|
|
|
if String(a.appProperties.Instrumentation_for) == "" {
|
|
|
|
a.properties.Instrument = true
|
|
|
|
}
|
|
|
|
|
2017-12-29 04:23:20 +08:00
|
|
|
a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles,
|
|
|
|
proguardOptionsFile)
|
|
|
|
|
2017-11-23 08:20:45 +08:00
|
|
|
if ctx.ModuleName() != "framework-res" {
|
|
|
|
a.Module.compile(ctx, a.aaptSrcJar)
|
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-12-15 03:22:55 +08:00
|
|
|
c := String(a.appProperties.Certificate)
|
|
|
|
switch {
|
|
|
|
case c == "":
|
|
|
|
pem, key := ctx.Config().DefaultAppCertificate(ctx)
|
|
|
|
a.certificate = certificate{pem, key}
|
|
|
|
case strings.ContainsRune(c, '/'):
|
|
|
|
a.certificate = certificate{
|
|
|
|
android.PathForSource(ctx, c+".x509.pem"),
|
|
|
|
android.PathForSource(ctx, c+".pk8"),
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
|
|
|
|
a.certificate = certificate{
|
|
|
|
defaultDir.Join(ctx, c+".x509.pem"),
|
|
|
|
defaultDir.Join(ctx, c+".pk8"),
|
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-12-15 03:22:55 +08:00
|
|
|
certificates := []certificate{a.certificate}
|
2015-04-14 04:58:27 +08:00
|
|
|
for _, c := range a.appProperties.Additional_certificates {
|
2017-12-15 03:22:55 +08:00
|
|
|
certificates = append(certificates, certificate{
|
|
|
|
android.PathForSource(ctx, c+".x509.pem"),
|
|
|
|
android.PathForSource(ctx, c+".pk8"),
|
|
|
|
})
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
packageFile := android.PathForModuleOut(ctx, "package.apk")
|
|
|
|
|
|
|
|
CreateAppPackage(ctx, packageFile, a.exportPackage, a.outputFile, certificates)
|
|
|
|
|
|
|
|
a.outputFile = packageFile
|
2017-12-01 12:13:19 +08:00
|
|
|
a.rroDirs = rroDirs
|
|
|
|
a.manifestPath = manifestPath
|
2017-11-23 08:19:37 +08:00
|
|
|
|
2017-11-23 08:20:45 +08:00
|
|
|
if ctx.ModuleName() == "framework-res" {
|
|
|
|
// framework-res.apk is installed as system/framework/framework-res.apk
|
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"), ctx.ModuleName()+".apk", a.outputFile)
|
2017-12-14 14:46:28 +08:00
|
|
|
} else if Bool(a.appProperties.Privileged) {
|
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "priv-app"), ctx.ModuleName()+".apk", a.outputFile)
|
2017-11-23 08:20:45 +08:00
|
|
|
} else {
|
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "app"), ctx.ModuleName()+".apk", a.outputFile)
|
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var aaptIgnoreFilenames = []string{
|
|
|
|
".svn",
|
|
|
|
".git",
|
|
|
|
".ds_store",
|
|
|
|
"*.scc",
|
|
|
|
".*",
|
|
|
|
"CVS",
|
|
|
|
"thumbs.db",
|
|
|
|
"picasa.ini",
|
|
|
|
"*~",
|
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
type globbedResourceDir struct {
|
|
|
|
dir android.Path
|
|
|
|
files android.Paths
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidApp) aapt2Flags(ctx android.ModuleContext) (flags []string, deps android.Paths,
|
2017-12-01 12:13:19 +08:00
|
|
|
resDirs, overlayDirs []globbedResourceDir, rroDirs android.Paths, manifestPath android.Path) {
|
2017-11-23 08:19:37 +08:00
|
|
|
|
2015-04-14 04:58:27 +08:00
|
|
|
hasVersionCode := false
|
|
|
|
hasVersionName := false
|
2017-11-23 08:19:37 +08:00
|
|
|
hasProduct := false
|
|
|
|
for _, f := range a.appProperties.Aaptflags {
|
2015-04-14 04:58:27 +08:00
|
|
|
if strings.HasPrefix(f, "--version-code") {
|
|
|
|
hasVersionCode = true
|
|
|
|
} else if strings.HasPrefix(f, "--version-name") {
|
|
|
|
hasVersionName = true
|
2017-11-23 08:19:37 +08:00
|
|
|
} else if strings.HasPrefix(f, "--product") {
|
|
|
|
hasProduct = true
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
var linkFlags []string
|
|
|
|
|
|
|
|
// Flags specified in Android.bp
|
|
|
|
linkFlags = append(linkFlags, a.appProperties.Aaptflags...)
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
linkFlags = append(linkFlags, "--no-static-lib-packages")
|
|
|
|
|
|
|
|
// Find implicit or explicit asset and resource dirs
|
2016-05-19 06:37:25 +08:00
|
|
|
assetDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.appProperties.Asset_dirs, "assets")
|
2017-09-28 08:33:10 +08:00
|
|
|
resourceDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.appProperties.Resource_dirs, "res")
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
var linkDeps android.Paths
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
// Glob directories into lists of paths
|
|
|
|
for _, dir := range resourceDirs {
|
|
|
|
resDirs = append(resDirs, globbedResourceDir{
|
|
|
|
dir: dir,
|
|
|
|
files: resourceGlob(ctx, dir),
|
|
|
|
})
|
2017-12-01 12:13:19 +08:00
|
|
|
resOverlayDirs, resRRODirs := overlayResourceGlob(ctx, dir)
|
|
|
|
overlayDirs = append(overlayDirs, resOverlayDirs...)
|
|
|
|
rroDirs = append(rroDirs, resRRODirs...)
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
var assetFiles android.Paths
|
|
|
|
for _, dir := range assetDirs {
|
|
|
|
assetFiles = append(assetFiles, resourceGlob(ctx, dir)...)
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
// App manifest file
|
2015-09-24 06:26:20 +08:00
|
|
|
var manifestFile string
|
|
|
|
if a.properties.Manifest == nil {
|
2015-04-14 04:58:27 +08:00
|
|
|
manifestFile = "AndroidManifest.xml"
|
2015-09-24 06:26:20 +08:00
|
|
|
} else {
|
|
|
|
manifestFile = *a.properties.Manifest
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-12-01 12:13:19 +08:00
|
|
|
manifestPath = android.PathForModuleSrc(ctx, manifestFile)
|
2017-11-23 08:19:37 +08:00
|
|
|
linkFlags = append(linkFlags, "--manifest "+manifestPath.String())
|
|
|
|
linkDeps = append(linkDeps, manifestPath)
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
linkFlags = append(linkFlags, android.JoinWithPrefix(assetDirs.Strings(), "-A "))
|
|
|
|
linkDeps = append(linkDeps, assetFiles...)
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
// Include dirs
|
2017-10-24 08:59:01 +08:00
|
|
|
ctx.VisitDirectDeps(func(module android.Module) {
|
2017-08-03 02:05:49 +08:00
|
|
|
var depFiles android.Paths
|
2017-09-19 08:41:52 +08:00
|
|
|
if javaDep, ok := module.(Dependency); ok {
|
2017-11-23 08:19:37 +08:00
|
|
|
// TODO: shared android libraries
|
2015-04-14 04:58:27 +08:00
|
|
|
if ctx.OtherModuleName(module) == "framework-res" {
|
2017-08-03 02:05:49 +08:00
|
|
|
depFiles = android.Paths{javaDep.(*AndroidApp).exportPackage}
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
}
|
2017-08-03 02:05:49 +08:00
|
|
|
|
|
|
|
for _, dep := range depFiles {
|
2017-11-23 08:19:37 +08:00
|
|
|
linkFlags = append(linkFlags, "-I "+dep.String())
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
2017-11-23 08:19:37 +08:00
|
|
|
linkDeps = append(linkDeps, depFiles...)
|
2015-04-14 04:58:27 +08:00
|
|
|
})
|
|
|
|
|
2018-02-21 07:30:31 +08:00
|
|
|
sdkDep := decodeSdkDep(ctx, String(a.deviceProperties.Sdk_version))
|
|
|
|
if sdkDep.useFiles {
|
|
|
|
linkFlags = append(linkFlags, "-I "+sdkDep.jar.String())
|
|
|
|
linkDeps = append(linkDeps, sdkDep.jar)
|
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
// SDK version flags
|
2017-11-09 13:20:04 +08:00
|
|
|
sdkVersion := String(a.deviceProperties.Sdk_version)
|
2017-11-23 08:19:37 +08:00
|
|
|
switch sdkVersion {
|
|
|
|
case "", "current", "system_current", "test_current":
|
2017-12-03 08:14:26 +08:00
|
|
|
sdkVersion = proptools.NinjaEscape([]string{ctx.Config().AppsDefaultVersionName()})[0]
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
linkFlags = append(linkFlags, "--min-sdk-version "+sdkVersion)
|
|
|
|
linkFlags = append(linkFlags, "--target-sdk-version "+sdkVersion)
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
// Product characteristics
|
2017-11-29 16:27:14 +08:00
|
|
|
if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
|
|
|
|
linkFlags = append(linkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Product AAPT config
|
2017-11-29 16:27:14 +08:00
|
|
|
for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
|
2017-11-23 08:19:37 +08:00
|
|
|
linkFlags = append(linkFlags, "-c", aaptConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Product AAPT preferred config
|
2017-11-29 16:27:14 +08:00
|
|
|
if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
|
|
|
|
linkFlags = append(linkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Version code
|
2015-04-14 04:58:27 +08:00
|
|
|
if !hasVersionCode {
|
2017-11-29 16:27:14 +08:00
|
|
|
linkFlags = append(linkFlags, "--version-code", ctx.Config().PlatformSdkVersion())
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if !hasVersionName {
|
2017-11-29 16:27:14 +08:00
|
|
|
versionName := proptools.NinjaEscape([]string{ctx.Config().AppsDefaultVersionName()})[0]
|
2017-11-23 08:19:37 +08:00
|
|
|
linkFlags = append(linkFlags, "--version-name ", versionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if String(a.appProperties.Instrumentation_for) != "" {
|
|
|
|
linkFlags = append(linkFlags,
|
|
|
|
"--rename-instrumentation-target-package",
|
|
|
|
String(a.appProperties.Instrumentation_for))
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: LOCAL_PACKAGE_OVERRIDES
|
|
|
|
// $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
|
|
|
|
|
2017-12-01 12:13:19 +08:00
|
|
|
return linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, manifestPath
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
func AndroidAppFactory() android.Module {
|
2015-04-14 04:58:27 +08:00
|
|
|
module := &AndroidApp{}
|
|
|
|
|
2017-12-29 04:23:20 +08:00
|
|
|
module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true)
|
|
|
|
module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
module.AddProperties(
|
2017-06-23 08:01:52 +08:00
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
|
|
|
&module.appProperties)
|
2017-06-24 06:06:31 +08:00
|
|
|
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
return module
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
2017-11-23 08:19:37 +08:00
|
|
|
|
|
|
|
func resourceGlob(ctx android.ModuleContext, dir android.Path) android.Paths {
|
2018-02-27 13:50:08 +08:00
|
|
|
return ctx.GlobFiles(filepath.Join(dir.String(), "**/*"), aaptIgnoreFilenames)
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type overlayGlobResult struct {
|
|
|
|
dir string
|
|
|
|
paths android.DirectorySortedPaths
|
2017-12-01 12:13:19 +08:00
|
|
|
|
|
|
|
// Set to true of the product has selected that values in this overlay should not be moved to
|
|
|
|
// Runtime Resource Overlay (RRO) packages.
|
|
|
|
excludeFromRRO bool
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const overlayDataKey = "overlayDataKey"
|
|
|
|
|
2017-12-01 12:13:19 +08:00
|
|
|
func overlayResourceGlob(ctx android.ModuleContext, dir android.Path) (res []globbedResourceDir,
|
|
|
|
rroDirs android.Paths) {
|
|
|
|
|
2017-11-29 16:27:14 +08:00
|
|
|
overlayData := ctx.Config().Get(overlayDataKey).([]overlayGlobResult)
|
2017-11-23 08:19:37 +08:00
|
|
|
|
2017-12-01 12:13:19 +08:00
|
|
|
// Runtime resource overlays (RRO) may be turned on by the product config for some modules
|
2018-03-13 06:30:26 +08:00
|
|
|
rroEnabled := ctx.Config().EnforceRROForModule(ctx.ModuleName())
|
2017-11-23 08:19:37 +08:00
|
|
|
|
|
|
|
for _, data := range overlayData {
|
|
|
|
files := data.paths.PathsInDirectory(filepath.Join(data.dir, dir.String()))
|
|
|
|
if len(files) > 0 {
|
2017-12-01 12:13:19 +08:00
|
|
|
overlayModuleDir := android.PathForSource(ctx, data.dir, dir.String())
|
|
|
|
// If enforce RRO is enabled for this module and this overlay is not in the
|
|
|
|
// exclusion list, ignore the overlay. The list of ignored overlays will be
|
|
|
|
// passed to Make to be turned into an RRO package.
|
|
|
|
if rroEnabled && !data.excludeFromRRO {
|
|
|
|
rroDirs = append(rroDirs, overlayModuleDir)
|
|
|
|
} else {
|
|
|
|
res = append(res, globbedResourceDir{
|
|
|
|
dir: overlayModuleDir,
|
|
|
|
files: files,
|
|
|
|
})
|
|
|
|
}
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-01 12:13:19 +08:00
|
|
|
return res, rroDirs
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func OverlaySingletonFactory() android.Singleton {
|
|
|
|
return overlaySingleton{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type overlaySingleton struct{}
|
|
|
|
|
|
|
|
func (overlaySingleton) GenerateBuildActions(ctx android.SingletonContext) {
|
|
|
|
var overlayData []overlayGlobResult
|
2018-01-05 06:50:13 +08:00
|
|
|
overlayDirs := ctx.Config().ResourceOverlays()
|
|
|
|
for i := range overlayDirs {
|
|
|
|
// Iterate backwards through the list of overlay directories so that the later, lower-priority
|
|
|
|
// directories in the list show up earlier in the command line to aapt2.
|
|
|
|
overlay := overlayDirs[len(overlayDirs)-1-i]
|
2017-11-23 08:19:37 +08:00
|
|
|
var result overlayGlobResult
|
|
|
|
result.dir = overlay
|
2017-12-01 12:13:19 +08:00
|
|
|
|
|
|
|
// Mark overlays that will not have Runtime Resource Overlays enforced on them
|
2018-03-13 06:30:26 +08:00
|
|
|
// based on the product config
|
|
|
|
result.excludeFromRRO = ctx.Config().EnforceRROExcludedOverlay(overlay)
|
2017-12-01 12:13:19 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
files, err := ctx.GlobWithDeps(filepath.Join(overlay, "**/*"), aaptIgnoreFilenames)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Errorf("failed to glob resource dir %q: %s", overlay, err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
var paths android.Paths
|
|
|
|
for _, f := range files {
|
2018-02-27 13:50:08 +08:00
|
|
|
if !strings.HasSuffix(f, "/") {
|
2017-11-23 08:19:37 +08:00
|
|
|
paths = append(paths, android.PathForSource(ctx, f))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result.paths = android.PathsToDirectorySortedPaths(paths)
|
|
|
|
overlayData = append(overlayData, result)
|
|
|
|
}
|
|
|
|
|
2017-11-29 16:27:14 +08:00
|
|
|
ctx.Config().Once(overlayDataKey, func() interface{} {
|
2017-11-23 08:19:37 +08:00
|
|
|
return overlayData
|
|
|
|
})
|
|
|
|
}
|