2018-03-28 23:58:31 +02:00
|
|
|
// Copyright 2018 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
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
var androidResourceIgnoreFilenames = []string{
|
|
|
|
".svn",
|
|
|
|
".git",
|
|
|
|
".ds_store",
|
|
|
|
"*.scc",
|
|
|
|
".*",
|
|
|
|
"CVS",
|
|
|
|
"thumbs.db",
|
|
|
|
"picasa.ini",
|
|
|
|
"*~",
|
|
|
|
}
|
|
|
|
|
2020-11-10 21:27:45 +01:00
|
|
|
// androidResourceGlob returns the list of files in the given directory, using the standard
|
|
|
|
// exclusion patterns for Android resources.
|
Initial bp2build converter for android_app.
The only supported attributes at this point are:
- srcs
- manifest
- package_name
- resource_dirs
as they most easily map to bazel's android_binary's srcs, manifest, custom_package, and resource_files respectively.
Allow-listing all apps that use these fields, along with sdk_version and dex_preopt. The latter 2 are ignored by the converter,
- sdk_version because we're currently relying on a single pre-built SDK,
- dex_preopt because,
1. though it is not supported in Bazel builds yet, it doesn't prevent the apps from building, and
2. the apps being converted only use the dex_preopt attribute to disable dex_preopt, which is what is happening anyway.
Change-Id: I4a4f771eeb8f60a1cd4844b2ac1ce3df7c070e73
Test: ./build/bazel/scripts/run_presubmits.sh
Bug: 198224074
Bug: 203688791
2021-10-29 16:52:59 +02:00
|
|
|
func androidResourceGlob(ctx android.EarlyModuleContext, dir android.Path) android.Paths {
|
2018-03-28 23:58:31 +02:00
|
|
|
return ctx.GlobFiles(filepath.Join(dir.String(), "**/*"), androidResourceIgnoreFilenames)
|
|
|
|
}
|
|
|
|
|
2020-11-10 21:27:45 +01:00
|
|
|
// androidResourceGlobList creates a rule to write the list of files in the given directory, using
|
|
|
|
// the standard exclusion patterns for Android resources, to the given output file.
|
|
|
|
func androidResourceGlobList(ctx android.ModuleContext, dir android.Path,
|
|
|
|
fileListFile android.WritablePath) {
|
|
|
|
|
|
|
|
android.GlobToListFileRule(ctx, filepath.Join(dir.String(), "**/*"),
|
|
|
|
androidResourceIgnoreFilenames, fileListFile)
|
|
|
|
}
|
|
|
|
|
2019-03-18 16:53:16 +01:00
|
|
|
type overlayType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
device overlayType = iota + 1
|
|
|
|
product
|
|
|
|
)
|
|
|
|
|
|
|
|
type rroDir struct {
|
|
|
|
path android.Path
|
|
|
|
overlayType overlayType
|
|
|
|
}
|
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
type overlayGlobResult struct {
|
2019-03-18 16:53:16 +01:00
|
|
|
dir string
|
|
|
|
paths android.DirectorySortedPaths
|
|
|
|
overlayType overlayType
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
2019-02-04 20:22:08 +01:00
|
|
|
var overlayDataKey = android.NewOnceKey("overlayDataKey")
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
type globbedResourceDir struct {
|
|
|
|
dir android.Path
|
|
|
|
files android.Paths
|
|
|
|
}
|
|
|
|
|
2020-10-07 03:56:10 +02:00
|
|
|
func overlayResourceGlob(ctx android.ModuleContext, a *aapt, dir android.Path) (res []globbedResourceDir,
|
2019-03-18 16:53:16 +01:00
|
|
|
rroDirs []rroDir) {
|
2018-03-28 23:58:31 +02:00
|
|
|
|
2023-11-01 23:29:09 +01:00
|
|
|
overlayData := ctx.Config().Once(overlayDataKey, func() interface{} {
|
|
|
|
var overlayData []overlayGlobResult
|
|
|
|
|
|
|
|
appendOverlayData := func(overlayDirs []string, t overlayType) {
|
|
|
|
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]
|
|
|
|
var result overlayGlobResult
|
|
|
|
result.dir = overlay
|
|
|
|
result.overlayType = t
|
|
|
|
|
|
|
|
files, err := ctx.GlobWithDeps(filepath.Join(overlay, "**/*"), androidResourceIgnoreFilenames)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ModuleErrorf("failed to glob resource dir %q: %s", overlay, err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
var paths android.Paths
|
|
|
|
for _, f := range files {
|
|
|
|
if !strings.HasSuffix(f, "/") {
|
|
|
|
paths = append(paths, android.PathForSource(ctx, f))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result.paths = android.PathsToDirectorySortedPaths(paths)
|
|
|
|
overlayData = append(overlayData, result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
appendOverlayData(ctx.Config().DeviceResourceOverlays(), device)
|
|
|
|
appendOverlayData(ctx.Config().ProductResourceOverlays(), product)
|
|
|
|
return overlayData
|
|
|
|
}).([]overlayGlobResult)
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
// Runtime resource overlays (RRO) may be turned on by the product config for some modules
|
2020-10-07 03:56:10 +02:00
|
|
|
rroEnabled := a.IsRROEnforced(ctx)
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
for _, data := range overlayData {
|
|
|
|
files := data.paths.PathsInDirectory(filepath.Join(data.dir, dir.String()))
|
|
|
|
if len(files) > 0 {
|
|
|
|
overlayModuleDir := android.PathForSource(ctx, data.dir, dir.String())
|
2019-01-30 17:03:37 +01:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
// 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.
|
2019-01-30 17:03:37 +01:00
|
|
|
if rroEnabled && !ctx.Config().EnforceRROExcludedOverlay(overlayModuleDir.String()) {
|
2019-03-18 16:53:16 +01:00
|
|
|
rroDirs = append(rroDirs, rroDir{overlayModuleDir, data.overlayType})
|
2018-03-28 23:58:31 +02:00
|
|
|
} else {
|
|
|
|
res = append(res, globbedResourceDir{
|
|
|
|
dir: overlayModuleDir,
|
|
|
|
files: files,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res, rroDirs
|
|
|
|
}
|