diff options
Diffstat (limited to 'webkit/tools/test_shell/SConscript')
-rw-r--r-- | webkit/tools/test_shell/SConscript | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/webkit/tools/test_shell/SConscript b/webkit/tools/test_shell/SConscript index fffe1ae..5d43b441 100644 --- a/webkit/tools/test_shell/SConscript +++ b/webkit/tools/test_shell/SConscript @@ -128,10 +128,11 @@ elif env['PLATFORM'] == 'posix': lib = env.ChromeStaticLibrary('test_shell', input_files) - - resources = [] -exe_input_files = [] +exe_input_files = [ + 'test_shell_main.cc', +] + if env['PLATFORM'] == 'win32': # TODO(port): figure out what to do with resources. resources = [ @@ -140,14 +141,9 @@ if env['PLATFORM'] == 'win32': '$WEBKIT_DIR/build/localized_strings/webkit_strings_en-US.res', ] - exe_input_files = [ - 'test_shell_main.cc', + exe_input_files += [ '$V8_DIR/snapshot-empty$OBJSUFFIX' ] -elif env['PLATFORM'] == 'posix': - exe_input_files = [ - 'test_shell_main_gtk.cc', - ] test_shell = env.ChromeProgram('test_shell', resources + exe_input_files) |