Merge "Revert "Enforce that output files are created in primary ninja execution"" into main

This commit is contained in:
Treehugger Robot
2024-06-26 20:25:07 +00:00
committed by Gerrit Code Review
3 changed files with 3 additions and 26 deletions

View File

@@ -99,10 +99,9 @@ type configImpl struct {
// Autodetected
totalRAM uint64
brokenDupRules bool
brokenUsesNetwork bool
brokenNinjaEnvVars []string
brokenMissingOutputs bool
brokenDupRules bool
brokenUsesNetwork bool
brokenNinjaEnvVars []string
pathReplaced bool
@@ -1609,14 +1608,6 @@ func (c *configImpl) BuildBrokenNinjaUsesEnvVars() []string {
return c.brokenNinjaEnvVars
}
func (c *configImpl) SetBuildBrokenMissingOutputs(val bool) {
c.brokenMissingOutputs = val
}
func (c *configImpl) BuildBrokenMissingOutputs() bool {
return c.brokenMissingOutputs
}
func (c *configImpl) SetTargetDeviceDir(dir string) {
c.targetDeviceDir = dir
}