2015-03-31 02:20:39 +02: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
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"android/soong/common"
|
|
|
|
)
|
|
|
|
|
|
|
|
var resourceExcludes = []string{
|
2015-04-25 00:16:39 +02:00
|
|
|
"**/*.java",
|
|
|
|
"**/package.html",
|
|
|
|
"**/overview.html",
|
|
|
|
"**/.*.swp",
|
|
|
|
"**/.DS_Store",
|
|
|
|
"**/*~",
|
2015-03-31 02:20:39 +02:00
|
|
|
}
|
|
|
|
|
2015-07-01 03:15:24 +02:00
|
|
|
func isStringInSlice(str string, slice []string) bool {
|
|
|
|
for _, s := range slice {
|
|
|
|
if s == str {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func ResourceDirsToJarSpecs(ctx common.AndroidModuleContext, resourceDirs, excludeDirs []string) []jarSpec {
|
2015-04-25 00:16:39 +02:00
|
|
|
var excludes []string
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2015-07-01 03:15:24 +02:00
|
|
|
for _, exclude := range excludeDirs {
|
2015-09-24 00:26:20 +02:00
|
|
|
excludes = append(excludes, common.PathForModuleSrc(ctx, exclude, "**/*").String())
|
2015-04-25 00:16:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
excludes = append(excludes, resourceExcludes...)
|
|
|
|
|
|
|
|
var jarSpecs []jarSpec
|
|
|
|
|
|
|
|
for _, resourceDir := range resourceDirs {
|
2015-07-01 03:15:24 +02:00
|
|
|
if isStringInSlice(resourceDir, excludeDirs) {
|
2015-04-25 00:16:39 +02:00
|
|
|
continue
|
|
|
|
}
|
2015-09-24 00:26:20 +02:00
|
|
|
resourceDir := common.PathForModuleSrc(ctx, resourceDir)
|
|
|
|
dirs := ctx.Glob("java_resources", resourceDir.String(), nil)
|
2015-04-25 00:16:39 +02:00
|
|
|
for _, dir := range dirs {
|
2015-09-24 00:26:20 +02:00
|
|
|
fileListFile := common.ResPathWithName(ctx, dir, "resources.list")
|
|
|
|
depFile := fileListFile.String() + ".d"
|
2015-04-25 00:16:39 +02:00
|
|
|
|
2015-09-24 00:26:20 +02:00
|
|
|
glob := filepath.Join(dir.String(), "**/*")
|
|
|
|
common.GlobRule(ctx, glob, excludes, fileListFile.String(), depFile)
|
2015-04-25 00:16:39 +02:00
|
|
|
jarSpecs = append(jarSpecs, jarSpec{fileListFile, dir})
|
|
|
|
}
|
2015-03-31 02:20:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return jarSpecs
|
|
|
|
}
|