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

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

Issue 9701: Port a resource fetcher test shell test to linux. (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
« no previous file with comments | « webkit/glue/resource_fetcher_unittest.cc ('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 if env['PLATFORM'] == 'win32': 10 if env['PLATFORM'] == 'win32':
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 '$WEBKIT_DIR/glue/bookmarklet_unittest.cc', 163 '$WEBKIT_DIR/glue/bookmarklet_unittest.cc',
164 '$WEBKIT_DIR/glue/cpp_bound_class_unittest.cc', 164 '$WEBKIT_DIR/glue/cpp_bound_class_unittest.cc',
165 '$WEBKIT_DIR/glue/cpp_variant_unittest.cc', 165 '$WEBKIT_DIR/glue/cpp_variant_unittest.cc',
166 '$WEBKIT_DIR/glue/dom_operations_unittest.cc', 166 '$WEBKIT_DIR/glue/dom_operations_unittest.cc',
167 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc', 167 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc',
168 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc', 168 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc',
169 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc', 169 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc',
170 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc', 170 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc',
171 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc', 171 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc',
172 '$WEBKIT_DIR/glue/regular_expression_unittest.cc', 172 '$WEBKIT_DIR/glue/regular_expression_unittest.cc',
173 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc',
173 '$WEBKIT_DIR/glue/webframe_unittest.cc', 174 '$WEBKIT_DIR/glue/webframe_unittest.cc',
174 '$WEBKIT_DIR/port/platform/GKURL_unittest.cpp', 175 '$WEBKIT_DIR/port/platform/GKURL_unittest.cpp',
175 '$V8_DIR/snapshot-empty$OBJSUFFIX', 176 '$V8_DIR/snapshot-empty$OBJSUFFIX',
176 ] 177 ]
177 178
178 if env['PLATFORM'] == 'win32': 179 if env['PLATFORM'] == 'win32':
179 # TODO(port): put portable files in above test_files declaration. 180 # TODO(port): put portable files in above test_files declaration.
180 test_files.extend([ 181 test_files.extend([
181 'plugin_tests.cc', 182 'plugin_tests.cc',
182 'text_input_controller_unittest.cc', 183 'text_input_controller_unittest.cc',
183 '$WEBKIT_DIR/glue/context_menu_unittest.cc', 184 '$WEBKIT_DIR/glue/context_menu_unittest.cc',
184 '$WEBKIT_DIR/glue/mimetype_unittest.cc', 185 '$WEBKIT_DIR/glue/mimetype_unittest.cc',
185 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc',
186 # Commented out until a regression is fixed and this file is restored. 186 # Commented out until a regression is fixed and this file is restored.
187 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc', 187 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc',
188 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc', 188 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc',
189 '$WEBKIT_DIR/port/platform/image-decoders/bmp/BMPImageDecoder_unittest.cpp ', 189 '$WEBKIT_DIR/port/platform/image-decoders/bmp/BMPImageDecoder_unittest.cpp ',
190 '$WEBKIT_DIR/port/platform/image-decoders/ico/ICOImageDecoder_unittest.cpp ', 190 '$WEBKIT_DIR/port/platform/image-decoders/ico/ICOImageDecoder_unittest.cpp ',
191 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp ', 191 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp ',
192 ]) 192 ])
193 193
194 test_shell_tests = env.ChromeTestProgram('test_shell_tests', 194 test_shell_tests = env.ChromeTestProgram('test_shell_tests',
195 resources + test_files) 195 resources + test_files)
196 i = env.Install('$TARGET_ROOT', test_shell_tests) 196 i = env.Install('$TARGET_ROOT', test_shell_tests)
197 env.Alias('webkit', i) 197 env.Alias('webkit', i)
198 198
OLDNEW
« no previous file with comments | « webkit/glue/resource_fetcher_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698