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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 input_files = [ | 63 input_files = [ |
64 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 64 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
65 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 65 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
66 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 66 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
67 'tab_switching_test.cc', | 67 'tab_switching_test.cc', |
68 ] | 68 ] |
69 | 69 |
70 #"..\..\Debug\obj\tab_switching_test\precompiled_wtl.obj" | 70 #"..\..\Debug\obj\tab_switching_test\precompiled_wtl.obj" |
71 | 71 |
72 env.ChromeTestProgram('tab_switching_test', input_files) | 72 # TODO(port): |
| 73 if env.Bit('windows'): |
| 74 env.ChromeTestProgram('tab_switching_test', input_files) |
73 | 75 |
| 76 env.ChromeMSVSProject('$CHROME_DIR/test/tab_switching/tab_switching.vcproj', |
| 77 name='tab_switching_test', |
| 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/test/ui/ui_tests.vcproj', |
| 85 '$CHROME_DIR/app/chrome_exe.vcproj', |
| 86 '$ZLIB_DIR/zlib.vcproj', |
| 87 '$CHROME_DIR/common/common.vcproj', |
| 88 '$ICU38_DIR/build/icu.vcproj', |
| 89 '$BASE_DIR/build/base_gfx.vcproj', |
| 90 '$TESTING_DIR/gtest.vcproj', |
| 91 '$LIBPNG_DIR/libpng.vcproj', |
| 92 '$SKIA_DIR/skia.vcproj', |
| 93 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 94 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 95 ], |
| 96 guid='{A34770EA-A574-43E8-9327-F79C04770E98}') |
OLD | NEW |