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

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

Issue 14861: Move various gtest-style unit tests out of webkit/port and into a new... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 '$WEBKIT_DIR/glue/dom_operations_unittest.cc', 175 '$WEBKIT_DIR/glue/dom_operations_unittest.cc',
176 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc', 176 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc',
177 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc', 177 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc',
178 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc', 178 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc',
179 '$WEBKIT_DIR/glue/mimetype_unittest.cc', 179 '$WEBKIT_DIR/glue/mimetype_unittest.cc',
180 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc', 180 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc',
181 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc', 181 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc',
182 '$WEBKIT_DIR/glue/regular_expression_unittest.cc', 182 '$WEBKIT_DIR/glue/regular_expression_unittest.cc',
183 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc', 183 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc',
184 '$WEBKIT_DIR/glue/webframe_unittest.cc', 184 '$WEBKIT_DIR/glue/webframe_unittest.cc',
185 '$WEBKIT_DIR/port/platform/GKURL_unittest.cpp', 185 '$WEBKIT_DIR/tools/webcore_unit_tests/GKURL_unittest.cpp',
186 '$WEBKIT_DIR/port/platform/image-decoders/bmp/BMPImageDecoder_unittest.cpp', 186 '$WEBKIT_DIR/tools/webcore_unit_tests/BMPImageDecoder_unittest.cpp',
187 '$WEBKIT_DIR/port/platform/image-decoders/ico/ICOImageDecoder_unittest.cpp', 187 '$WEBKIT_DIR/tools/webcore_unit_tests/ICOImageDecoder_unittest.cpp',
188 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp', 188 '$WEBKIT_DIR/tools/webcore_unit_tests/XBMImageDecoder_unittest.cpp',
189 '$V8_DIR/snapshot-empty$OBJSUFFIX', 189 '$V8_DIR/snapshot-empty$OBJSUFFIX',
190 ] 190 ]
191 191
192 if env['PLATFORM'] == 'win32': 192 if env['PLATFORM'] == 'win32':
193 # TODO(port): put portable files in above test_files declaration. 193 # TODO(port): put portable files in above test_files declaration.
194 test_files.extend([ 194 test_files.extend([
195 'plugin_tests.cc', 195 'plugin_tests.cc',
196 # Commented out until a regression is fixed and this file is restored. 196 # Commented out until a regression is fixed and this file is restored.
197 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc', 197 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc',
198 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc', 198 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc',
199 '$WEBKIT_DIR/port/platform/graphics/chromium/UniscribeHelper_unittest.cpp' , 199 '$WEBKIT_DIR/tools/webcore_unit_tests/UniscribeHelper_unittest.cpp',
200 ]) 200 ])
201 201
202 test_shell_tests = env.ChromeTestProgram('test_shell_tests', 202 test_shell_tests = env.ChromeTestProgram('test_shell_tests',
203 resources + test_files) 203 resources + test_files)
204 i = env.Install('$TARGET_ROOT', test_shell_tests) 204 i = env.Install('$TARGET_ROOT', test_shell_tests)
205 env.Alias('webkit', i) 205 env.Alias('webkit', i)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698