| 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 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 '$WEBCORE_DIR/platform/graphics/opentype/OpenTypeUtilities.cpp', | 899 '$WEBCORE_DIR/platform/graphics/opentype/OpenTypeUtilities.cpp', |
| 900 '$WEBCORE_DIR/platform/graphics/skia/SkiaFontWin.cpp', | 900 '$WEBCORE_DIR/platform/graphics/skia/SkiaFontWin.cpp', |
| 901 | 901 |
| 902 '$WEBCORE_DIR/rendering/RenderThemeChromiumWin.cpp', | 902 '$WEBCORE_DIR/rendering/RenderThemeChromiumWin.cpp', |
| 903 ]) | 903 ]) |
| 904 | 904 |
| 905 if env.Bit('linux'): | 905 if env.Bit('linux'): |
| 906 # Linux specific implementations. | 906 # Linux specific implementations. |
| 907 input_files.extend([ | 907 input_files.extend([ |
| 908 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp', | 908 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp', |
| 909 '$WEBCORE_DIR/platform/chromium/gtk2drawing.c', | |
| 910 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp', | 909 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp', |
| 911 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp', | 910 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp', |
| 912 '$WEBCORE_DIR/platform/chromium/SoundChromiumPosix.cpp', | 911 '$WEBCORE_DIR/platform/chromium/SoundChromiumPosix.cpp', |
| 913 | 912 |
| 914 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheLinux.cpp', | 913 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheLinux.cpp', |
| 915 '$WEBCORE_DIR/platform/graphics/chromium/FontLinux.cpp', | 914 '$WEBCORE_DIR/platform/graphics/chromium/FontLinux.cpp', |
| 916 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', | 915 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataLinux.cpp', |
| 917 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp', | 916 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp', |
| 918 '$WEBCORE_DIR/platform/graphics/chromium/IconChromiumLinux.cpp', | 917 '$WEBCORE_DIR/platform/graphics/chromium/IconChromiumLinux.cpp', |
| 919 '$WEBCORE_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp', | 918 '$WEBCORE_DIR/platform/graphics/chromium/SimpleFontDataLinux.cpp', |
| 920 | 919 |
| 920 '$WEBCORE_DIR/platform/gtk/gtk2drawing.c', |
| 921 |
| 921 '$WEBCORE_DIR/rendering/RenderThemeChromiumGtk.cpp', | 922 '$WEBCORE_DIR/rendering/RenderThemeChromiumGtk.cpp', |
| 922 ]) | 923 ]) |
| 923 # Remove from the list files that haven't yet been made portable to Linux. | 924 # Remove from the list files that haven't yet been made portable to Linux. |
| 924 to_be_ported_files = [ | 925 to_be_ported_files = [ |
| 925 '$WEBCORE_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp', | 926 '$WEBCORE_DIR/platform/graphics/chromium/FontCustomPlatformData.cpp', |
| 926 ] | 927 ] |
| 927 input_files = list(set(input_files) - set(to_be_ported_files)) | 928 input_files = list(set(input_files) - set(to_be_ported_files)) |
| 928 | 929 |
| 929 # These files don't compile yet on linux or mac. | 930 # These files don't compile yet on linux or mac. |
| 930 if env.Bit('mac'): | 931 if env.Bit('mac'): |
| (...skipping 29 matching lines...) Expand all Loading... |
| 960 | 961 |
| 961 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 962 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 962 dependencies = [ | 963 dependencies = [ |
| 963 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 964 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 964 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 965 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
| 965 '$LIBXML_DIR/build/libxml_config.vcproj', | 966 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 966 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 967 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 967 '$SQLITE_DIR/sqlite.vcproj', | 968 '$SQLITE_DIR/sqlite.vcproj', |
| 968 ], | 969 ], |
| 969 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 970 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
| OLD | NEW |