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

Unified Diff: scripts/slave/recipe_api.py

Issue 1111413005: Some changes to allow recipes and modules to live noncentrally (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Little bitty cleanup Created 5 years, 8 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_api.py
diff --git a/scripts/slave/recipe_api.py b/scripts/slave/recipe_api.py
index 86c71d1cf43c0fa9ad6adcace40f2116d668c040..03dca82d5b55167589e6c73fa715dad343294513 100644
--- a/scripts/slave/recipe_api.py
+++ b/scripts/slave/recipe_api.py
@@ -371,7 +371,7 @@ class RecipeApiPlain(ModuleInjectionSite):
if include_deps:
# TODO(iannucci): This is 'inefficient', since if a dep comes up multiple
# times in this recursion, it will get set_config()'d multiple times
- for dep in self._module.DEPS:
+ for dep in self._module.LOADED_DEPS:
getattr(self.m, dep).set_config(config_name, optional=True, **params)
def apply_config(self, config_name, config_object=None):

Powered by Google App Engine
This is Rietveld 408576698