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

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

Issue 10785: Debase our Uniscribe code. This moves FontUtils and all our Uniscribe code fr... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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 | Annotate | Revision Log
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc', 169 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc',
170 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc', 170 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc',
171 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc', 171 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc',
172 '$WEBKIT_DIR/glue/mimetype_unittest.cc', 172 '$WEBKIT_DIR/glue/mimetype_unittest.cc',
173 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc', 173 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc',
174 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc', 174 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc',
175 '$WEBKIT_DIR/glue/regular_expression_unittest.cc', 175 '$WEBKIT_DIR/glue/regular_expression_unittest.cc',
176 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc', 176 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc',
177 '$WEBKIT_DIR/glue/webframe_unittest.cc', 177 '$WEBKIT_DIR/glue/webframe_unittest.cc',
178 '$WEBKIT_DIR/port/platform/GKURL_unittest.cpp', 178 '$WEBKIT_DIR/port/platform/GKURL_unittest.cpp',
179 '$WEBKIT_DIR/port/platform/graphics/UniscribeHelper_unittest.cpp',
179 '$WEBKIT_DIR/port/platform/image-decoders/bmp/BMPImageDecoder_unittest.cpp', 180 '$WEBKIT_DIR/port/platform/image-decoders/bmp/BMPImageDecoder_unittest.cpp',
180 '$WEBKIT_DIR/port/platform/image-decoders/ico/ICOImageDecoder_unittest.cpp', 181 '$WEBKIT_DIR/port/platform/image-decoders/ico/ICOImageDecoder_unittest.cpp',
181 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp', 182 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp',
182 '$V8_DIR/snapshot-empty$OBJSUFFIX', 183 '$V8_DIR/snapshot-empty$OBJSUFFIX',
183 ] 184 ]
184 185
185 if env['PLATFORM'] == 'win32': 186 if env['PLATFORM'] == 'win32':
186 # TODO(port): put portable files in above test_files declaration. 187 # TODO(port): put portable files in above test_files declaration.
187 test_files.extend([ 188 test_files.extend([
188 'plugin_tests.cc', 189 'plugin_tests.cc',
189 # Commented out until a regression is fixed and this file is restored. 190 # Commented out until a regression is fixed and this file is restored.
190 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc', 191 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc',
191 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc', 192 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc',
192 ]) 193 ])
193 194
194 test_shell_tests = env.ChromeTestProgram('test_shell_tests', 195 test_shell_tests = env.ChromeTestProgram('test_shell_tests',
195 resources + test_files) 196 resources + test_files)
196 i = env.Install('$TARGET_ROOT', test_shell_tests) 197 i = env.Install('$TARGET_ROOT', test_shell_tests)
197 env.Alias('webkit', i) 198 env.Alias('webkit', i)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698