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.ApplySConscript([ | 9 env.ApplySConscript([ |
10 '$BASE_DIR/using_base.scons', | 10 '$BASE_DIR/using_base.scons', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 ) | 60 ) |
61 | 61 |
62 input_files = [ | 62 input_files = [ |
63 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 63 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
64 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 64 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
65 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 65 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
66 'feature_startup_test.cc', | 66 'feature_startup_test.cc', |
67 'startup_test.cc', | 67 'startup_test.cc', |
68 ] | 68 ] |
69 | 69 |
70 env.ChromeTestProgram('startup_tests', input_files) | 70 # TODO(port): |
| 71 if env.Bit('windows'): |
| 72 env.ChromeTestProgram('startup_tests', input_files) |
| 73 |
| 74 env.ChromeMSVSProject('$CHROME_DIR/test/startup/startup_tests.vcproj', |
| 75 dependencies = [ |
| 76 '$CHROME_DIR/test/automation/automation.vcproj', |
| 77 '$BASE_DIR/build/base.vcproj', |
| 78 '$NET_DIR/build/net.vcproj', |
| 79 '$CHROME_DIR/browser/browser.vcproj', |
| 80 '$MODP_B64_DIR/modp_b64.vcproj', |
| 81 '$CHROME_DIR/app/chrome_exe.vcproj', |
| 82 '$ZLIB_DIR/zlib.vcproj', |
| 83 '$CHROME_DIR/common/common.vcproj', |
| 84 '$ICU38_DIR/build/icu.vcproj', |
| 85 '$BASE_DIR/build/base_gfx.vcproj', |
| 86 '$TESTING_DIR/gtest.vcproj', |
| 87 '$LIBPNG_DIR/libpng.vcproj', |
| 88 '$SKIA_DIR/skia.vcproj', |
| 89 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 90 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 91 ], |
| 92 guid='{D3E6C0FD-54C7-4FF2-9AE1-72F2DAFD820C}') |
OLD | NEW |