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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 '$WEBCORE_DIR/dom/TagNodeList.cpp', | 162 '$WEBCORE_DIR/dom/TagNodeList.cpp', |
163 '$WEBCORE_DIR/dom/Text.cpp', | 163 '$WEBCORE_DIR/dom/Text.cpp', |
164 '$WEBCORE_DIR/dom/TextEvent.cpp', | 164 '$WEBCORE_DIR/dom/TextEvent.cpp', |
165 '$WEBCORE_DIR/dom/Traversal.cpp', | 165 '$WEBCORE_DIR/dom/Traversal.cpp', |
166 '$WEBCORE_DIR/dom/TreeWalker.cpp', | 166 '$WEBCORE_DIR/dom/TreeWalker.cpp', |
167 '$WEBCORE_DIR/dom/UIEvent.cpp', | 167 '$WEBCORE_DIR/dom/UIEvent.cpp', |
168 '$WEBCORE_DIR/dom/UIEventWithKeyState.cpp', | 168 '$WEBCORE_DIR/dom/UIEventWithKeyState.cpp', |
169 '$WEBCORE_DIR/dom/WebKitAnimationEvent.cpp', | 169 '$WEBCORE_DIR/dom/WebKitAnimationEvent.cpp', |
170 '$WEBCORE_DIR/dom/WebKitTransitionEvent.cpp', | 170 '$WEBCORE_DIR/dom/WebKitTransitionEvent.cpp', |
171 '$WEBCORE_DIR/dom/WheelEvent.cpp', | 171 '$WEBCORE_DIR/dom/WheelEvent.cpp', |
| 172 '$WEBCORE_DIR/dom/Worker.cpp', |
| 173 '$WEBCORE_DIR/dom/WorkerContext.cpp', |
| 174 '$WEBCORE_DIR/dom/WorkerLocation.cpp', |
| 175 '$WEBCORE_DIR/dom/WorkerMessagingProxy.cpp', |
| 176 '$WEBCORE_DIR/dom/WorkerTask.cpp', |
| 177 '$WEBCORE_DIR/dom/WorkerThread.cpp', |
172 '$WEBCORE_DIR/dom/XMLTokenizer.cpp', | 178 '$WEBCORE_DIR/dom/XMLTokenizer.cpp', |
173 '$WEBCORE_DIR/dom/XMLTokenizerLibxml2.cpp', | 179 '$WEBCORE_DIR/dom/XMLTokenizerLibxml2.cpp', |
174 | 180 |
175 '$WEBCORE_DIR/editing/chromium/EditorChromium.cpp', | 181 '$WEBCORE_DIR/editing/chromium/EditorChromium.cpp', |
176 | 182 |
177 '$WEBCORE_DIR/editing/AppendNodeCommand.cpp', | 183 '$WEBCORE_DIR/editing/AppendNodeCommand.cpp', |
178 '$WEBCORE_DIR/editing/ApplyStyleCommand.cpp', | 184 '$WEBCORE_DIR/editing/ApplyStyleCommand.cpp', |
179 '$WEBCORE_DIR/editing/BreakBlockquoteCommand.cpp', | 185 '$WEBCORE_DIR/editing/BreakBlockquoteCommand.cpp', |
180 '$WEBCORE_DIR/editing/CompositeEditCommand.cpp', | 186 '$WEBCORE_DIR/editing/CompositeEditCommand.cpp', |
181 '$WEBCORE_DIR/editing/CreateLinkCommand.cpp', | 187 '$WEBCORE_DIR/editing/CreateLinkCommand.cpp', |
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
970 | 976 |
971 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 977 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
972 dependencies = [ | 978 dependencies = [ |
973 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 979 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
974 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 980 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
975 '$LIBXML_DIR/build/libxml_config.vcproj', | 981 '$LIBXML_DIR/build/libxml_config.vcproj', |
976 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 982 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
977 '$SQLITE_DIR/sqlite.vcproj', | 983 '$SQLITE_DIR/sqlite.vcproj', |
978 ], | 984 ], |
979 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 985 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
OLD | NEW |