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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 '$CHROME_DIR/test/interactive_ui/npapi_interactive_test.cc', | 97 '$CHROME_DIR/test/interactive_ui/npapi_interactive_test.cc', |
98 '$CHROME_DIR/test/testing_profile$OBJSUFFIX', | 98 '$CHROME_DIR/test/testing_profile$OBJSUFFIX', |
99 '$CHROME_DIR/test/ui/npapi_test_helper$OBJSUFFIX', | 99 '$CHROME_DIR/test/ui/npapi_test_helper$OBJSUFFIX', |
100 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 100 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
101 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 101 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
102 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 102 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
103 | 103 |
104 'view_event_test_base.cc', | 104 'view_event_test_base.cc', |
105 ] | 105 ] |
106 | 106 |
107 env.ChromeTestProgram('interactive_ui_tests', input_files) | 107 # TODO(port): |
| 108 if env.Bit('windows'): |
| 109 env.ChromeTestProgram('interactive_ui_tests', input_files) |
| 110 |
| 111 env.ChromeMSVSProject('$CHROME_DIR/test/interactive_ui/interactive_ui.vcproj', |
| 112 name='interactive_ui_tests', |
| 113 dependencies = [ |
| 114 '$CHROME_DIR/test/automation/automation.vcproj', |
| 115 '$BASE_DIR/build/base.vcproj', |
| 116 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 117 '$CHROME_DIR/plugin/plugin.vcproj', |
| 118 '$LIBJPEG_DIR/libjpeg.vcproj', |
| 119 '$BZIP2_DIR/bzip2.vcproj', |
| 120 '$NET_DIR/build/net.vcproj', |
| 121 ('$WEBKIT_DIR/build/JavaScriptCore/' + |
| 122 'JavaScriptCore_pcre.vcproj'), |
| 123 '$WEBKIT_DIR/build/port/port.vcproj', |
| 124 '$CHROME_DIR/browser/debugger/debugger.vcproj', |
| 125 '$WEBKIT_DIR/default_plugin/default_plugin.vcproj', |
| 126 '$CHROME_DIR/browser/browser.vcproj', |
| 127 '$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', |
| 128 '$SQLITE_DIR/sqlite.vcproj', |
| 129 '$CHROME_DIR/views/views.vcproj', |
| 130 '$MODP_B64_DIR/modp_b64.vcproj', |
| 131 '$CHROME_DIR/app/chrome_exe.vcproj', |
| 132 ('$CHROME_DIR/test/chrome_plugin/' + |
| 133 'test_chrome_plugin.vcproj'), |
| 134 '$ZLIB_DIR/zlib.vcproj', |
| 135 '$CHROME_DIR/common/common.vcproj', |
| 136 '$ICU38_DIR/build/icu.vcproj', |
| 137 '$CHROME_DIR/renderer/renderer.vcproj', |
| 138 '$BASE_DIR/build/base_gfx.vcproj', |
| 139 '$WEBKIT_DIR/build/JavaScriptCore/WTF.vcproj', |
| 140 ('$CHROME_DIR/browser/resources/' + |
| 141 'browser_resources.vcproj'), |
| 142 '$RLZ_DIR/rlz.vcproj', |
| 143 '$TESTING_DIR/gtest.vcproj', |
| 144 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', |
| 145 '$LIBPNG_DIR/libpng.vcproj', |
| 146 '$WEBKIT_DIR/build/glue/glue.vcproj', |
| 147 '$CHROME_DIR/app/locales/en-US.vcproj', |
| 148 '$SKIA_DIR/skia.vcproj', |
| 149 '$CHROME_DIR/third_party/hunspell/hunspell.vcproj', |
| 150 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 151 '$CHROME_DIR/installer/util/util.vcproj', |
| 152 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
| 153 '$SDCH_DIR/sdch.vcproj', |
| 154 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 155 '$LIBXSLT_DIR/build/libxslt.vcproj', |
| 156 '$CHROME_DIR/app/theme/theme_dll.vcproj', |
| 157 ], |
| 158 guid='{018D4F38-6272-448F-A864-976DA09F05D0}') |
OLD | NEW |