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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 '$CHROME_DIR/test/data/resource.res', | 244 '$CHROME_DIR/test/data/resource.res', |
245 ]) | 245 ]) |
246 | 246 |
247 if not env.Bit('mac'): | 247 if not env.Bit('mac'): |
248 # TODO(port): This should work on all platforms. | 248 # TODO(port): This should work on all platforms. |
249 | 249 |
250 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files) | 250 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files) |
251 | 251 |
252 i = env.Install('$TARGET_ROOT', unit_tests) | 252 i = env.Install('$TARGET_ROOT', unit_tests) |
253 Alias('chrome', i) | 253 Alias('chrome', i) |
| 254 |
| 255 env.ChromeMSVSProject('$CHROME_DIR/test/unit/unittests.vcproj', |
| 256 name='unit_tests', |
| 257 dependencies = [ |
| 258 '$BASE_DIR/build/base.vcproj', |
| 259 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 260 '$CHROME_DIR/plugin/plugin.vcproj', |
| 261 '$LIBJPEG_DIR/libjpeg.vcproj', |
| 262 '$BZIP2_DIR/bzip2.vcproj', |
| 263 '$NET_DIR/build/net.vcproj', |
| 264 ('$WEBKIT_DIR/build/JavaScriptCore/' + |
| 265 'JavaScriptCore_pcre.vcproj'), |
| 266 '$WEBKIT_DIR/build/port/port.vcproj', |
| 267 '$CHROME_DIR/browser/debugger/debugger.vcproj', |
| 268 '$WEBKIT_DIR/default_plugin/default_plugin.vcproj', |
| 269 '$CHROME_DIR/browser/browser.vcproj', |
| 270 '$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', |
| 271 '$SQLITE_DIR/sqlite.vcproj', |
| 272 '$CHROME_DIR/views/views.vcproj', |
| 273 '$MODP_B64_DIR/modp_b64.vcproj', |
| 274 '$CHROME_DIR/test/chrome_plugin/test_chrome_plugin.vcproj', |
| 275 '$ZLIB_DIR/zlib.vcproj', |
| 276 '$CHROME_DIR/common/common.vcproj', |
| 277 '$ICU38_DIR/build/icu.vcproj', |
| 278 '$CHROME_DIR/renderer/renderer.vcproj', |
| 279 '$BASE_DIR/build/base_gfx.vcproj', |
| 280 '$WEBKIT_DIR/build/JavaScriptCore/WTF.vcproj', |
| 281 '$CHROME_DIR/browser/resources/browser_resources.vcproj', |
| 282 '$RLZ_DIR/rlz.vcproj', |
| 283 '$TESTING_DIR/gtest.vcproj', |
| 284 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', |
| 285 '$LIBPNG_DIR/libpng.vcproj', |
| 286 '$WEBKIT_DIR/build/glue/glue.vcproj', |
| 287 '$CHROME_DIR/app/locales/en-US.vcproj', |
| 288 '$SKIA_DIR/skia.vcproj', |
| 289 '$CHROME_DIR/third_party/hunspell/hunspell.vcproj', |
| 290 '$CHROME_DIR/app/generated_resources.vcproj', |
| 291 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 292 '$CHROME_DIR/installer/util/util.vcproj', |
| 293 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
| 294 '$SDCH_DIR/sdch.vcproj', |
| 295 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 296 '$LIBXSLT_DIR/build/libxslt.vcproj', |
| 297 '$CHROME_DIR/app/theme/theme_dll.vcproj', |
| 298 ], |
| 299 guid='{ECFC2BEC-9FC0-4AD9-9649-5F26793F65FC}') |
OLD | NEW |