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

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

Issue 23889036: Refactor the way that TestApi works so that it is actually useful. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: once more... Created 7 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
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 9291c35ddd5737159b9de0c7f974d673e7d867a8..725597583df21188a5d47241afed29ca20169ee3 100644
--- a/scripts/slave/recipe_modules/chromium_android/api.py
+++ b/scripts/slave/recipe_modules/chromium_android/api.py
@@ -49,7 +49,6 @@ class AndroidApi(recipe_api.RecipeApi):
s = spec.solutions[0]
s.name = repo_name
s.url = repo_url
- s.custom_vars = self.c.custom_vars
s.custom_deps = gclient_custom_deps or {}
if revision:
s.revision = revision
@@ -132,7 +131,7 @@ class AndroidApi(recipe_api.RecipeApi):
# TODO(sivachandra): Disable subannottations after cleaning up
# tree_truth.sh.
yield self.m.step('tree truth steps',
- [self.m.path.checkout('build', 'tree_truth.sh'),
+ [self.m.path.checkout('build', 'tree_truth.sh'),
self.m.path.checkout()] + repos,
allow_subannottations=True)

Powered by Google App Engine
This is Rietveld 408576698