Chromium Code Reviews| 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, |
|
agable
2013/09/26 21:46:02
Did you find/replace for all instances of {m.path|
iannucci
2013/09/27 02:08:20
I didn't, just the ones I saw... it actually doesn
agable
2013/09/27 17:48:16
Thanks. I just wanted to make sure we weren't send
|
| ] |
| 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() |