Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Unified Diff: scripts/slave/recipe_modules/pgo/api.py

Issue 2033513002: recipes: Switch from 3 ways for requesting clobber builds to 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: presubmit2 Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/pgo/api.py
diff --git a/scripts/slave/recipe_modules/pgo/api.py b/scripts/slave/recipe_modules/pgo/api.py
index 0b4b34ce67c5d16fccfff9099b40a483133524ce..57e4478190e70b9bc5de6947de49cea344c1b5dd 100644
--- a/scripts/slave/recipe_modules/pgo/api.py
+++ b/scripts/slave/recipe_modules/pgo/api.py
@@ -57,8 +57,7 @@ class PGOApi(recipe_api.RecipeApi):
self.m.chromium.runhooks(name='Runhooks: Instrumentation phase.')
# Remove the profile files from the previous builds.
self.m.file.rmwildcard('*.pg[cd]', str(self.m.chromium.output_dir))
- self.m.chromium.compile(name='Compile: Instrumentation phase.',
- force_clobber=bot_config.get('clobber', False))
+ self.m.chromium.compile(name='Compile: Instrumentation phase.')
def _run_pgo_benchmarks(self):
"""

Powered by Google App Engine
This is Rietveld 408576698