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

Unified Diff: recipe_engine/doc.py

Issue 2415793003: Setup basic Runtime with properties and platform.
Patch Set: Created 4 years, 2 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 | recipe_engine/recipe_api.py » ('j') | recipe_engine/run.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/doc.py
diff --git a/recipe_engine/doc.py b/recipe_engine/doc.py
index 24ddc7e0c41a047b7cc15e1bdecffcff9bd6eab7..ade8ae334a0038c06a34b2701d71b3c0ed149145 100644
--- a/recipe_engine/doc.py
+++ b/recipe_engine/doc.py
@@ -99,8 +99,9 @@ def main(universe_view):
for module_name in universe_view.loop_over_recipe_modules():
deps[module_name] = universe.load(universe_view.package, module_name)
+ rt = recipe_run.Runtime({})
inst = loader.create_recipe_api(
- deps, recipe_run.RecipeEngine(None, {}, universe))
+ deps, recipe_run.RecipeEngine(None, rt, universe))
for mod_name, mod in sorted(deps.iteritems(), key=lambda it: it[0]):
p(0)
« no previous file with comments | « no previous file | recipe_engine/recipe_api.py » ('j') | recipe_engine/run.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698