Merge "Check UseRBE is set before replacing any template with the RE version." am: 3e0b9c031c
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1419252
Test:
1. Applied https://googleplex-android-review.git.corp.google.com/c/platform/build/soong/+/15723183, confirmed that the build fails on rvc-dev (by running `USE_RBE=false m `)
2. Subsequently applied this patch and tested to confirm that the failure is fixed (by running `USE_RBE=false m out/soong/.intermediates/vendor/qcom/sm7250/proprietary/commonsys/qcrilOemHook/qcrilmsgtunnel/android_common/combined/qcrilmsgtunnel.jar` and `USE_RBE=true m out/soong/.intermediates/vendor/qcom/sm7250/proprietary/commonsys/qcrilOemHook/qcrilmsgtunnel/android_common/combined/qcrilmsgtunnel.jar`).
Bug: b/198045383
Merged-In: I6df58b4e700f0d231367af2710672d731d20a736
Change-Id: I52b7a3810fdf3314ae107f4b8330e9d6f62c6302
(cherry picked from commit f15ed4fe61
)
This commit is contained in:
parent
9f6fa868c5
commit
4e2977ee81
|
@ -517,7 +517,7 @@ func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles and
|
||||||
sAbiDumpFiles = append(sAbiDumpFiles, sAbiDumpFile)
|
sAbiDumpFiles = append(sAbiDumpFiles, sAbiDumpFile)
|
||||||
|
|
||||||
dumpRule := sAbiDump
|
dumpRule := sAbiDump
|
||||||
if ctx.Config().IsEnvTrue("RBE_ABI_DUMPER") {
|
if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_ABI_DUMPER") {
|
||||||
dumpRule = sAbiDumpRE
|
dumpRule = sAbiDumpRE
|
||||||
}
|
}
|
||||||
ctx.Build(pctx, android.BuildParams{
|
ctx.Build(pctx, android.BuildParams{
|
||||||
|
@ -702,7 +702,7 @@ func TransformObjToDynamicBinary(ctx android.ModuleContext,
|
||||||
}
|
}
|
||||||
|
|
||||||
rule := ld
|
rule := ld
|
||||||
if ctx.Config().IsEnvTrue("RBE_CXX_LINKS") {
|
if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_CXX_LINKS") {
|
||||||
rule = ldRE
|
rule = ldRE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -848,7 +848,7 @@ func TransformObjsToObj(ctx android.ModuleContext, objFiles android.Paths,
|
||||||
"ldCmd": ldCmd,
|
"ldCmd": ldCmd,
|
||||||
"ldFlags": flags.ldFlags,
|
"ldFlags": flags.ldFlags,
|
||||||
}
|
}
|
||||||
if ctx.Config().IsEnvTrue("RBE_CXX_LINKS") {
|
if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_CXX_LINKS") {
|
||||||
rule = partialLdRE
|
rule = partialLdRE
|
||||||
args["inCommaList"] = strings.Join(objFiles.Strings(), ",")
|
args["inCommaList"] = strings.Join(objFiles.Strings(), ",")
|
||||||
}
|
}
|
||||||
|
|
|
@ -297,7 +297,7 @@ func transformJavaToClasses(ctx android.ModuleContext, outputFile android.Writab
|
||||||
annoDir = filepath.Join(shardDir, annoDir)
|
annoDir = filepath.Join(shardDir, annoDir)
|
||||||
}
|
}
|
||||||
rule := javac
|
rule := javac
|
||||||
if ctx.Config().IsEnvTrue("RBE_JAVAC") {
|
if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_JAVAC") {
|
||||||
rule = javacRE
|
rule = javacRE
|
||||||
}
|
}
|
||||||
ctx.Build(pctx, android.BuildParams{
|
ctx.Build(pctx, android.BuildParams{
|
||||||
|
|
|
@ -204,7 +204,7 @@ func (j *Module) compileDex(ctx android.ModuleContext, flags javaBuilderFlags,
|
||||||
"outDict": j.proguardDictionary.String(),
|
"outDict": j.proguardDictionary.String(),
|
||||||
"outDir": outDir.String(),
|
"outDir": outDir.String(),
|
||||||
}
|
}
|
||||||
if ctx.Config().IsEnvTrue("RBE_R8") {
|
if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_R8") {
|
||||||
rule = r8RE
|
rule = r8RE
|
||||||
args["implicits"] = strings.Join(r8Deps.Strings(), ",")
|
args["implicits"] = strings.Join(r8Deps.Strings(), ",")
|
||||||
}
|
}
|
||||||
|
@ -220,7 +220,7 @@ func (j *Module) compileDex(ctx android.ModuleContext, flags javaBuilderFlags,
|
||||||
} else {
|
} else {
|
||||||
d8Flags, d8Deps := j.d8Flags(ctx, flags)
|
d8Flags, d8Deps := j.d8Flags(ctx, flags)
|
||||||
rule := d8
|
rule := d8
|
||||||
if ctx.Config().IsEnvTrue("RBE_D8") {
|
if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_D8") {
|
||||||
rule = d8RE
|
rule = d8RE
|
||||||
}
|
}
|
||||||
ctx.Build(pctx, android.BuildParams{
|
ctx.Build(pctx, android.BuildParams{
|
||||||
|
|
Loading…
Reference in New Issue