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 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheChromiumWin.cpp', | 887 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheChromiumWin.cpp', |
888 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataChromiumWin.cpp', | 888 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataChromiumWin.cpp', |
889 '$WEBCORE_DIR/platform/graphics/chromium/FontUtilsChromiumWin.cpp', | 889 '$WEBCORE_DIR/platform/graphics/chromium/FontUtilsChromiumWin.cpp', |
890 '$WEBCORE_DIR/platform/graphics/chromium/FontChromiumWin.cpp', | 890 '$WEBCORE_DIR/platform/graphics/chromium/FontChromiumWin.cpp', |
891 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp', | 891 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp', |
892 '$WEBCORE_DIR/platform/graphics/chromium/IconChromiumWin.cpp', | 892 '$WEBCORE_DIR/platform/graphics/chromium/IconChromiumWin.cpp', |
893 '$WEBCORE_DIR/platform/graphics/chromium/SimpleFontDataChromiumWin.cpp', | 893 '$WEBCORE_DIR/platform/graphics/chromium/SimpleFontDataChromiumWin.cpp', |
894 '$WEBCORE_DIR/platform/graphics/chromium/ThemeHelperChromiumWin.cpp', | 894 '$WEBCORE_DIR/platform/graphics/chromium/ThemeHelperChromiumWin.cpp', |
895 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelper.cpp', | 895 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelper.cpp', |
896 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp', | 896 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp', |
| 897 '$WEBCORE_DIR/platform/graphics/opentype/OpenTypeUtilities.cpp', |
897 ]) | 898 ]) |
898 | 899 |
899 if env.Bit('linux'): | 900 if env.Bit('linux'): |
900 # Linux specific implementations. | 901 # Linux specific implementations. |
901 input_files.extend([ | 902 input_files.extend([ |
902 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp', | 903 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp', |
903 '$WEBCORE_DIR/platform/chromium/gtk2drawing.c', | 904 '$WEBCORE_DIR/platform/chromium/gtk2drawing.c', |
904 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp', | 905 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp', |
905 '$WEBCORE_DIR/platform/chromium/RenderThemeGtk.cpp', | 906 '$WEBCORE_DIR/platform/chromium/RenderThemeGtk.cpp', |
906 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp', | 907 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 | 956 |
956 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', | 957 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
957 dependencies = [ | 958 dependencies = [ |
958 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 959 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
959 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 960 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
960 '$LIBXML_DIR/build/libxml_config.vcproj', | 961 '$LIBXML_DIR/build/libxml_config.vcproj', |
961 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 962 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
962 '$SQLITE_DIR/sqlite.vcproj', | 963 '$SQLITE_DIR/sqlite.vcproj', |
963 ], | 964 ], |
964 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') | 965 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
OLD | NEW |