| 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 if env.Bit('windows'): | 9 if env.Bit('windows'): |
| 10 env.Append( | 10 env.Append( |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 '$WEBCORE_DIR/dom/TreeWalker.cpp', | 171 '$WEBCORE_DIR/dom/TreeWalker.cpp', |
| 172 '$WEBCORE_DIR/dom/UIEvent.cpp', | 172 '$WEBCORE_DIR/dom/UIEvent.cpp', |
| 173 '$WEBCORE_DIR/dom/UIEventWithKeyState.cpp', | 173 '$WEBCORE_DIR/dom/UIEventWithKeyState.cpp', |
| 174 '$WEBCORE_DIR/dom/WebKitAnimationEvent.cpp', | 174 '$WEBCORE_DIR/dom/WebKitAnimationEvent.cpp', |
| 175 '$WEBCORE_DIR/dom/WebKitTransitionEvent.cpp', | 175 '$WEBCORE_DIR/dom/WebKitTransitionEvent.cpp', |
| 176 '$WEBCORE_DIR/dom/WheelEvent.cpp', | 176 '$WEBCORE_DIR/dom/WheelEvent.cpp', |
| 177 '$WEBCORE_DIR/dom/Worker.cpp', | 177 '$WEBCORE_DIR/dom/Worker.cpp', |
| 178 '$WEBCORE_DIR/dom/WorkerContext.cpp', | 178 '$WEBCORE_DIR/dom/WorkerContext.cpp', |
| 179 '$WEBCORE_DIR/dom/WorkerLocation.cpp', | 179 '$WEBCORE_DIR/dom/WorkerLocation.cpp', |
| 180 '$WEBCORE_DIR/dom/WorkerMessagingProxy.cpp', | 180 '$WEBCORE_DIR/dom/WorkerMessagingProxy.cpp', |
| 181 '$WEBCORE_DIR/dom/WorkerRunLoop.cpp', |
| 181 '$WEBCORE_DIR/dom/WorkerTask.cpp', | 182 '$WEBCORE_DIR/dom/WorkerTask.cpp', |
| 182 '$WEBCORE_DIR/dom/WorkerThread.cpp', | 183 '$WEBCORE_DIR/dom/WorkerThread.cpp', |
| 183 '$WEBCORE_DIR/dom/XMLTokenizer.cpp', | 184 '$WEBCORE_DIR/dom/XMLTokenizer.cpp', |
| 184 '$WEBCORE_DIR/dom/XMLTokenizerLibxml2.cpp', | 185 '$WEBCORE_DIR/dom/XMLTokenizerLibxml2.cpp', |
| 185 | 186 |
| 186 '$WEBCORE_DIR/editing/chromium/EditorChromium.cpp', | 187 '$WEBCORE_DIR/editing/chromium/EditorChromium.cpp', |
| 187 | 188 |
| 188 '$WEBCORE_DIR/editing/AppendNodeCommand.cpp', | 189 '$WEBCORE_DIR/editing/AppendNodeCommand.cpp', |
| 189 '$WEBCORE_DIR/editing/ApplyStyleCommand.cpp', | 190 '$WEBCORE_DIR/editing/ApplyStyleCommand.cpp', |
| 190 '$WEBCORE_DIR/editing/BreakBlockquoteCommand.cpp', | 191 '$WEBCORE_DIR/editing/BreakBlockquoteCommand.cpp', |
| (...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 | 984 |
| 984 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 985 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 985 dependencies = [ | 986 dependencies = [ |
| 986 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 987 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 987 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 988 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
| 988 '$LIBXML_DIR/build/libxml_config.vcproj', | 989 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 989 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 990 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 990 '$SQLITE_DIR/sqlite.vcproj', | 991 '$SQLITE_DIR/sqlite.vcproj', |
| 991 ], | 992 ], |
| 992 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 993 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
| OLD | NEW |