| OLD | NEW |
| 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 Import('env', 'env_res') | 5 Import('env', 'env_res') |
| 6 | 6 |
| 7 env = env.Clone() | 7 env = env.Clone() |
| 8 env_res = env_res.Clone() | 8 env_res = env_res.Clone() |
| 9 | 9 |
| 10 env.SConscript([ | 10 env.SConscript([ |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 'webwidget_host_win.cc', | 125 'webwidget_host_win.cc', |
| 126 ]) | 126 ]) |
| 127 elif env.Bit('linux'): | 127 elif env.Bit('linux'): |
| 128 input_files.extend([ | 128 input_files.extend([ |
| 129 'webview_host_gtk.cc', | 129 'webview_host_gtk.cc', |
| 130 'webwidget_host_gtk.cc', | 130 'webwidget_host_gtk.cc', |
| 131 'test_shell_gtk.cc', | 131 'test_shell_gtk.cc', |
| 132 'test_webview_delegate_gtk.cc', | 132 'test_webview_delegate_gtk.cc', |
| 133 ]) | 133 ]) |
| 134 | 134 |
| 135 lib = env.ChromeStaticLibrary('test_shell', input_files) | 135 lib = env.ChromeLibrary('test_shell', input_files) |
| 136 | 136 |
| 137 env.Append(LIBS = ['test_shell']) | 137 env.Append(LIBS = ['test_shell']) |
| 138 | 138 |
| 139 env.ChromeMSVSProject('$WEBKIT_DIR/tools/test_shell/test_shell.vcproj', | 139 env.ChromeMSVSProject('$WEBKIT_DIR/tools/test_shell/test_shell.vcproj', |
| 140 dependencies = [ | 140 dependencies = [ |
| 141 '$BASE_DIR/build/base.vcproj', | 141 '$BASE_DIR/build/base.vcproj', |
| 142 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 142 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 143 '$LIBJPEG_DIR/libjpeg.vcproj', | 143 '$LIBJPEG_DIR/libjpeg.vcproj', |
| 144 '$BZIP2_DIR/bzip2.vcproj', | 144 '$BZIP2_DIR/bzip2.vcproj', |
| 145 '$NET_DIR/build/net.vcproj', | 145 '$NET_DIR/build/net.vcproj', |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', | 261 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', |
| 262 '$LIBPNG_DIR/libpng.vcproj', | 262 '$LIBPNG_DIR/libpng.vcproj', |
| 263 '$WEBKIT_DIR/build/glue/glue.vcproj', | 263 '$WEBKIT_DIR/build/glue/glue.vcproj', |
| 264 '$SKIA_DIR/skia.vcproj', | 264 '$SKIA_DIR/skia.vcproj', |
| 265 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 265 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 266 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', | 266 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
| 267 '$SDCH_DIR/sdch.vcproj', | 267 '$SDCH_DIR/sdch.vcproj', |
| 268 '$LIBXSLT_DIR/build/libxslt.vcproj', | 268 '$LIBXSLT_DIR/build/libxslt.vcproj', |
| 269 ], | 269 ], |
| 270 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}') | 270 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}') |
| OLD | NEW |