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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 ) | 63 ) |
64 | 64 |
65 input_files = [ | 65 input_files = [ |
66 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', | 66 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', |
67 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 67 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
68 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 68 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
69 'page_load_test.cc', | 69 'page_load_test.cc', |
70 'run_all_unittests.cc', | 70 'run_all_unittests.cc', |
71 ] | 71 ] |
72 | 72 |
73 env.ChromeTestProgram('reliability_tests', input_files) | 73 # TODO(port): |
| 74 if env.Bit('windows'): |
| 75 env.ChromeTestProgram('reliability_tests', input_files) |
| 76 |
| 77 env.ChromeMSVSProject('$CHROME_DIR/test/reliability/reliability_tests.vcproj', |
| 78 dependencies = [ |
| 79 '$CHROME_DIR/test/automation/automation.vcproj', |
| 80 '$BASE_DIR/build/base.vcproj', |
| 81 '$NET_DIR/build/net.vcproj', |
| 82 '$CHROME_DIR/browser/browser.vcproj', |
| 83 '$MODP_B64_DIR/modp_b64.vcproj', |
| 84 '$CHROME_DIR/app/chrome_exe.vcproj', |
| 85 '$ZLIB_DIR/zlib.vcproj', |
| 86 '$CHROME_DIR/common/common.vcproj', |
| 87 '$ICU38_DIR/build/icu.vcproj', |
| 88 '$BASE_DIR/build/base_gfx.vcproj', |
| 89 '$TESTING_DIR/gtest.vcproj', |
| 90 '$LIBPNG_DIR/libpng.vcproj', |
| 91 '$SKIA_DIR/skia.vcproj', |
| 92 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 93 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 94 ], |
| 95 guid='{8A3E1774-1DE9-445C-982D-3EE37C8A752A}') |
OLD | NEW |