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

Side by Side Diff: webkit/tools/test_shell/SConscript

Issue 16477: Mass convert ChromeStaticLibrary -> ChromeLibrary, including pulling the (Closed)
Patch Set: Created 11 years, 12 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 unified diff | Download patch
« no previous file with comments | « webkit/glue/SConscript ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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}')
OLDNEW
« no previous file with comments | « webkit/glue/SConscript ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698