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 if env['PLATFORM'] == 'win32': | 10 if env['PLATFORM'] == 'win32': |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 'layout_test_controller_unittest.cc', | 158 'layout_test_controller_unittest.cc', |
159 'run_all_tests.cc', | 159 'run_all_tests.cc', |
160 'test_shell_test.cc', | 160 'test_shell_test.cc', |
161 '$WEBKIT_DIR/glue/autocomplete_input_listener_unittest.cc', | 161 '$WEBKIT_DIR/glue/autocomplete_input_listener_unittest.cc', |
162 '$WEBKIT_DIR/glue/cpp_bound_class_unittest.cc', | 162 '$WEBKIT_DIR/glue/cpp_bound_class_unittest.cc', |
163 '$WEBKIT_DIR/glue/cpp_variant_unittest.cc', | 163 '$WEBKIT_DIR/glue/cpp_variant_unittest.cc', |
164 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc', | 164 '$WEBKIT_DIR/glue/glue_serialize_unittest.cc', |
165 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc', | 165 '$WEBKIT_DIR/glue/multipart_response_delegate_unittest.cc', |
166 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc', | 166 '$WEBKIT_DIR/glue/password_autocomplete_listener_unittest.cc', |
167 '$WEBKIT_DIR/glue/regular_expression_unittest.cc', | 167 '$WEBKIT_DIR/glue/regular_expression_unittest.cc', |
| 168 '$WEBKIT_DIR/glue/webframe_unittest.cc', |
168 '$WEBKIT_DIR/port/platform/GKURL_unittest.cpp', | 169 '$WEBKIT_DIR/port/platform/GKURL_unittest.cpp', |
169 '$V8_DIR/snapshot-empty$OBJSUFFIX', | 170 '$V8_DIR/snapshot-empty$OBJSUFFIX', |
170 ] | 171 ] |
171 | 172 |
172 if env['PLATFORM'] == 'win32': | 173 if env['PLATFORM'] == 'win32': |
173 # TODO(port): put portable files in above test_files declaration. | 174 # TODO(port): put portable files in above test_files declaration. |
174 test_files.extend([ | 175 test_files.extend([ |
175 'node_leak_test.cc', | 176 'node_leak_test.cc', |
176 'plugin_tests.cc', | 177 'plugin_tests.cc', |
177 'text_input_controller_unittest.cc', | 178 'text_input_controller_unittest.cc', |
178 '$WEBKIT_DIR/glue/bookmarklet_unittest.cc', | 179 '$WEBKIT_DIR/glue/bookmarklet_unittest.cc', |
179 '$WEBKIT_DIR/glue/context_menu_unittest.cc', | 180 '$WEBKIT_DIR/glue/context_menu_unittest.cc', |
180 '$WEBKIT_DIR/glue/dom_operations_unittest.cc', | 181 '$WEBKIT_DIR/glue/dom_operations_unittest.cc', |
181 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc', | 182 '$WEBKIT_DIR/glue/dom_serializer_unittest.cc', |
182 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc', | 183 '$WEBKIT_DIR/glue/iframe_redirect_unittest.cc', |
183 '$WEBKIT_DIR/glue/mimetype_unittest.cc', | 184 '$WEBKIT_DIR/glue/mimetype_unittest.cc', |
184 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc', | 185 '$WEBKIT_DIR/glue/resource_fetcher_unittest.cc', |
185 # 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. |
186 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc', | 187 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc', |
187 '$WEBKIT_DIR/glue/webframe_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 |
OLD | NEW |