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

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

Issue 2315653002: Do not start goma in ChromeOS gclient runhook if gomadir is given. (Closed)
Patch Set: fixed mistake not --goma-start but --nostart-goma. Created 4 years, 3 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_ChromiumOS_amd64_generic_Compile.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium/api.py
diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py
index 56759ccd142e979005fce95c549c6466bbe5db0f..5b2cc9fefd6276996492327f74536c4a93e7592d 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -474,6 +474,7 @@ class ChromiumApi(recipe_api.RecipeApi):
wrapper += ['--clear-sdk-cache']
if self.c.compile_py.goma_dir:
wrapper += ['--gomadir', self.c.compile_py.goma_dir]
+ wrapper += ['--nostart-goma']
dnj 2016/09/08 16:14:45 Can you add a comment here detailing why this flag
Yoshisato Yanagisawa 2016/09/12 01:55:11 Wrote a comment. I do not know a situation where
if self.c.gyp_env.GYP_DEFINES.get('fastbuild', 0) == 1:
wrapper += ['--fastbuild']
wrapper += ['--']
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_chromiumos_ChromiumOS_amd64_generic_Compile.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698