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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 ], | 65 ], |
66 ) | 66 ) |
67 | 67 |
68 input_files = [ | 68 input_files = [ |
69 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 69 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
70 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 70 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
71 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 71 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
72 'selenium_test.cc', | 72 'selenium_test.cc', |
73 ] | 73 ] |
74 | 74 |
75 env.ChromeTestProgram('selenium_tests', input_files) | 75 # TODO(port): |
| 76 if env.Bit('windows'): |
| 77 env.ChromeTestProgram('selenium_tests', input_files) |
| 78 |
| 79 env.ChromeMSVSProject('$CHROME_DIR/test/selenium/selenium_tests.vcproj', |
| 80 dependencies = [ |
| 81 '$CHROME_DIR/test/automation/automation.vcproj', |
| 82 '$BASE_DIR/build/base.vcproj', |
| 83 '$NET_DIR/build/net.vcproj', |
| 84 '$CHROME_DIR/browser/browser.vcproj', |
| 85 '$MODP_B64_DIR/modp_b64.vcproj', |
| 86 '$CHROME_DIR/app/chrome_exe.vcproj', |
| 87 '$ZLIB_DIR/zlib.vcproj', |
| 88 '$CHROME_DIR/common/common.vcproj', |
| 89 '$ICU38_DIR/build/icu.vcproj', |
| 90 '$BASE_DIR/build/base_gfx.vcproj', |
| 91 '$TESTING_DIR/gtest.vcproj', |
| 92 '$LIBPNG_DIR/libpng.vcproj', |
| 93 '$SKIA_DIR/skia.vcproj', |
| 94 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 95 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 96 ], |
| 97 guid='{E3749617-BA3D-4230-B54C-B758E56D9FA5}') |
OLD | NEW |