| 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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 '$WEBCORE_DIR/platform/chromium/MimeTypeRegistryChromium.cpp', | 466 '$WEBCORE_DIR/platform/chromium/MimeTypeRegistryChromium.cpp', |
| 467 '$WEBCORE_DIR/platform/chromium/PasteboardChromium.cpp', | 467 '$WEBCORE_DIR/platform/chromium/PasteboardChromium.cpp', |
| 468 '$WEBCORE_DIR/platform/chromium/PlatformKeyboardEventChromium.cpp', | 468 '$WEBCORE_DIR/platform/chromium/PlatformKeyboardEventChromium.cpp', |
| 469 '$WEBCORE_DIR/platform/chromium/PlatformScreenChromium.cpp', | 469 '$WEBCORE_DIR/platform/chromium/PlatformScreenChromium.cpp', |
| 470 '$WEBCORE_DIR/platform/chromium/PopupMenuChromium.cpp', | 470 '$WEBCORE_DIR/platform/chromium/PopupMenuChromium.cpp', |
| 471 '$WEBCORE_DIR/platform/chromium/SearchPopupMenuChromium.cpp', | 471 '$WEBCORE_DIR/platform/chromium/SearchPopupMenuChromium.cpp', |
| 472 '$WEBCORE_DIR/platform/chromium/SharedTimerChromium.cpp', | 472 '$WEBCORE_DIR/platform/chromium/SharedTimerChromium.cpp', |
| 473 '$WEBCORE_DIR/platform/chromium/SSLKeyGeneratorChromium.cpp', | 473 '$WEBCORE_DIR/platform/chromium/SSLKeyGeneratorChromium.cpp', |
| 474 '$WEBCORE_DIR/platform/chromium/SystemTimeChromium.cpp', | 474 '$WEBCORE_DIR/platform/chromium/SystemTimeChromium.cpp', |
| 475 '$WEBCORE_DIR/platform/chromium/TemporaryLinkStubs.cpp', | 475 '$WEBCORE_DIR/platform/chromium/TemporaryLinkStubs.cpp', |
| 476 '$WEBCORE_DIR/platform/chromium/TextBoundariesChromium.cpp', | |
| 477 '$WEBCORE_DIR/platform/chromium/TextBreakIteratorInternalICUChromium.cpp', | 476 '$WEBCORE_DIR/platform/chromium/TextBreakIteratorInternalICUChromium.cpp', |
| 478 '$WEBCORE_DIR/platform/chromium/WidgetChromium.cpp', | 477 '$WEBCORE_DIR/platform/chromium/WidgetChromium.cpp', |
| 479 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromium.cpp', | 478 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromium.cpp', |
| 480 | 479 |
| 481 '$WEBCORE_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp', | 480 '$WEBCORE_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp', |
| 482 | 481 |
| 483 '$WEBCORE_DIR/platform/graphics/transforms/ScaleTransformOperation.cpp', | 482 '$WEBCORE_DIR/platform/graphics/transforms/ScaleTransformOperation.cpp', |
| 484 '$WEBCORE_DIR/platform/graphics/transforms/TranslateTransformOperation.cpp', | 483 '$WEBCORE_DIR/platform/graphics/transforms/TranslateTransformOperation.cpp', |
| 485 '$WEBCORE_DIR/platform/graphics/transforms/RotateTransformOperation.cpp', | 484 '$WEBCORE_DIR/platform/graphics/transforms/RotateTransformOperation.cpp', |
| 486 '$WEBCORE_DIR/platform/graphics/transforms/TransformOperations.cpp', | 485 '$WEBCORE_DIR/platform/graphics/transforms/TransformOperations.cpp', |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 | 944 |
| 946 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 945 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 947 dependencies = [ | 946 dependencies = [ |
| 948 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 947 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 949 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 948 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
| 950 '$LIBXML_DIR/build/libxml_config.vcproj', | 949 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 951 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 950 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 952 '$SQLITE_DIR/sqlite.vcproj', | 951 '$SQLITE_DIR/sqlite.vcproj', |
| 953 ], | 952 ], |
| 954 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 953 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
| OLD | NEW |