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

Unified Diff: scripts/slave/recipe_modules/v8/chromium_config.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
Index: scripts/slave/recipe_modules/v8/chromium_config.py
diff --git a/scripts/slave/recipe_modules/v8/chromium_config.py b/scripts/slave/recipe_modules/v8/chromium_config.py
index 6d93d8d2b5c038d2fd55213b5f2475cc110248ec..f7d48e097d956be7ee3e856ae3bc59d4abe5e8da 100644
--- a/scripts/slave/recipe_modules/v8/chromium_config.py
+++ b/scripts/slave/recipe_modules/v8/chromium_config.py
@@ -1,3 +1,4 @@
+from slave.recipe_config_types import Path
from RECIPE_MODULES.chromium import CONFIG_CTX
@@ -14,7 +15,7 @@ def v8(c):
c.gyp_env.GYP_DEFINES['v8_target_arch'] = v8_target_arch
del c.gyp_env.GYP_DEFINES['component']
c.build_config_fs = c.BUILD_CONFIG
- c.build_dir = ''
+ c.build_dir = Path('[CHECKOUT]')
c.compile_py.build_tool = 'make'
c.compile_py.default_targets = ['buildbot']

Powered by Google App Engine
This is Rietveld 408576698