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 (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
2017-09-05 22:16:45 +02:00
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/java/config"
|
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
|
|
|
|
// this, all java rules write into separate directories and then a post-processing step lists
|
|
|
|
// the files in the the directory into a list file that later rules depend on (and sometimes
|
|
|
|
// read from directly using @<listfile>)
|
2017-06-05 10:41:50 +02:00
|
|
|
javac = pctx.AndroidGomaStaticRule("javac",
|
2015-03-31 02:20:39 +02:00
|
|
|
blueprint.RuleParams{
|
2017-08-08 22:17:59 +02:00
|
|
|
Command: `rm -rf "$outDir" "$annoDir" && mkdir -p "$outDir" "$annoDir" && ` +
|
2017-10-17 22:56:52 +02:00
|
|
|
`${config.SoongJavacWrapper} ${config.JavacWrapper}${config.JavacCmd} ${config.JavacHeapFlags} ${config.CommonJdkFlags} ` +
|
2017-10-17 03:07:29 +02:00
|
|
|
`$javacFlags $sourcepath $bootClasspath $classpath ` +
|
2017-08-08 22:17:59 +02:00
|
|
|
`-source $javaVersion -target $javaVersion ` +
|
2017-08-11 02:58:12 +02:00
|
|
|
`-d $outDir -s $annoDir @$out.rsp && ` +
|
2017-08-30 23:24:55 +02:00
|
|
|
`${config.SoongZipCmd} -jar -o $out -C $outDir -D $outDir`,
|
2017-10-17 22:56:52 +02:00
|
|
|
CommandDeps: []string{"${config.JavacCmd}", "${config.SoongZipCmd}"},
|
|
|
|
CommandOrderOnly: []string{"${config.SoongJavacWrapper}"},
|
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$in",
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
2017-10-17 03:07:29 +02:00
|
|
|
"javacFlags", "sourcepath", "bootClasspath", "classpath", "outDir", "annoDir", "javaVersion")
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-08-15 22:34:18 +02:00
|
|
|
kotlinc = pctx.AndroidGomaStaticRule("kotlinc",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
// TODO(ccross): kotlinc doesn't support @ file for arguments, which will limit the
|
|
|
|
// maximum number of input files, especially on darwin.
|
|
|
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
|
|
|
`${config.KotlincCmd} $classpath $kotlincFlags ` +
|
|
|
|
`-jvm-target $javaVersion -d $outDir $in && ` +
|
|
|
|
`${config.SoongZipCmd} -jar -o $out -C $outDir -D $outDir`,
|
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.KotlincCmd}",
|
|
|
|
"${config.KotlinCompilerJar}",
|
|
|
|
"${config.SoongZipCmd}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"kotlincFlags", "classpath", "outDir", "javaVersion")
|
|
|
|
|
2017-08-14 23:16:06 +02:00
|
|
|
errorprone = pctx.AndroidStaticRule("errorprone",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `rm -rf "$outDir" "$annoDir" && mkdir -p "$outDir" "$annoDir" && ` +
|
2017-10-17 22:56:52 +02:00
|
|
|
`${config.SoongJavacWrapper} ${config.ErrorProneCmd} ` +
|
2017-10-17 03:07:29 +02:00
|
|
|
`$javacFlags $sourcepath $bootClasspath $classpath ` +
|
2017-08-14 23:16:06 +02:00
|
|
|
`-source $javaVersion -target $javaVersion ` +
|
|
|
|
`-d $outDir -s $annoDir @$out.rsp && ` +
|
2017-08-30 23:24:55 +02:00
|
|
|
`${config.SoongZipCmd} -jar -o $out -C $outDir -D $outDir`,
|
2017-08-14 23:16:06 +02:00
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.JavaCmd}",
|
|
|
|
"${config.ErrorProneJavacJar}",
|
|
|
|
"${config.ErrorProneJar}",
|
2017-08-30 23:24:55 +02:00
|
|
|
"${config.SoongZipCmd}",
|
2017-08-14 23:16:06 +02:00
|
|
|
},
|
2017-10-17 22:56:52 +02:00
|
|
|
CommandOrderOnly: []string{"${config.SoongJavacWrapper}"},
|
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$in",
|
2017-08-14 23:16:06 +02:00
|
|
|
},
|
2017-10-17 03:07:29 +02:00
|
|
|
"javacFlags", "sourcepath", "bootClasspath", "classpath", "outDir", "annoDir", "javaVersion")
|
2017-08-14 23:16:06 +02:00
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
turbine = pctx.AndroidStaticRule("turbine",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
|
|
|
`${config.JavaCmd} -jar ${config.TurbineJar} --output $out.tmp ` +
|
|
|
|
`--temp_dir "$outDir" --sources @$out.rsp $sourcepath ` +
|
|
|
|
`--javacopts ${config.CommonJdkFlags} ` +
|
|
|
|
`$javacFlags -source $javaVersion -target $javaVersion $bootClasspath $classpath && ` +
|
|
|
|
`${config.Ziptime} $out.tmp && ` +
|
|
|
|
`(if cmp -s $out.tmp $out ; then rm $out.tmp ; else mv $out.tmp $out ; fi )`,
|
|
|
|
CommandDeps: []string{"${config.TurbineJar}", "${config.JavaCmd}", "${config.Ziptime}"},
|
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$in",
|
|
|
|
Restat: true,
|
|
|
|
},
|
|
|
|
"javacFlags", "sourcepath", "bootClasspath", "classpath", "outDir", "javaVersion")
|
|
|
|
|
2016-08-30 01:14:13 +02:00
|
|
|
jar = pctx.AndroidStaticRule("jar",
|
2015-03-31 02:20:39 +02:00
|
|
|
blueprint.RuleParams{
|
2017-08-30 23:24:55 +02:00
|
|
|
Command: `${config.SoongZipCmd} -jar -o $out $jarArgs`,
|
|
|
|
CommandDeps: []string{"${config.SoongZipCmd}"},
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
2017-08-30 23:24:55 +02:00
|
|
|
"jarArgs")
|
|
|
|
|
|
|
|
combineJar = pctx.AndroidStaticRule("combineJar",
|
|
|
|
blueprint.RuleParams{
|
2017-09-13 07:50:46 +02:00
|
|
|
Command: `${config.MergeZipsCmd} -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
|
|
|
|
2017-09-15 22:00:47 +02:00
|
|
|
desugar = pctx.AndroidStaticRule("desugar",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `rm -rf $dumpDir && mkdir -p $dumpDir && ` +
|
|
|
|
`${config.JavaCmd} ` +
|
|
|
|
`-Djdk.internal.lambda.dumpProxyClasses=$$(cd $dumpDir && pwd) ` +
|
|
|
|
`$javaFlags ` +
|
|
|
|
`-jar ${config.DesugarJar} $classpathFlags $desugarFlags ` +
|
|
|
|
`-i $in -o $out`,
|
2017-10-19 22:06:22 +02:00
|
|
|
CommandDeps: []string{"${config.DesugarJar}", "${config.JavaCmd}"},
|
2017-09-15 22:00:47 +02:00
|
|
|
},
|
|
|
|
"javaFlags", "classpathFlags", "desugarFlags", "dumpDir")
|
|
|
|
|
2016-08-30 01:14:13 +02:00
|
|
|
dx = pctx.AndroidStaticRule("dx",
|
2015-03-31 02:20:39 +02:00
|
|
|
blueprint.RuleParams{
|
2015-04-11 02:44:24 +02:00
|
|
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
2017-09-15 22:00:47 +02:00
|
|
|
`${config.DxCmd} --dex --output=$outDir $dxFlags $in && ` +
|
2017-10-05 02:07:09 +02:00
|
|
|
`${config.SoongZipCmd} -o $outDir/classes.dex.jar -C $outDir -D $outDir && ` +
|
|
|
|
`${config.MergeZipsCmd} -D -stripFile "*.class" $out $outDir/classes.dex.jar $in`,
|
2017-09-15 22:00:47 +02:00
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.DxCmd}",
|
|
|
|
"${config.SoongZipCmd}",
|
2017-10-05 02:07:09 +02:00
|
|
|
"${config.MergeZipsCmd}",
|
2017-09-15 22:00:47 +02:00
|
|
|
},
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
|
|
|
"outDir", "dxFlags")
|
2015-04-04 01:53:05 +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")
|
2015-03-31 02:20:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
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
|
|
|
|
dxFlags string
|
2017-09-15 22:00:47 +02:00
|
|
|
bootClasspath classpath
|
|
|
|
classpath classpath
|
2017-09-30 02:58:17 +02:00
|
|
|
systemModules classpath
|
2017-09-15 22:00:47 +02:00
|
|
|
desugarFlags string
|
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
|
|
|
|
2017-08-15 22:34:18 +02:00
|
|
|
kotlincFlags string
|
|
|
|
kotlincClasspath classpath
|
|
|
|
|
2017-09-20 21:59:05 +02:00
|
|
|
protoFlags string
|
|
|
|
protoOutFlag string
|
2015-03-31 02:20:39 +02:00
|
|
|
}
|
|
|
|
|
2017-08-15 22:34:18 +02:00
|
|
|
func TransformKotlinToClasses(ctx android.ModuleContext, outputFile android.WritablePath,
|
|
|
|
srcFiles android.Paths, srcJars classpath,
|
|
|
|
flags javaBuilderFlags) {
|
|
|
|
|
2017-10-18 23:44:18 +02:00
|
|
|
classDir := android.PathForModuleOut(ctx, "kotlinc", "classes")
|
2017-08-15 22:34:18 +02:00
|
|
|
|
|
|
|
inputs := append(android.Paths(nil), srcFiles...)
|
|
|
|
inputs = append(inputs, srcJars...)
|
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-08-15 22:34:18 +02:00
|
|
|
Rule: kotlinc,
|
|
|
|
Description: "kotlinc",
|
|
|
|
Output: outputFile,
|
|
|
|
Inputs: inputs,
|
|
|
|
Args: map[string]string{
|
2017-10-19 22:06:22 +02:00
|
|
|
"classpath": flags.kotlincClasspath.FormJavaClassPath("--classpath"),
|
2017-08-15 22:34:18 +02:00
|
|
|
"kotlincFlags": flags.kotlincFlags,
|
|
|
|
"outDir": classDir.String(),
|
|
|
|
"javaVersion": flags.javaVersion,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-17 02:09:48 +02:00
|
|
|
func TransformJavaToClasses(ctx android.ModuleContext, outputFile android.WritablePath,
|
2017-10-17 03:07:29 +02:00
|
|
|
srcFiles android.Paths, srcJars classpath,
|
2017-10-17 02:09:48 +02:00
|
|
|
flags javaBuilderFlags, deps android.Paths) {
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-10-17 03:07:29 +02:00
|
|
|
transformJavaToClasses(ctx, outputFile, srcFiles, srcJars, flags, deps,
|
2017-10-18 23:44:18 +02:00
|
|
|
"javac", "javac", javac)
|
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-19 22:06:22 +02:00
|
|
|
srcFiles android.Paths, srcJars classpath, flags javaBuilderFlags) {
|
2017-08-14 23:16:06 +02:00
|
|
|
|
2017-09-05 22:16:45 +02:00
|
|
|
if config.ErrorProneJar == "" {
|
|
|
|
ctx.ModuleErrorf("cannot build with Error Prone, missing external/error_prone?")
|
|
|
|
}
|
|
|
|
|
2017-10-17 03:07:29 +02:00
|
|
|
transformJavaToClasses(ctx, outputFile, srcFiles, srcJars, flags, nil,
|
2017-10-18 23:44:18 +02:00
|
|
|
"errorprone", "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,
|
|
|
|
srcFiles android.Paths, srcJars classpath, flags javaBuilderFlags) {
|
|
|
|
|
|
|
|
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 {
|
|
|
|
bootClasspath = flags.bootClasspath.FormJavaClassPath("--bootclasspath")
|
|
|
|
}
|
|
|
|
var sourcepath string
|
|
|
|
if len(srcJars) > 0 {
|
|
|
|
sourcepath = "--sourcepath_jars" + " " + strings.Join(srcJars.Strings(), " ")
|
|
|
|
} else {
|
|
|
|
sourcepath = ""
|
|
|
|
}
|
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,
|
|
|
|
"sourcepath": sourcepath,
|
|
|
|
"classpath": flags.classpath.FormJavaClassPath("--classpath"),
|
|
|
|
"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-10-17 03:07:29 +02:00
|
|
|
srcFiles android.Paths, srcJars classpath,
|
2017-10-17 02:09:48 +02:00
|
|
|
flags javaBuilderFlags, deps android.Paths,
|
2017-10-18 23:44:18 +02:00
|
|
|
intermediatesDir, desc string, rule blueprint.Rule) {
|
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...)
|
2017-08-14 23:16:06 +02:00
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-10-11 20:21:07 +02:00
|
|
|
Rule: rule,
|
|
|
|
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-19 22:06:22 +02:00
|
|
|
// Returns a -sourcepath argument in the form javac expects. If the list is empty returns
|
|
|
|
// -sourcepath "" to ensure javac does not fall back to searching the classpath for sources.
|
|
|
|
"sourcepath": srcJars.FormJavaClassPath("-sourcepath"),
|
|
|
|
"classpath": flags.classpath.FormJavaClassPath("-classpath"),
|
|
|
|
"outDir": android.PathForModuleOut(ctx, intermediatesDir, "classes").String(),
|
|
|
|
"annoDir": android.PathForModuleOut(ctx, intermediatesDir, "anno").String(),
|
|
|
|
"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{
|
2017-08-30 23:24:55 +02:00
|
|
|
"jarArgs": strings.Join(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,
|
|
|
|
jars android.Paths, manifest android.OptionalPath, stripDirs bool, 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())
|
|
|
|
}
|
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
if dirsToStrip != nil {
|
|
|
|
for _, dir := range dirsToStrip {
|
|
|
|
jarArgs = append(jarArgs, "-stripDir ", dir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-13 07:50:46 +02:00
|
|
|
if stripDirs {
|
|
|
|
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 TransformDesugar(ctx android.ModuleContext, outputFile android.WritablePath,
|
|
|
|
classesJar android.Path, flags javaBuilderFlags) {
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-10-18 23:44:18 +02:00
|
|
|
dumpDir := android.PathForModuleOut(ctx, "desugar", "classes")
|
2017-09-15 22:00:47 +02:00
|
|
|
|
|
|
|
javaFlags := ""
|
2017-09-30 02:58:17 +02:00
|
|
|
if ctx.AConfig().UseOpenJDK9() {
|
2017-09-15 22:00:47 +02:00
|
|
|
javaFlags = "--add-opens java.base/java.lang.invoke=ALL-UNNAMED"
|
|
|
|
}
|
|
|
|
|
|
|
|
var desugarFlags []string
|
2017-10-19 22:06:22 +02:00
|
|
|
desugarFlags = append(desugarFlags, flags.bootClasspath.FormDesugarClasspath("--bootclasspath_entry")...)
|
|
|
|
desugarFlags = append(desugarFlags, flags.classpath.FormDesugarClasspath("--classpath_entry")...)
|
2017-09-15 22:00:47 +02:00
|
|
|
|
|
|
|
var deps android.Paths
|
|
|
|
deps = append(deps, flags.bootClasspath...)
|
|
|
|
deps = append(deps, flags.classpath...)
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-09-15 22:00:47 +02:00
|
|
|
Rule: desugar,
|
|
|
|
Description: "desugar",
|
2017-05-09 22:45:28 +02:00
|
|
|
Output: outputFile,
|
|
|
|
Input: classesJar,
|
2017-09-15 22:00:47 +02:00
|
|
|
Implicits: deps,
|
2015-03-31 02:20:39 +02:00
|
|
|
Args: map[string]string{
|
2017-09-15 22:00:47 +02:00
|
|
|
"dumpDir": dumpDir.String(),
|
|
|
|
"javaFlags": javaFlags,
|
|
|
|
"classpathFlags": strings.Join(desugarFlags, " "),
|
|
|
|
"desugarFlags": flags.desugarFlags,
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-05 02:07:09 +02:00
|
|
|
// Converts a classes.jar file to classes*.dex, then combines the dex files with any resources
|
|
|
|
// in the classes.jar file into a dex jar.
|
2017-10-17 02:09:48 +02:00
|
|
|
func TransformClassesJarToDexJar(ctx android.ModuleContext, outputFile android.WritablePath,
|
|
|
|
classesJar android.Path, flags javaBuilderFlags) {
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-09-15 22:00:47 +02:00
|
|
|
outDir := android.PathForModuleOut(ctx, "dex")
|
2015-03-31 02:20:39 +02:00
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2017-09-15 22:00:47 +02:00
|
|
|
Rule: dx,
|
|
|
|
Description: "dx",
|
2017-05-09 22:45:28 +02:00
|
|
|
Output: outputFile,
|
2017-09-15 22:00:47 +02:00
|
|
|
Input: classesJar,
|
2015-03-31 02:20:39 +02:00
|
|
|
Args: map[string]string{
|
2017-09-15 22:00:47 +02:00
|
|
|
"dxFlags": flags.dxFlags,
|
|
|
|
"outDir": outDir.String(),
|
2015-03-31 02:20:39 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2015-04-04 01:53:05 +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
|
|
|
|
|
|
|
type classpath []android.Path
|
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
func (x *classpath) FormJavaClassPath(optName string) string {
|
2017-09-15 22:00:47 +02:00
|
|
|
if len(*x) > 0 {
|
2017-10-19 22:06:22 +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 ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-19 22:06:22 +02:00
|
|
|
func (x *classpath) FormDesugarClasspath(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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append an android.Paths to the end of the classpath list
|
|
|
|
func (x *classpath) AddPaths(paths android.Paths) {
|
|
|
|
for _, path := range paths {
|
|
|
|
*x = append(*x, path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|