2017-12-23 00:56:08 +01:00
|
|
|
// Copyright 2017 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 (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
var d8 = pctx.AndroidStaticRule("d8",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
2019-02-21 23:58:58 +01:00
|
|
|
`${config.D8Cmd} ${config.DexFlags} --output $outDir $d8Flags $in && ` +
|
2018-10-05 23:20:06 +02:00
|
|
|
`${config.SoongZipCmd} $zipFlags -o $outDir/classes.dex.jar -C $outDir -f "$outDir/classes*.dex" && ` +
|
2018-07-15 17:16:31 +02:00
|
|
|
`${config.MergeZipsCmd} -D -stripFile "**/*.class" $out $outDir/classes.dex.jar $in`,
|
2017-12-23 00:56:08 +01:00
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.D8Cmd}",
|
|
|
|
"${config.SoongZipCmd}",
|
|
|
|
"${config.MergeZipsCmd}",
|
|
|
|
},
|
|
|
|
},
|
2018-10-05 23:20:06 +02:00
|
|
|
"outDir", "d8Flags", "zipFlags")
|
2017-12-23 00:56:08 +01:00
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
var r8 = pctx.AndroidStaticRule("r8",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
2018-08-22 16:16:23 +02:00
|
|
|
`rm -f "$outDict" && ` +
|
2019-02-21 23:58:58 +01:00
|
|
|
`${config.R8Cmd} ${config.DexFlags} -injars $in --output $outDir ` +
|
2017-12-28 21:23:20 +01:00
|
|
|
`--force-proguard-compatibility ` +
|
2018-09-14 15:20:42 +02:00
|
|
|
`--no-data-resources ` +
|
2017-12-28 21:23:20 +01:00
|
|
|
`-printmapping $outDict ` +
|
2018-09-21 21:29:22 +02:00
|
|
|
`$r8Flags && ` +
|
2018-08-22 16:16:23 +02:00
|
|
|
`touch "$outDict" && ` +
|
2018-10-05 23:20:06 +02:00
|
|
|
`${config.SoongZipCmd} $zipFlags -o $outDir/classes.dex.jar -C $outDir -f "$outDir/classes*.dex" && ` +
|
2018-07-15 17:16:31 +02:00
|
|
|
`${config.MergeZipsCmd} -D -stripFile "**/*.class" $out $outDir/classes.dex.jar $in`,
|
2017-12-28 21:23:20 +01:00
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.R8Cmd}",
|
|
|
|
"${config.SoongZipCmd}",
|
|
|
|
"${config.MergeZipsCmd}",
|
|
|
|
},
|
|
|
|
},
|
2018-10-05 23:20:06 +02:00
|
|
|
"outDir", "outDict", "r8Flags", "zipFlags")
|
2017-12-28 21:23:20 +01:00
|
|
|
|
2018-09-21 21:29:22 +02:00
|
|
|
func (j *Module) dexCommonFlags(ctx android.ModuleContext) []string {
|
2017-12-23 00:56:08 +01:00
|
|
|
flags := j.deviceProperties.Dxflags
|
2018-06-06 23:46:32 +02:00
|
|
|
// Translate all the DX flags to D8 ones until all the build files have been migrated
|
|
|
|
// to D8 flags. See: b/69377755
|
|
|
|
flags = android.RemoveListFromList(flags,
|
|
|
|
[]string{"--core-library", "--dex", "--multi-dex"})
|
2017-12-23 00:56:08 +01:00
|
|
|
|
|
|
|
if ctx.Config().Getenv("NO_OPTIMIZE_DX") != "" {
|
2018-06-06 23:46:32 +02:00
|
|
|
flags = append(flags, "--debug")
|
2017-12-23 00:56:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Config().Getenv("GENERATE_DEX_DEBUG") != "" {
|
|
|
|
flags = append(flags,
|
|
|
|
"--debug",
|
|
|
|
"--verbose")
|
|
|
|
}
|
|
|
|
|
2018-06-26 00:48:06 +02:00
|
|
|
minSdkVersion, err := sdkVersionToNumberAsString(ctx, j.minSdkVersion())
|
|
|
|
if err != nil {
|
|
|
|
ctx.PropertyErrorf("min_sdk_version", "%s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = append(flags, "--min-api "+minSdkVersion)
|
2017-12-23 00:56:08 +01:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
2018-09-28 17:06:24 +02:00
|
|
|
func (j *Module) d8Flags(ctx android.ModuleContext, flags javaBuilderFlags) ([]string, android.Paths) {
|
2018-09-21 21:29:22 +02:00
|
|
|
d8Flags := j.dexCommonFlags(ctx)
|
|
|
|
|
2019-01-18 00:42:52 +01:00
|
|
|
d8Flags = append(d8Flags, flags.bootClasspath.FormTurbineClasspath("--lib ")...)
|
|
|
|
d8Flags = append(d8Flags, flags.classpath.FormTurbineClasspath("--lib ")...)
|
2018-09-21 21:29:22 +02:00
|
|
|
|
2018-09-28 17:06:24 +02:00
|
|
|
var d8Deps android.Paths
|
|
|
|
d8Deps = append(d8Deps, flags.bootClasspath...)
|
|
|
|
d8Deps = append(d8Deps, flags.classpath...)
|
|
|
|
|
|
|
|
return d8Flags, d8Deps
|
2018-09-21 21:29:22 +02:00
|
|
|
}
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
func (j *Module) r8Flags(ctx android.ModuleContext, flags javaBuilderFlags) (r8Flags []string, r8Deps android.Paths) {
|
|
|
|
opt := j.deviceProperties.Optimize
|
|
|
|
|
|
|
|
// When an app contains references to APIs that are not in the SDK specified by
|
|
|
|
// its LOCAL_SDK_VERSION for example added by support library or by runtime
|
2018-06-06 23:46:32 +02:00
|
|
|
// classes added by desugaring, we artifically raise the "SDK version" "linked" by
|
2017-12-28 21:23:20 +01:00
|
|
|
// ProGuard, to
|
|
|
|
// - suppress ProGuard warnings of referencing symbols unknown to the lower SDK version.
|
|
|
|
// - prevent ProGuard stripping subclass in the support library that extends class added in the higher SDK version.
|
|
|
|
// See b/20667396
|
|
|
|
var proguardRaiseDeps classpath
|
|
|
|
ctx.VisitDirectDepsWithTag(proguardRaiseTag, func(dep android.Module) {
|
|
|
|
proguardRaiseDeps = append(proguardRaiseDeps, dep.(Dependency).HeaderJars()...)
|
|
|
|
})
|
|
|
|
|
2018-09-21 21:29:22 +02:00
|
|
|
r8Flags = append(r8Flags, j.dexCommonFlags(ctx)...)
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
r8Flags = append(r8Flags, proguardRaiseDeps.FormJavaClassPath("-libraryjars"))
|
|
|
|
r8Flags = append(r8Flags, flags.bootClasspath.FormJavaClassPath("-libraryjars"))
|
|
|
|
r8Flags = append(r8Flags, flags.classpath.FormJavaClassPath("-libraryjars"))
|
|
|
|
r8Flags = append(r8Flags, "-forceprocessing")
|
|
|
|
|
2018-09-28 17:06:24 +02:00
|
|
|
r8Deps = append(r8Deps, proguardRaiseDeps...)
|
|
|
|
r8Deps = append(r8Deps, flags.bootClasspath...)
|
|
|
|
r8Deps = append(r8Deps, flags.classpath...)
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
flagFiles := android.Paths{
|
|
|
|
android.PathForSource(ctx, "build/make/core/proguard.flags"),
|
|
|
|
}
|
|
|
|
|
2018-01-04 00:06:47 +01:00
|
|
|
if j.shouldInstrumentStatic(ctx) {
|
|
|
|
flagFiles = append(flagFiles,
|
|
|
|
android.PathForSource(ctx, "build/make/core/proguard.jacoco.flags"))
|
|
|
|
}
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
flagFiles = append(flagFiles, j.extraProguardFlagFiles...)
|
|
|
|
// TODO(ccross): static android library proguard files
|
|
|
|
|
2018-08-13 19:28:18 +02:00
|
|
|
flagFiles = append(flagFiles, android.PathsForModuleSrc(ctx, j.deviceProperties.Optimize.Proguard_flags_files)...)
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
r8Flags = append(r8Flags, android.JoinWithPrefix(flagFiles.Strings(), "-include "))
|
|
|
|
r8Deps = append(r8Deps, flagFiles...)
|
|
|
|
|
|
|
|
// TODO(b/70942988): This is included from build/make/core/proguard.flags
|
|
|
|
r8Deps = append(r8Deps, android.PathForSource(ctx,
|
|
|
|
"build/make/core/proguard_basic_keeps.flags"))
|
|
|
|
|
|
|
|
r8Flags = append(r8Flags, j.deviceProperties.Optimize.Proguard_flags...)
|
|
|
|
|
|
|
|
// TODO(ccross): Don't shrink app instrumentation tests by default.
|
|
|
|
if !Bool(opt.Shrink) {
|
|
|
|
r8Flags = append(r8Flags, "-dontshrink")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !Bool(opt.Optimize) {
|
|
|
|
r8Flags = append(r8Flags, "-dontoptimize")
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(ccross): error if obufscation + app instrumentation test.
|
|
|
|
if !Bool(opt.Obfuscate) {
|
|
|
|
r8Flags = append(r8Flags, "-dontobfuscate")
|
|
|
|
}
|
2018-10-16 01:18:06 +02:00
|
|
|
// TODO(ccross): if this is an instrumentation test of an obfuscated app, use the
|
|
|
|
// dictionary of the app and move the app from libraryjars to injars.
|
2017-12-28 21:23:20 +01:00
|
|
|
|
2018-11-30 00:08:44 +01:00
|
|
|
// Don't strip out debug information for eng builds.
|
|
|
|
if ctx.Config().Eng() {
|
|
|
|
r8Flags = append(r8Flags, "--debug")
|
|
|
|
}
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
return r8Flags, r8Deps
|
|
|
|
}
|
|
|
|
|
2017-12-23 00:56:08 +01:00
|
|
|
func (j *Module) compileDex(ctx android.ModuleContext, flags javaBuilderFlags,
|
2018-08-15 20:19:12 +02:00
|
|
|
classesJar android.Path, jarName string) android.ModuleOutPath {
|
2017-12-23 00:56:08 +01:00
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
useR8 := Bool(j.deviceProperties.Optimize.Enabled)
|
2017-12-23 00:56:08 +01:00
|
|
|
|
|
|
|
// Compile classes.jar into classes.dex and then javalib.jar
|
|
|
|
javalibJar := android.PathForModuleOut(ctx, "dex", jarName)
|
|
|
|
outDir := android.PathForModuleOut(ctx, "dex")
|
|
|
|
|
2019-02-15 19:14:23 +01:00
|
|
|
zipFlags := "--ignore_missing_files"
|
2018-10-05 23:20:06 +02:00
|
|
|
if j.deviceProperties.UncompressDex {
|
2019-02-15 19:14:23 +01:00
|
|
|
zipFlags += " -L 0"
|
2018-10-05 23:20:06 +02:00
|
|
|
}
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
if useR8 {
|
2018-05-17 01:47:21 +02:00
|
|
|
proguardDictionary := android.PathForModuleOut(ctx, "proguard_dictionary")
|
|
|
|
j.proguardDictionary = proguardDictionary
|
2017-12-28 21:23:20 +01:00
|
|
|
r8Flags, r8Deps := j.r8Flags(ctx, flags)
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2018-05-17 01:47:21 +02:00
|
|
|
Rule: r8,
|
|
|
|
Description: "r8",
|
|
|
|
Output: javalibJar,
|
|
|
|
ImplicitOutput: proguardDictionary,
|
|
|
|
Input: classesJar,
|
|
|
|
Implicits: r8Deps,
|
2017-12-28 21:23:20 +01:00
|
|
|
Args: map[string]string{
|
2018-10-05 23:20:06 +02:00
|
|
|
"r8Flags": strings.Join(r8Flags, " "),
|
|
|
|
"zipFlags": zipFlags,
|
|
|
|
"outDict": j.proguardDictionary.String(),
|
|
|
|
"outDir": outDir.String(),
|
2017-12-28 21:23:20 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
} else {
|
2018-09-28 17:06:24 +02:00
|
|
|
d8Flags, d8Deps := j.d8Flags(ctx, flags)
|
2017-12-28 21:23:20 +01:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
2018-06-06 23:46:32 +02:00
|
|
|
Rule: d8,
|
|
|
|
Description: "d8",
|
2017-12-28 21:23:20 +01:00
|
|
|
Output: javalibJar,
|
|
|
|
Input: classesJar,
|
2018-09-28 17:06:24 +02:00
|
|
|
Implicits: d8Deps,
|
2017-12-28 21:23:20 +01:00
|
|
|
Args: map[string]string{
|
2018-10-05 23:20:06 +02:00
|
|
|
"d8Flags": strings.Join(d8Flags, " "),
|
|
|
|
"zipFlags": zipFlags,
|
|
|
|
"outDir": outDir.String(),
|
2017-12-28 21:23:20 +01:00
|
|
|
},
|
|
|
|
})
|
2017-12-23 00:56:08 +01:00
|
|
|
}
|
2019-01-22 00:20:23 +01:00
|
|
|
if j.deviceProperties.UncompressDex {
|
|
|
|
alignedJavalibJar := android.PathForModuleOut(ctx, "aligned", jarName)
|
|
|
|
TransformZipAlign(ctx, alignedJavalibJar, javalibJar)
|
|
|
|
javalibJar = alignedJavalibJar
|
|
|
|
}
|
2017-12-23 00:56:08 +01:00
|
|
|
|
|
|
|
return javalibJar
|
|
|
|
}
|