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

Unified Diff: recipe_engine/loader.py

Issue 2802693003: include Package proto into Result proto (Closed)
Patch Set: comment Created 3 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
« no previous file with comments | « no previous file | recipe_engine/package.py » ('j') | recipe_engine/result.proto » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/loader.py
diff --git a/recipe_engine/loader.py b/recipe_engine/loader.py
index 42b6340cc4f3546c0477d59cfb632435745b807d..f7df5739924f230e6fb963d0fc7db7f662ac9d31 100644
--- a/recipe_engine/loader.py
+++ b/recipe_engine/loader.py
@@ -172,6 +172,11 @@ class UniverseView(collections.namedtuple('UniverseView', 'universe package')):
This is used mainly for dependency loading -- a package can only see modules
in itself and packages that it directly depends on.
"""
+
+ @property
+ def config_file(self):
+ return self.universe.config_file
iannucci 2017/04/05 19:33:53 let's not add another undocumented property. just
+
def _dep_from_name(self, name):
if '/' in name:
package, module = name.split('/')
@@ -232,7 +237,6 @@ class UniverseView(collections.namedtuple('UniverseView', 'universe package')):
for local_name, (pkg, name) in self.normalize_deps_spec(spec).iteritems()
}
-
def find_recipe(self, recipe):
if ':' in recipe:
module_name, example = recipe.split(':')
« no previous file with comments | « no previous file | recipe_engine/package.py » ('j') | recipe_engine/result.proto » ('J')

Powered by Google App Engine
This is Rietveld 408576698