| Index: scripts/slave/recipe_modules/chromium_android/api.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_android/api.py b/scripts/slave/recipe_modules/chromium_android/api.py
|
| index 6ea8ed92d04b9ed430a0e32f76fc7dbe932c3880..07e7ac96966cd5f631fc997b6c37dfe26c2def1b 100644
|
| --- a/scripts/slave/recipe_modules/chromium_android/api.py
|
| +++ b/scripts/slave/recipe_modules/chromium_android/api.py
|
| @@ -102,9 +102,10 @@ class AndroidApi(recipe_api.RecipeApi):
|
| # TODO(sivachandra): Move the setting of the gclient spec below to an
|
| # internal config extension when they are supported by the recipe system.
|
| if use_git_cache:
|
| - spec = self.m.gclient.make_config(gclient_config)
|
| + spec = self.m.gclient.make_config(gclient_config, GIT_MODE=True)
|
| else:
|
| - spec = self.m.gclient.make_config(gclient_config, CACHE_DIR=None)
|
| + spec = self.m.gclient.make_config(gclient_config,
|
| + CACHE_DIR=None, GIT_MODE=True)
|
| spec.target_os = ['android']
|
| s = spec.solutions[0]
|
| s.name = self.c.deps_dir
|
|
|