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
|
|
|
|
|
|
|
|
// This file generates the final rules for compiling all Java. All properties related to
|
|
|
|
// compiling should have been translated into javaBuilderFlags or another argument to the Transform*
|
|
|
|
// functions.
|
|
|
|
|
|
|
|
import (
|
2017-11-02 21:28:15 +01:00
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
2015-03-31 02:20:39 +02:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
2018-09-12 19:02:13 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
2017-09-05 22:16:45 +02:00
|
|
|
|
|
|
|
"android/soong/android"
|
2015-03-31 02:20:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2016-05-19 00:37:25 +02:00
|
|
|
pctx = android.NewPackageContext("android/soong/java")
|
2015-03-31 02:20:39 +02:00
|
|
|
|
|
|
|
// Compiling java is not conducive to proper dependency tracking. The path-matches-class-name
|
|
|
|
// requirement leads to unpredictable generated source file names, and a single .java file
|
|
|
|
// will get compiled into multiple .class files if it contains inner classes. To work around
|
2018-02-08 21:48:39 +01:00
|
|
|
// this, all java rules write into separate directories and then are combined into a .jar file
|
|
|
|
// (if the rule produces .class files) or a .srcjar file (if the rule produces .java files).
|
|
|
|
// .srcjar files are unzipped into a temporary directory when compiled with javac.
|
2017-06-05 10:41:50 +02:00
|
|
|
javac = pctx.AndroidGomaStaticRule("javac",
|
2015-03-31 02:20:39 +02:00
|
|
|
blueprint.RuleParams{
|
2017-10-25 02:46:00 +02:00
|
|
|
Command: `rm -rf "$outDir" "$annoDir" "$srcJarDir" && mkdir -p "$outDir" "$annoDir" "$srcJarDir" && ` +
|
2018-03-16 00:24:10 +01:00
|
|
|
`${config.ZipSyncCmd} -d $srcJarDir -l $srcJarDir/list -f "*.java" $srcJars && ` +
|
2018-06-28 07:53:20 +02:00
|
|
|
`(if [ -s $srcJarDir/list ] || [ -s $out.rsp ] ; then ` +
|
2017-10-17 22:56:52 +02:00
|
|
|
`${config.SoongJavacWrapper} ${config.JavacWrapper}${config.JavacCmd} ${config.JavacHeapFlags} ${config.CommonJdkFlags} ` +
|
2018-06-20 07:43:34 +02:00
|
|
|
`$processorpath $javacFlags $bootClasspath $classpath ` +
|
2017-08-08 22:17:59 +02:00
|
|
|
`-source $javaVersion -target $javaVersion ` +
|
2018-06-28 07:53:20 +02:00
|
|
|
`-d $outDir -s $annoDir @$out.rsp @$srcJarDir/list ; fi ) && ` +
|
2017-08-30 23:24:55 +02:00
|
|
|
`${config.SoongZipCmd} -jar -o $out -C $outDir -D $outDir`,
|
2017-10-25 02:46:00 +02:00
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.JavacCmd}",
|
|
|
|
"${config.SoongZipCmd}",
|
2018-03-16 00:24:10 +01:00
|
|
|
"${config.ZipSyncCmd}",
|
2017-10-25 02:46:00 +02:00
|
|
|
},
|
2017-10-17 22:56:52 +02:00
|
|
|
CommandOrderOnly: []string{"${config.SoongJavacWrapper}"},
|
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$in",
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
2018-06-20 07:43:34 +02:00
|
|
|
"javacFlags", "bootClasspath", "classpath", "processorpath", "srcJars", "srcJarDir",
|
2017-10-25 02:46:00 +02:00
|
|
|
"outDir", "annoDir", "javaVersion")
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
turbine = pctx.AndroidStaticRule("turbine",
|
|
|
|
blueprint.RuleParams{
|
2018-03-08 00:14:50 +01:00
|
|
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
2017-10-19 22:06:22 +02:00
|
|
|
`${config.JavaCmd} -jar ${config.TurbineJar} --output $out.tmp ` +
|
2018-03-08 00:14:50 +01:00
|
|
|
`--temp_dir "$outDir" --sources @$out.rsp --source_jars $srcJars ` +
|
2017-10-19 22:06:22 +02:00
|
|
|
`--javacopts ${config.CommonJdkFlags} ` +
|
2018-03-07 19:51:05 +01:00
|
|
|
`$javacFlags -source $javaVersion -target $javaVersion -- $bootClasspath $classpath && ` +
|
2017-10-19 22:06:22 +02:00
|
|
|
`${config.Ziptime} $out.tmp && ` +
|
|
|
|
`(if cmp -s $out.tmp $out ; then rm $out.tmp ; else mv $out.tmp $out ; fi )`,
|
2017-10-25 02:46:00 +02:00
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.TurbineJar}",
|
|
|
|
"${config.JavaCmd}",
|
|
|
|
"${config.Ziptime}",
|
|
|
|
},
|
2017-10-19 22:06:22 +02:00
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$in",
|
|
|
|
Restat: true,
|
|
|
|
},
|
2018-03-08 00:14:50 +01:00
|
|
|
"javacFlags", "bootClasspath", "classpath", "srcJars", "outDir", "javaVersion")
|
2017-10-19 22:06:22 +02:00
|
|
|
|
2016-08-30 01:14:13 +02:00
|
|
|
jar = pctx.AndroidStaticRule("jar",
|
2015-03-31 02:20:39 +02:00
|
|
|
blueprint.RuleParams{
|
Add Respfile support for soong_zip.
Sometime the size of our command line passed to soong_zip go program
exceeds the cmdline size limit. So add an RespFile support with "@" special
character prefix.
The args in the cmdline will be considered together with the
args in RespFile during soong_zip running.
Test: real tests in my local machine, and compare the
res/libphonenumber.jar before and after changes.
./cmd -o test.zip '""'-C -> [./cmd,-o,test.zip,""-C]
./cmd -o test.zip '-C -f -> [./cmd,-o,test.zip,-C -f]
./cmd -o test.zip '\"'-C -f -> [./cmd,-o,test.zip,\"-C -f]
./cmd -o test.zip '\\'-C -f -> [./cmd,-o,test.zip,\\-C -f]
./cmd -o test.zip '\a'-C -f -> [./cmd,-o,test.zip,\a-C -f]
./cmd -o test.zip \'-C -> [./cmd,-o,test.zip,'-C]
./cmd -o test.zip \\-C -> [./cmd,-o,test.zip,\-C]
./cmd -o test.zip \"-C -> [./cmd,-o,test.zip,"-C]
./cmd -o test.zip "'"-C -> [./cmd,-o,test.zip,'-C]
./cmd -o test.zip "\\"-C -f -> [./cmd,-o,test.zip,\a-C -f]
./cmd -o test.zip "\""-C -f -> [./cmd,-o,test.zip,"a-C -f]
Bug: b/72484223
Change-Id: I83c3630b70c8396c8e8a3f266244d868d754c4e8
2018-01-27 03:30:36 +01:00
|
|
|
Command: `${config.SoongZipCmd} -jar -o $out @$out.rsp`,
|
|
|
|
CommandDeps: []string{"${config.SoongZipCmd}"},
|
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$jarArgs",
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
2017-08-30 23:24:55 +02:00
|
|
|
"jarArgs")
|
|
|
|
|
2018-10-03 07:03:40 +02:00
|
|
|
zip = pctx.AndroidStaticRule("zip",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `${config.SoongZipCmd} -o $out @$out.rsp`,
|
|
|
|
CommandDeps: []string{"${config.SoongZipCmd}"},
|
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$jarArgs",
|
|
|
|
},
|
|
|
|
"jarArgs")
|
|
|
|
|
2017-08-30 23:24:55 +02:00
|
|
|
combineJar = pctx.AndroidStaticRule("combineJar",
|
|
|
|
blueprint.RuleParams{
|
2018-02-08 00:41:31 +01:00
|
|
|
Command: `${config.MergeZipsCmd} --ignore-duplicates -j $jarArgs $out $in`,
|
2017-08-30 23:24:55 +02:00
|
|
|
CommandDeps: []string{"${config.MergeZipsCmd}"},
|
|
|
|
},
|
2017-09-13 07:50:46 +02:00
|
|
|
"jarArgs")
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2016-08-30 01:14:13 +02:00
|
|
|
jarjar = pctx.AndroidStaticRule("jarjar",
|
2015-04-04 01:54:17 +02:00
|
|
|
blueprint.RuleParams{
|
2017-08-08 22:17:59 +02:00
|
|
|
Command: "${config.JavaCmd} -jar ${config.JarjarCmd} process $rulesFile $in $out",
|
|
|
|
CommandDeps: []string{"${config.JavaCmd}", "${config.JarjarCmd}", "$rulesFile"},
|
2015-04-04 01:54:17 +02:00
|
|
|
},
|
|
|
|
"rulesFile")
|
2018-08-28 03:31:46 +02:00
|
|
|
|
|
|
|
jetifier = pctx.AndroidStaticRule("jetifier",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "${config.JavaCmd} -jar ${config.JetifierJar} -l error -o $out -i $in",
|
|
|
|
CommandDeps: []string{"${config.JavaCmd}", "${config.JetifierJar}"},
|
|
|
|
},
|
|
|
|
)
|
2018-11-12 19:13:39 +01:00
|
|
|
|
|
|
|
zipalign = pctx.AndroidStaticRule("zipalign",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "if ! ${config.ZipAlign} -c 4 $in > /dev/null; then " +
|
|
|
|
"${config.ZipAlign} -f 4 $in $out; " +
|
|
|
|
"else " +
|
|
|
|
"cp -f $in $out; " +
|
|
|
|
"fi",
|
|
|
|
CommandDeps: []string{"${config.ZipAlign}"},
|
|
|
|
},
|
|
|
|
)
|
2015-03-31 02:20:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2018-08-15 20:19:12 +02:00
|
|
|
pctx.Import("android/soong/common")
|
2017-08-08 22:17:59 +02:00
|
|
|
pctx.Import("android/soong/java/config")
|
2015-03-31 02:20:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type javaBuilderFlags struct {
|
|
|
|
javacFlags string
|
2017-09-15 22:00:47 +02:00
|
|
|
bootClasspath classpath
|
|
|
|
classpath classpath
|
2018-06-20 07:43:34 +02:00
|
|
|
processorPath classpath
|
2017-09-30 02:58:17 +02:00
|
|
|
systemModules classpath
|
2015-04-08 22:03:43 +02:00
|
|
|
aidlFlags string
|
2017-08-08 22:17:59 +02:00
|
|
|
javaVersion string
|
2017-09-20 21:59:05 +02:00
|
|
|
|
2018-01-23 06:27:21 +01:00
|
|
|
errorProneExtraJavacFlags string
|
2018-06-20 07:47:35 +02:00
|
|
|
errorProneProcessorPath classpath
|
2018-01-23 06:27:21 +01:00
|
|
|
|
2017-08-15 22:34:18 +02:00
|
|
|
kotlincFlags string
|
|
|
|
kotlincClasspath classpath
|
|
|
|
|
2017-11-19 03:23:14 +01:00
|
|
|
protoFlags []string
|
|
|
|
protoOutTypeFlag string // The flag itself: --java_out
|
|
|
|
protoOutParams string // Parameters to that flag: --java_out=$protoOutParams:$outDir
|
2018-02-14 22:58:34 +01:00
|
|
|
protoRoot bool
|
2015-03-31 02:20:39 +02:00
|
|
|
}
|
|
|
|
|
2017-11-02 21:28:15 +01:00
|
|
|
func TransformJavaToClasses(ctx android.ModuleContext, outputFile android.WritablePath, shardIdx int,
|
|
|
|
srcFiles, srcJars android.Paths, flags javaBuilderFlags, deps android.Paths) {
|
|
|
|
|
|
|
|
// Compile java sources into .class files
|
|
|
|
desc := "javac"
|
|
|
|
if shardIdx >= 0 {
|
|
|
|
desc += strconv.Itoa(shardIdx)
|
|
|
|
}
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2018-06-20 07:47:35 +02:00
|
|
|
transformJavaToClasses(ctx, outputFile, shardIdx, srcFiles, srcJars, flags, deps, "javac", desc)
|
2015-03-31 02:20:39 +02:00
|
|
|
}
|
|
|
|
|
2017-10-17 02:09:48 +02:00
|
|
|
func RunErrorProne(ctx android.ModuleContext, outputFile android.WritablePath,
|
2017-10-25 02:46:00 +02:00
|
|
|
srcFiles, srcJars android.Paths, flags javaBuilderFlags) {
|
2017-08-14 23:16:06 +02:00
|
|
|
|
2018-06-20 07:47:35 +02:00
|
|
|
flags.processorPath = append(flags.errorProneProcessorPath, flags.processorPath...)
|
2017-09-05 22:16:45 +02:00
|
|
|
|
2018-01-23 06:27:21 +01:00
|
|
|
if len(flags.errorProneExtraJavacFlags) > 0 {
|
|
|
|
if len(flags.javacFlags) > 0 {
|
2018-06-20 07:47:35 +02:00
|
|
|
flags.javacFlags += " " + flags.errorProneExtraJavacFlags
|
2018-01-23 06:27:21 +01:00
|
|
|
} else {
|
|
|
|
flags.javacFlags = flags.errorProneExtraJavacFlags
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-02 21:28:15 +01:00
|
|
|
transformJavaToClasses(ctx, outputFile, -1, srcFiles, srcJars, flags, nil,
|
2018-06-20 07:47:35 +02:00
|
|
|
"errorprone", "errorprone")
|
2017-10-11 20:21:07 +02:00
|
|
|
}
|
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
func TransformJavaToHeaderClasses(ctx android.ModuleContext, outputFile android.WritablePath,
|
2017-10-25 02:46:00 +02:00
|
|
|
srcFiles, srcJars android.Paths, flags javaBuilderFlags) {
|
2017-10-19 22:06:22 +02:00
|
|
|
|
|
|
|
var deps android.Paths
|
|
|
|
deps = append(deps, srcJars...)
|
|
|
|
deps = append(deps, flags.bootClasspath...)
|
|
|
|
deps = append(deps, flags.classpath...)
|
|
|
|
|
|
|
|
var bootClasspath string
|
|
|
|
if len(flags.bootClasspath) == 0 && ctx.Device() {
|
|
|
|
// explicitly specify -bootclasspath "" if the bootclasspath is empty to
|
|
|
|
// ensure java does not fall back to the default bootclasspath.
|
|
|
|
bootClasspath = `--bootclasspath ""`
|
|
|
|
} else {
|
2018-06-06 23:46:32 +02:00
|
|
|
bootClasspath = strings.Join(flags.bootClasspath.FormTurbineClasspath("--bootclasspath"), " ")
|
2017-10-19 22:06:22 +02:00
|
|
|
}
|
2017-10-25 02:46:00 +02:00
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-10-19 22:06:22 +02:00
|
|
|
Rule: turbine,
|
|
|
|
Description: "turbine",
|
|
|
|
Output: outputFile,
|
|
|
|
Inputs: srcFiles,
|
|
|
|
Implicits: deps,
|
|
|
|
Args: map[string]string{
|
|
|
|
"javacFlags": flags.javacFlags,
|
|
|
|
"bootClasspath": bootClasspath,
|
2017-10-25 02:46:00 +02:00
|
|
|
"srcJars": strings.Join(srcJars.Strings(), " "),
|
2018-06-06 23:46:32 +02:00
|
|
|
"classpath": strings.Join(flags.classpath.FormTurbineClasspath("--classpath"), " "),
|
2017-10-19 22:06:22 +02:00
|
|
|
"outDir": android.PathForModuleOut(ctx, "turbine", "classes").String(),
|
|
|
|
"javaVersion": flags.javaVersion,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-11 20:21:07 +02:00
|
|
|
// transformJavaToClasses takes source files and converts them to a jar containing .class files.
|
2017-10-17 03:07:29 +02:00
|
|
|
// srcFiles is a list of paths to sources, srcJars is a list of paths to jar files that contain
|
|
|
|
// sources. flags contains various command line flags to be passed to the compiler.
|
2017-10-11 20:21:07 +02:00
|
|
|
//
|
|
|
|
// This method may be used for different compilers, including javac and Error Prone. The rule
|
|
|
|
// argument specifies which command line to use and desc sets the description of the rule that will
|
|
|
|
// be printed at build time. The stem argument provides the file name of the output jar, and
|
|
|
|
// suffix will be appended to various intermediate files and directories to avoid collisions when
|
|
|
|
// this function is called twice in the same module directory.
|
2017-10-17 02:09:48 +02:00
|
|
|
func transformJavaToClasses(ctx android.ModuleContext, outputFile android.WritablePath,
|
2017-11-02 21:28:15 +01:00
|
|
|
shardIdx int, srcFiles, srcJars android.Paths,
|
2017-10-17 02:09:48 +02:00
|
|
|
flags javaBuilderFlags, deps android.Paths,
|
2018-06-20 07:47:35 +02:00
|
|
|
intermediatesDir, desc string) {
|
2017-08-14 23:16:06 +02:00
|
|
|
|
2017-10-17 03:07:29 +02:00
|
|
|
deps = append(deps, srcJars...)
|
2017-09-30 02:58:17 +02:00
|
|
|
|
|
|
|
var bootClasspath string
|
|
|
|
if flags.javaVersion == "1.9" {
|
|
|
|
deps = append(deps, flags.systemModules...)
|
2017-10-19 22:06:22 +02:00
|
|
|
bootClasspath = flags.systemModules.FormJavaSystemModulesPath("--system=", ctx.Device())
|
2017-09-30 02:58:17 +02:00
|
|
|
} else {
|
|
|
|
deps = append(deps, flags.bootClasspath...)
|
2017-10-19 22:06:22 +02:00
|
|
|
if len(flags.bootClasspath) == 0 && ctx.Device() {
|
|
|
|
// explicitly specify -bootclasspath "" if the bootclasspath is empty to
|
|
|
|
// ensure java does not fall back to the default bootclasspath.
|
|
|
|
bootClasspath = `-bootclasspath ""`
|
|
|
|
} else {
|
|
|
|
bootClasspath = flags.bootClasspath.FormJavaClassPath("-bootclasspath")
|
|
|
|
}
|
2017-09-30 02:58:17 +02:00
|
|
|
}
|
|
|
|
|
2017-09-15 22:00:47 +02:00
|
|
|
deps = append(deps, flags.classpath...)
|
2018-06-20 07:43:34 +02:00
|
|
|
deps = append(deps, flags.processorPath...)
|
2017-08-14 23:16:06 +02:00
|
|
|
|
2017-11-02 21:28:15 +01:00
|
|
|
srcJarDir := "srcjars"
|
|
|
|
outDir := "classes"
|
|
|
|
annoDir := "anno"
|
|
|
|
if shardIdx >= 0 {
|
|
|
|
shardDir := "shard" + strconv.Itoa(shardIdx)
|
|
|
|
srcJarDir = filepath.Join(shardDir, srcJarDir)
|
|
|
|
outDir = filepath.Join(shardDir, outDir)
|
|
|
|
annoDir = filepath.Join(shardDir, annoDir)
|
|
|
|
}
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2018-06-20 07:47:35 +02:00
|
|
|
Rule: javac,
|
2017-10-11 20:21:07 +02:00
|
|
|
Description: desc,
|
|
|
|
Output: outputFile,
|
2017-08-14 23:16:06 +02:00
|
|
|
Inputs: srcFiles,
|
|
|
|
Implicits: deps,
|
|
|
|
Args: map[string]string{
|
2017-10-17 03:07:29 +02:00
|
|
|
"javacFlags": flags.javacFlags,
|
2017-09-30 02:58:17 +02:00
|
|
|
"bootClasspath": bootClasspath,
|
2017-10-25 02:46:00 +02:00
|
|
|
"classpath": flags.classpath.FormJavaClassPath("-classpath"),
|
2018-06-20 07:43:34 +02:00
|
|
|
"processorpath": flags.processorPath.FormJavaClassPath("-processorpath"),
|
2017-10-25 02:46:00 +02:00
|
|
|
"srcJars": strings.Join(srcJars.Strings(), " "),
|
2017-11-02 21:28:15 +01:00
|
|
|
"srcJarDir": android.PathForModuleOut(ctx, intermediatesDir, srcJarDir).String(),
|
|
|
|
"outDir": android.PathForModuleOut(ctx, intermediatesDir, outDir).String(),
|
|
|
|
"annoDir": android.PathForModuleOut(ctx, intermediatesDir, annoDir).String(),
|
2017-10-25 02:46:00 +02:00
|
|
|
"javaVersion": flags.javaVersion,
|
2017-08-14 23:16:06 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-17 02:09:48 +02:00
|
|
|
func TransformResourcesToJar(ctx android.ModuleContext, outputFile android.WritablePath,
|
|
|
|
jarArgs []string, deps android.Paths) {
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-05-09 22:45:28 +02:00
|
|
|
Rule: jar,
|
|
|
|
Description: "jar",
|
|
|
|
Output: outputFile,
|
|
|
|
Implicits: deps,
|
2015-03-31 02:20:39 +02:00
|
|
|
Args: map[string]string{
|
2018-09-19 02:05:15 +02:00
|
|
|
"jarArgs": strings.Join(proptools.NinjaAndShellEscape(jarArgs), " "),
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
func TransformJarsToJar(ctx android.ModuleContext, outputFile android.WritablePath, desc string,
|
2018-07-12 21:28:41 +02:00
|
|
|
jars android.Paths, manifest android.OptionalPath, stripDirEntries bool, filesToStrip []string,
|
|
|
|
dirsToStrip []string) {
|
2017-08-30 23:24:55 +02:00
|
|
|
|
2017-09-13 07:50:46 +02:00
|
|
|
var deps android.Paths
|
|
|
|
|
|
|
|
var jarArgs []string
|
|
|
|
if manifest.Valid() {
|
2017-10-19 22:06:22 +02:00
|
|
|
jarArgs = append(jarArgs, "-m ", manifest.String())
|
2017-09-13 07:50:46 +02:00
|
|
|
deps = append(deps, manifest.Path())
|
|
|
|
}
|
|
|
|
|
2018-07-12 21:28:41 +02:00
|
|
|
for _, dir := range dirsToStrip {
|
|
|
|
jarArgs = append(jarArgs, "-stripDir ", dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, file := range filesToStrip {
|
|
|
|
jarArgs = append(jarArgs, "-stripFile ", file)
|
2017-10-19 22:06:22 +02:00
|
|
|
}
|
|
|
|
|
2017-12-21 22:52:58 +01:00
|
|
|
// Remove any module-info.class files that may have come from prebuilt jars, they cause problems
|
|
|
|
// for downstream tools like desugar.
|
|
|
|
jarArgs = append(jarArgs, "-stripFile module-info.class")
|
|
|
|
|
2018-07-12 21:28:41 +02:00
|
|
|
if stripDirEntries {
|
2017-09-13 07:50:46 +02:00
|
|
|
jarArgs = append(jarArgs, "-D")
|
|
|
|
}
|
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-08-30 23:24:55 +02:00
|
|
|
Rule: combineJar,
|
2017-10-19 22:06:22 +02:00
|
|
|
Description: desc,
|
2017-08-30 23:24:55 +02:00
|
|
|
Output: outputFile,
|
|
|
|
Inputs: jars,
|
2017-09-13 07:50:46 +02:00
|
|
|
Implicits: deps,
|
|
|
|
Args: map[string]string{
|
|
|
|
"jarArgs": strings.Join(jarArgs, " "),
|
|
|
|
},
|
2017-08-30 23:24:55 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-17 02:09:48 +02:00
|
|
|
func TransformJarJar(ctx android.ModuleContext, outputFile android.WritablePath,
|
|
|
|
classesJar android.Path, rulesFile android.Path) {
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-05-09 22:45:28 +02:00
|
|
|
Rule: jarjar,
|
|
|
|
Description: "jarjar",
|
|
|
|
Output: outputFile,
|
|
|
|
Input: classesJar,
|
|
|
|
Implicit: rulesFile,
|
2015-04-04 01:54:17 +02:00
|
|
|
Args: map[string]string{
|
2015-09-24 00:26:20 +02:00
|
|
|
"rulesFile": rulesFile.String(),
|
2015-04-04 01:54:17 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2017-09-15 22:00:47 +02:00
|
|
|
|
2018-08-28 03:31:46 +02:00
|
|
|
func TransformJetifier(ctx android.ModuleContext, outputFile android.WritablePath,
|
|
|
|
inputFile android.Path) {
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: jetifier,
|
|
|
|
Description: "jetifier",
|
|
|
|
Output: outputFile,
|
|
|
|
Input: inputFile,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-10-18 00:10:48 +02:00
|
|
|
func GenerateMainClassManifest(ctx android.ModuleContext, outputFile android.WritablePath, mainClass string) {
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.WriteFile,
|
|
|
|
Description: "manifest",
|
|
|
|
Output: outputFile,
|
|
|
|
Args: map[string]string{
|
|
|
|
"content": "Main-Class: " + mainClass + "\n",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-11-12 19:13:39 +01:00
|
|
|
func TransformZipAlign(ctx android.ModuleContext, outputFile android.WritablePath, inputFile android.Path) {
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: zipalign,
|
|
|
|
Description: "align",
|
|
|
|
Input: inputFile,
|
|
|
|
Output: outputFile,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-09-15 22:00:47 +02:00
|
|
|
type classpath []android.Path
|
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
func (x *classpath) FormJavaClassPath(optName string) string {
|
2018-08-16 05:21:55 +02:00
|
|
|
if optName != "" && !strings.HasSuffix(optName, "=") && !strings.HasSuffix(optName, " ") {
|
|
|
|
optName += " "
|
|
|
|
}
|
2017-09-15 22:00:47 +02:00
|
|
|
if len(*x) > 0 {
|
2018-08-16 05:21:55 +02:00
|
|
|
return optName + strings.Join(x.Strings(), ":")
|
2017-09-15 22:00:47 +02:00
|
|
|
} else {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-30 02:58:17 +02:00
|
|
|
// Returns a --system argument in the form javac expects with -source 1.9. If forceEmpty is true,
|
|
|
|
// returns --system=none if the list is empty to ensure javac does not fall back to the default
|
|
|
|
// system modules.
|
2017-10-19 22:06:22 +02:00
|
|
|
func (x *classpath) FormJavaSystemModulesPath(optName string, forceEmpty bool) string {
|
2017-09-30 02:58:17 +02:00
|
|
|
if len(*x) > 1 {
|
|
|
|
panic("more than one system module")
|
|
|
|
} else if len(*x) == 1 {
|
2017-10-19 22:06:22 +02:00
|
|
|
return optName + strings.TrimSuffix((*x)[0].String(), "lib/modules")
|
2017-09-30 02:58:17 +02:00
|
|
|
} else if forceEmpty {
|
2017-10-19 22:06:22 +02:00
|
|
|
return optName + "none"
|
2017-09-30 02:58:17 +02:00
|
|
|
} else {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-06 23:46:32 +02:00
|
|
|
func (x *classpath) FormTurbineClasspath(optName string) []string {
|
2017-09-15 22:00:47 +02:00
|
|
|
if x == nil || *x == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
flags := make([]string, len(*x))
|
|
|
|
for i, v := range *x {
|
2017-10-19 22:06:22 +02:00
|
|
|
flags[i] = optName + " " + v.String()
|
2017-09-15 22:00:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert a classpath to an android.Paths
|
|
|
|
func (x *classpath) Paths() android.Paths {
|
|
|
|
return append(android.Paths(nil), (*x)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *classpath) Strings() []string {
|
|
|
|
if x == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ret := make([]string, len(*x))
|
|
|
|
for i, path := range *x {
|
|
|
|
ret[i] = path.String()
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|