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

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

Issue 24737002: Add Paths as first-class types in configs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: license 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
« no previous file with comments | « scripts/slave/recipe_modules/android/config.py ('k') | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium/api.py
diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py
index f255521ff94577336910c52ea0f0ec11666986f9..559fc9023beee3617f145d09e65054a0790be395 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -28,8 +28,8 @@ class ChromiumApi(recipe_api.RecipeApi):
args = [
'--target', self.c.build_config_fs,
- '--build-dir', self.m.path.checkout(self.c.build_dir),
- '--src-dir', self.m.path.checkout(),
+ '--build-dir', self.c.build_dir,
+ '--src-dir', self.m.path.checkout,
]
if self.c.compile_py.build_tool:
args += ['--build-tool', self.c.compile_py.build_tool]
@@ -57,7 +57,7 @@ class ChromiumApi(recipe_api.RecipeApi):
full_args = [
'--target', self.c.build_config_fs,
- '--build-dir', self.m.path.checkout(self.c.build_dir),
+ '--build-dir', self.c.build_dir,
('--xvfb' if xvfb else '--no-xvfb')
]
full_args += self.m.json.property_args()
« no previous file with comments | « scripts/slave/recipe_modules/android/config.py ('k') | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698