Snap for 8071527 from 340b39da38
to sc-d2-release
Change-Id: I2cbed3e725526e103147bf5687570d1bbe13cc6e
This commit is contained in:
commit
d4a42b37ca
|
@ -69,8 +69,6 @@ func init() {
|
||||||
pctx.StaticVariable("JavacHeapSize", "2048M")
|
pctx.StaticVariable("JavacHeapSize", "2048M")
|
||||||
pctx.StaticVariable("JavacHeapFlags", "-J-Xmx${JavacHeapSize}")
|
pctx.StaticVariable("JavacHeapFlags", "-J-Xmx${JavacHeapSize}")
|
||||||
pctx.StaticVariable("DexFlags", "-JXX:OnError='cat hs_err_pid%p.log' -JXX:CICompilerCount=6 -JXX:+UseDynamicNumberOfGCThreads")
|
pctx.StaticVariable("DexFlags", "-JXX:OnError='cat hs_err_pid%p.log' -JXX:CICompilerCount=6 -JXX:+UseDynamicNumberOfGCThreads")
|
||||||
// TODO(b/181095653): remove duplicated flags.
|
|
||||||
pctx.StaticVariable("DexJavaFlags", "-XX:OnError='cat hs_err_pid%p.log' -XX:CICompilerCount=6 -XX:+UseDynamicNumberOfGCThreads -Xmx2G")
|
|
||||||
|
|
||||||
pctx.StaticVariable("CommonJdkFlags", strings.Join([]string{
|
pctx.StaticVariable("CommonJdkFlags", strings.Join([]string{
|
||||||
`-Xmaxerrs 9999999`,
|
`-Xmaxerrs 9999999`,
|
||||||
|
|
13
java/dex.go
13
java/dex.go
|
@ -84,11 +84,6 @@ func (d *dexer) effectiveOptimizeEnabled() bool {
|
||||||
return BoolDefault(d.dexProperties.Optimize.Enabled, d.dexProperties.Optimize.EnabledByDefault)
|
return BoolDefault(d.dexProperties.Optimize.Enabled, d.dexProperties.Optimize.EnabledByDefault)
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
|
||||||
pctx.HostBinToolVariable("runWithTimeoutCmd", "run_with_timeout")
|
|
||||||
pctx.SourcePathVariable("jstackCmd", "${config.JavaToolchain}/jstack")
|
|
||||||
}
|
|
||||||
|
|
||||||
var d8, d8RE = pctx.MultiCommandRemoteStaticRules("d8",
|
var d8, d8RE = pctx.MultiCommandRemoteStaticRules("d8",
|
||||||
blueprint.RuleParams{
|
blueprint.RuleParams{
|
||||||
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
||||||
|
@ -122,10 +117,7 @@ var r8, r8RE = pctx.MultiCommandRemoteStaticRules("r8",
|
||||||
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
|
||||||
`rm -f "$outDict" && rm -rf "${outUsageDir}" && ` +
|
`rm -f "$outDict" && rm -rf "${outUsageDir}" && ` +
|
||||||
`mkdir -p $$(dirname ${outUsage}) && ` +
|
`mkdir -p $$(dirname ${outUsage}) && ` +
|
||||||
// TODO(b/181095653): remove R8 timeout and go back to config.R8Cmd.
|
`$r8Template${config.R8Cmd} ${config.DexFlags} -injars $in --output $outDir ` +
|
||||||
`${runWithTimeoutCmd} -timeout 30m -on_timeout '${jstackCmd} $$PID' -- ` +
|
|
||||||
`$r8Template${config.JavaCmd} ${config.DexJavaFlags} -cp ${config.R8Jar} ` +
|
|
||||||
`com.android.tools.r8.compatproguard.CompatProguard -injars $in --output $outDir ` +
|
|
||||||
`--no-data-resources ` +
|
`--no-data-resources ` +
|
||||||
`-printmapping ${outDict} ` +
|
`-printmapping ${outDict} ` +
|
||||||
`-printusage ${outUsage} ` +
|
`-printusage ${outUsage} ` +
|
||||||
|
@ -136,10 +128,9 @@ var r8, r8RE = pctx.MultiCommandRemoteStaticRules("r8",
|
||||||
`$zipTemplate${config.SoongZipCmd} $zipFlags -o $outDir/classes.dex.jar -C $outDir -f "$outDir/classes*.dex" && ` +
|
`$zipTemplate${config.SoongZipCmd} $zipFlags -o $outDir/classes.dex.jar -C $outDir -f "$outDir/classes*.dex" && ` +
|
||||||
`${config.MergeZipsCmd} -D -stripFile "**/*.class" $out $outDir/classes.dex.jar $in`,
|
`${config.MergeZipsCmd} -D -stripFile "**/*.class" $out $outDir/classes.dex.jar $in`,
|
||||||
CommandDeps: []string{
|
CommandDeps: []string{
|
||||||
"${config.R8Jar}",
|
"${config.R8Cmd}",
|
||||||
"${config.SoongZipCmd}",
|
"${config.SoongZipCmd}",
|
||||||
"${config.MergeZipsCmd}",
|
"${config.MergeZipsCmd}",
|
||||||
"${runWithTimeoutCmd}",
|
|
||||||
},
|
},
|
||||||
}, map[string]*remoteexec.REParams{
|
}, map[string]*remoteexec.REParams{
|
||||||
"$r8Template": &remoteexec.REParams{
|
"$r8Template": &remoteexec.REParams{
|
||||||
|
|
Loading…
Reference in New Issue