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

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

Issue 1919193002: build: roll infra_paths changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 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_modules/amp/api.py
diff --git a/scripts/slave/recipe_modules/amp/api.py b/scripts/slave/recipe_modules/amp/api.py
index 24e3226e7c799f10bac8201c7c6dba0baea21b59..b7891741152692dd813eb8712374829ba469e221 100644
--- a/scripts/slave/recipe_modules/amp/api.py
+++ b/scripts/slave/recipe_modules/amp/api.py
@@ -43,14 +43,14 @@ class AmpApi(recipe_api.RecipeApi):
'appurify_results', 'logcat.txt')
def _get_api_key_file(self):
- # TODO(phajdan.jr): Remove path['build'] usage, http://crbug.com/437264 .
- local_api_key_file = self.m.path['build'].join(
+ # TODO(phajdan.jr): Remove infra_paths['build'] usage, http://crbug.com/437264 .
Sergiy Byelozyorov 2016/04/26 14:41:06 nit: long line
+ local_api_key_file = self.m.infra_paths['build'].join(
'site_config', '.amp_%s_key' % self.c.pool)
return local_api_key_file
def _get_api_secret_file(self):
- # TODO(phajdan.jr): Remove path['build'] usage, http://crbug.com/437264 .
- local_api_secret_file = self.m.path['build'].join(
+ # TODO(phajdan.jr): Remove infra_paths['build'] usage, http://crbug.com/437264 .
Sergiy Byelozyorov 2016/04/26 14:41:06 nit: long line
+ local_api_secret_file = self.m.infra_paths['build'].join(
'site_config', '.amp_%s_secret' % self.c.pool)
return local_api_secret_file

Powered by Google App Engine
This is Rietveld 408576698