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

Unified Diff: build/SConscript.main

Issue 39219: test_shell and test_shell_tests on Linux from gyp-generated scons files: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 | « base/base.gyp ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/SConscript.main
===================================================================
--- build/SConscript.main (revision 11127)
+++ build/SConscript.main (working copy)
@@ -189,6 +189,12 @@
# Default is to load all SConscript files for a full-tree build.
# The keyword arguments in the call below (base, breakpad, etc.) can be
# specified in the LOAD= argument to cut down on the build.
+
+if root_env.get('_GYP'):
+ webkit_sconscript = '$WEBKIT_DIR/tools/test_shell/test_shell_main${_GYP}.scons'
+else:
+ webkit_sconscript = '$WEBKIT_DIR/webkit_main${_GYP}.scons'
+
sconscript_map = dict(
base = '$BASE_DIR/base_main${_GYP}.scons',
breakpad = '$BREAKPAD_DIR/SConscript',
@@ -219,7 +225,7 @@
],
tools = '$GTK_CLIP_DUMP_DIR/gcd.scons',
v8 = '$OBJ_ROOT/build/SConscript.v8',
- webkit = '$WEBKIT_DIR/webkit_main${_GYP}.scons',
+ webkit = webkit_sconscript,
)
if root_env.get('_GYP'):
« no previous file with comments | « base/base.gyp ('k') | webkit/tools/test_shell/test_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698