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') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.SConscript([ | 9 env.SConscript([ |
10 '$BASE_DIR/gfx/using_base_gfx.scons', | 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 '/DEBUG', | 104 '/DEBUG', |
105 '/MACHINE:X86', | 105 '/MACHINE:X86', |
106 '/FIXED:No', | 106 '/FIXED:No', |
107 ], | 107 ], |
108 ) | 108 ) |
109 | 109 |
110 unit_test_files = [] | 110 unit_test_files = [] |
111 | 111 |
112 unit_test_files.extend([ | 112 unit_test_files.extend([ |
113 '$CHROME_DIR/common/ipc_sync_message_unittest.cc', | 113 '$CHROME_DIR/common/ipc_sync_message_unittest.cc', |
| 114 '$CHROME_DIR/renderer/greasemonkey_slave_unittest.cc', |
114 ]) | 115 ]) |
115 | 116 |
116 if not env.Bit('mac'): | 117 if not env.Bit('mac'): |
117 # TODO(port): Port to Mac. | 118 # TODO(port): Port to Mac. |
118 unit_test_files.extend([ | 119 unit_test_files.extend([ |
119 'run_all_unittests.cc', | 120 'run_all_unittests.cc', |
120 | 121 |
121 '$CHROME_DIR/browser/chrome_thread_unittest.cc', | 122 '$CHROME_DIR/browser/chrome_thread_unittest.cc', |
122 '$CHROME_DIR/browser/extensions/extension_unittest.cc', | 123 '$CHROME_DIR/browser/extensions/extension_unittest.cc', |
123 '$CHROME_DIR/browser/extensions/extensions_service_unittest.cc', | 124 '$CHROME_DIR/browser/extensions/extensions_service_unittest.cc', |
(...skipping 13 matching lines...) Expand all Loading... |
137 '$CHROME_DIR/browser/safe_browsing/safe_browsing_util_unittest.cc', | 138 '$CHROME_DIR/browser/safe_browsing/safe_browsing_util_unittest.cc', |
138 '$CHROME_DIR/common/animation_unittest.cc', | 139 '$CHROME_DIR/common/animation_unittest.cc', |
139 '$CHROME_DIR/common/bzip2_unittest.cc', | 140 '$CHROME_DIR/common/bzip2_unittest.cc', |
140 '$CHROME_DIR/common/gfx/chrome_font_unittest.cc', | 141 '$CHROME_DIR/common/gfx/chrome_font_unittest.cc', |
141 '$CHROME_DIR/common/ipc_message_unittest.cc', | 142 '$CHROME_DIR/common/ipc_message_unittest.cc', |
142 '$CHROME_DIR/common/jpeg_codec_unittest.cc', | 143 '$CHROME_DIR/common/jpeg_codec_unittest.cc', |
143 '$CHROME_DIR/common/json_value_serializer_unittest.cc', | 144 '$CHROME_DIR/common/json_value_serializer_unittest.cc', |
144 '$CHROME_DIR/common/mru_cache_unittest.cc', | 145 '$CHROME_DIR/common/mru_cache_unittest.cc', |
145 '$CHROME_DIR/common/notification_service_unittest.cc', | 146 '$CHROME_DIR/common/notification_service_unittest.cc', |
146 '$CHROME_DIR/common/property_bag_unittest.cc', | 147 '$CHROME_DIR/common/property_bag_unittest.cc', |
147 '$CHROME_DIR/renderer/greasemonkey_slave_unittest.cc', | |
148 ]) | 148 ]) |
149 | 149 |
150 if env.Bit('windows'): | 150 if env.Bit('windows'): |
151 # TODO(port): Port these. | 151 # TODO(port): Port these. |
152 unit_test_files.extend([ | 152 unit_test_files.extend([ |
153 '$CHROME_DIR/browser/autocomplete/autocomplete_unittest.cc', | 153 '$CHROME_DIR/browser/autocomplete/autocomplete_unittest.cc', |
154 '$CHROME_DIR/browser/autocomplete/history_contents_provider_unittest.cc', | 154 '$CHROME_DIR/browser/autocomplete/history_contents_provider_unittest.cc', |
155 '$CHROME_DIR/browser/autocomplete/history_url_provider_unittest.cc', | 155 '$CHROME_DIR/browser/autocomplete/history_url_provider_unittest.cc', |
156 '$CHROME_DIR/browser/autocomplete/keyword_provider_unittest.cc', | 156 '$CHROME_DIR/browser/autocomplete/keyword_provider_unittest.cc', |
157 '$CHROME_DIR/browser/back_forward_menu_model_unittest.cc', | 157 '$CHROME_DIR/browser/back_forward_menu_model_unittest.cc', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 '$CHROME_DIR/app/generated_resources.vcproj', | 293 '$CHROME_DIR/app/generated_resources.vcproj', |
294 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 294 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
295 '$CHROME_DIR/installer/util/util.vcproj', | 295 '$CHROME_DIR/installer/util/util.vcproj', |
296 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', | 296 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
297 '$SDCH_DIR/sdch.vcproj', | 297 '$SDCH_DIR/sdch.vcproj', |
298 '$CHROME_DIR/browser/views/browser_views.vcproj', | 298 '$CHROME_DIR/browser/views/browser_views.vcproj', |
299 '$LIBXSLT_DIR/build/libxslt.vcproj', | 299 '$LIBXSLT_DIR/build/libxslt.vcproj', |
300 '$CHROME_DIR/app/theme/theme_dll.vcproj', | 300 '$CHROME_DIR/app/theme/theme_dll.vcproj', |
301 ], | 301 ], |
302 guid='{ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC}') | 302 guid='{ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC}') |
OLD | NEW |