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

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

Issue 2269263002: Make all the rest of the recipes explicitly specify GIT_MODE (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase Created 4 years, 4 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 | « scripts/slave/recipe_modules/recipe_tryjob/api.py ('k') | scripts/slave/recipe_modules/webrtc/api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/skia/api.py
diff --git a/scripts/slave/recipe_modules/skia/api.py b/scripts/slave/recipe_modules/skia/api.py
index fb0f1a2f0198de76136974f94ab1b262fd4f418f..497aac1a7206edfda8df54bd0f793bc6d06d4ba7 100644
--- a/scripts/slave/recipe_modules/skia/api.py
+++ b/scripts/slave/recipe_modules/skia/api.py
@@ -295,7 +295,8 @@ class SkiaApi(recipe_api.RecipeApi):
def checkout_steps(self):
"""Run the steps to obtain a checkout of Skia."""
- cfg_kwargs = {'GIT_MODE': True}
+ cfg_kwargs = {}
+ cfg_kwargs['GIT_MODE'] = True
if not self.persistent_checkout:
# We should've obtained the Skia checkout through isolates, so we don't
# need to perform the checkout ourselves.
« no previous file with comments | « scripts/slave/recipe_modules/recipe_tryjob/api.py ('k') | scripts/slave/recipe_modules/webrtc/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698