summaryrefslogtreecommitdiffstats
path: root/webkit/tools
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools')
-rw-r--r--webkit/tools/test_shell/SConscript11
1 files changed, 3 insertions, 8 deletions
diff --git a/webkit/tools/test_shell/SConscript b/webkit/tools/test_shell/SConscript
index fcb8528..874f38c 100644
--- a/webkit/tools/test_shell/SConscript
+++ b/webkit/tools/test_shell/SConscript
@@ -140,10 +140,7 @@ exe_input_files = [
'$V8_DIR/snapshot-empty$OBJSUFFIX'
]
-test_shell = env.ChromeProgram(['test_shell.exe',
- 'test_shell.ilk',
- 'test_shell.pdb'],
- resources + exe_input_files)
+test_shell = env.ChromeProgram('test_shell', resources + exe_input_files)
i = env.Install('$TARGET_ROOT', test_shell)
env.Alias('webkit', i)
@@ -203,9 +200,7 @@ test_files = [
'$V8_DIR/snapshot-empty$OBJSUFFIX',
]
-test_shell_tests = env.ChromeTestProgram(['test_shell_tests',
- 'test_shell_tests.ilk',
- 'test_shell_tests.pdb'],
- resources + test_files)
+test_shell_tests = env.ChromeTestProgram('test_shell_tests',
+ resources + test_files)
i = env.Install('$TARGET_ROOT', test_shell_tests)
env.Alias('webkit', i)