| 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 '$WEBCORE_DIR/rendering/RenderTextControlMultiLine.cpp', | 677 '$WEBCORE_DIR/rendering/RenderTextControlMultiLine.cpp', |
| 678 '$WEBCORE_DIR/rendering/RenderTextControlSingleLine.cpp', | 678 '$WEBCORE_DIR/rendering/RenderTextControlSingleLine.cpp', |
| 679 '$WEBCORE_DIR/rendering/RenderTextFragment.cpp', | 679 '$WEBCORE_DIR/rendering/RenderTextFragment.cpp', |
| 680 '$WEBCORE_DIR/rendering/RenderTheme.cpp', | 680 '$WEBCORE_DIR/rendering/RenderTheme.cpp', |
| 681 '$WEBCORE_DIR/rendering/RenderTreeAsText.cpp', | 681 '$WEBCORE_DIR/rendering/RenderTreeAsText.cpp', |
| 682 '$WEBCORE_DIR/rendering/RenderVideo.cpp', | 682 '$WEBCORE_DIR/rendering/RenderVideo.cpp', |
| 683 '$WEBCORE_DIR/rendering/RenderView.cpp', | 683 '$WEBCORE_DIR/rendering/RenderView.cpp', |
| 684 '$WEBCORE_DIR/rendering/RenderWidget.cpp', | 684 '$WEBCORE_DIR/rendering/RenderWidget.cpp', |
| 685 '$WEBCORE_DIR/rendering/RenderWordBreak.cpp', | 685 '$WEBCORE_DIR/rendering/RenderWordBreak.cpp', |
| 686 '$WEBCORE_DIR/rendering/RootInlineBox.cpp', | 686 '$WEBCORE_DIR/rendering/RootInlineBox.cpp', |
| 687 '$WEBCORE_DIR/rendering/ScrollBehavior.cpp', |
| 687 '$WEBCORE_DIR/rendering/SVGCharacterLayoutInfo.cpp', | 688 '$WEBCORE_DIR/rendering/SVGCharacterLayoutInfo.cpp', |
| 688 '$WEBCORE_DIR/rendering/SVGInlineFlowBox.cpp', | 689 '$WEBCORE_DIR/rendering/SVGInlineFlowBox.cpp', |
| 689 '$WEBCORE_DIR/rendering/SVGInlineTextBox.cpp', | 690 '$WEBCORE_DIR/rendering/SVGInlineTextBox.cpp', |
| 690 '$WEBCORE_DIR/rendering/SVGRenderSupport.cpp', | 691 '$WEBCORE_DIR/rendering/SVGRenderSupport.cpp', |
| 691 '$WEBCORE_DIR/rendering/SVGRenderTreeAsText.cpp', | 692 '$WEBCORE_DIR/rendering/SVGRenderTreeAsText.cpp', |
| 692 '$WEBCORE_DIR/rendering/SVGRootInlineBox.cpp', | 693 '$WEBCORE_DIR/rendering/SVGRootInlineBox.cpp', |
| 693 '$WEBCORE_DIR/rendering/TextControlInnerElements.cpp', | 694 '$WEBCORE_DIR/rendering/TextControlInnerElements.cpp', |
| 694 '$WEBCORE_DIR/rendering/TransformState.cpp', | 695 '$WEBCORE_DIR/rendering/TransformState.cpp', |
| 695 | 696 |
| 696 '$WEBCORE_DIR/rendering/style/BindingURI.cpp', | 697 '$WEBCORE_DIR/rendering/style/BindingURI.cpp', |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 | 1001 |
| 1001 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 1002 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 1002 dependencies = [ | 1003 dependencies = [ |
| 1003 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 1004 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 1004 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 1005 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
| 1005 '$LIBXML_DIR/build/libxml_config.vcproj', | 1006 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 1006 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 1007 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 1007 '$SQLITE_DIR/sqlite.vcproj', | 1008 '$SQLITE_DIR/sqlite.vcproj', |
| 1008 ], | 1009 ], |
| 1009 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 1010 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
| OLD | NEW |