| 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 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp', | 930 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp', |
| 931 '$WEBCORE_DIR/platform/graphics/opentype/OpenTypeUtilities.cpp', | 931 '$WEBCORE_DIR/platform/graphics/opentype/OpenTypeUtilities.cpp', |
| 932 '$WEBCORE_DIR/platform/graphics/skia/SkiaFontWin.cpp', | 932 '$WEBCORE_DIR/platform/graphics/skia/SkiaFontWin.cpp', |
| 933 | 933 |
| 934 '$WEBCORE_DIR/rendering/RenderThemeChromiumWin.cpp', | 934 '$WEBCORE_DIR/rendering/RenderThemeChromiumWin.cpp', |
| 935 ]) | 935 ]) |
| 936 | 936 |
| 937 if env.Bit('linux'): | 937 if env.Bit('linux'): |
| 938 # Linux specific implementations. | 938 # Linux specific implementations. |
| 939 input_files.extend([ | 939 input_files.extend([ |
| 940 '$WEBCORE_DIR/platform/chromium/ClipboardChromiumLinux.cpp', |
| 940 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp', | 941 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp', |
| 941 '$WEBCORE_DIR/platform/chromium/gtk2drawing.c', | 942 '$WEBCORE_DIR/platform/chromium/gtk2drawing.c', |
| 942 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp', | 943 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp', |
| 943 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp', | 944 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp', |
| 944 '$WEBCORE_DIR/platform/chromium/SoundChromiumPosix.cpp', | 945 '$WEBCORE_DIR/platform/chromium/SoundChromiumPosix.cpp', |
| 945 | 946 |
| 946 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheLinux.cpp', | 947 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheLinux.cpp', |
| 947 '$WEBCORE_DIR/platform/graphics/chromium/FontLinux.cpp', | 948 '$WEBCORE_DIR/platform/graphics/chromium/FontLinux.cpp', |
| 948 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', | 949 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', |
| 949 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp', | 950 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 | 993 |
| 993 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 994 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 994 dependencies = [ | 995 dependencies = [ |
| 995 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 996 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 996 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 997 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
| 997 '$LIBXML_DIR/build/libxml_config.vcproj', | 998 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 998 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 999 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 999 '$SQLITE_DIR/sqlite.vcproj', | 1000 '$SQLITE_DIR/sqlite.vcproj', |
| 1000 ], | 1001 ], |
| 1001 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 1002 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
| OLD | NEW |