Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: webkit/build/WebCore/SConscript

Issue 17036: Build file change for enabling dynamic font support. This should go in right... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheChromiumWin.cpp', 890 '$WEBCORE_DIR/platform/graphics/chromium/FontCacheChromiumWin.cpp',
891 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataChromiumWin.cpp', 891 '$WEBCORE_DIR/platform/graphics/chromium/FontPlatformDataChromiumWin.cpp',
892 '$WEBCORE_DIR/platform/graphics/chromium/FontUtilsChromiumWin.cpp', 892 '$WEBCORE_DIR/platform/graphics/chromium/FontUtilsChromiumWin.cpp',
893 '$WEBCORE_DIR/platform/graphics/chromium/FontChromiumWin.cpp', 893 '$WEBCORE_DIR/platform/graphics/chromium/FontChromiumWin.cpp',
894 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp', 894 '$WEBCORE_DIR/platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp',
895 '$WEBCORE_DIR/platform/graphics/chromium/IconChromiumWin.cpp', 895 '$WEBCORE_DIR/platform/graphics/chromium/IconChromiumWin.cpp',
896 '$WEBCORE_DIR/platform/graphics/chromium/SimpleFontDataChromiumWin.cpp', 896 '$WEBCORE_DIR/platform/graphics/chromium/SimpleFontDataChromiumWin.cpp',
897 '$WEBCORE_DIR/platform/graphics/chromium/ThemeHelperChromiumWin.cpp', 897 '$WEBCORE_DIR/platform/graphics/chromium/ThemeHelperChromiumWin.cpp',
898 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelper.cpp', 898 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelper.cpp',
899 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp', 899 '$WEBCORE_DIR/platform/graphics/chromium/UniscribeHelperTextRun.cpp',
900 '$WEBCORE_DIR/platform/graphics/opentype/OpenTypeUtilities.cpp',
900 ]) 901 ])
901 902
902 if env.Bit('linux'): 903 if env.Bit('linux'):
903 # Linux specific implementations. 904 # Linux specific implementations.
904 input_files.extend([ 905 input_files.extend([
905 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp', 906 '$WEBCORE_DIR/platform/chromium/FileSystemChromiumLinux.cpp',
906 '$WEBCORE_DIR/platform/chromium/gtk2drawing.c', 907 '$WEBCORE_DIR/platform/chromium/gtk2drawing.c',
907 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp', 908 '$WEBCORE_DIR/platform/chromium/KeyCodeConversionGtk.cpp',
908 '$WEBCORE_DIR/platform/chromium/RenderThemeGtk.cpp', 909 '$WEBCORE_DIR/platform/chromium/RenderThemeGtk.cpp',
909 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp', 910 '$WEBCORE_DIR/platform/chromium/ScrollbarThemeChromiumLinux.cpp',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 959
959 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', 960 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj',
960 dependencies = [ 961 dependencies = [
961 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', 962 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj',
962 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', 963 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj',
963 '$LIBXML_DIR/build/libxml_config.vcproj', 964 '$LIBXML_DIR/build/libxml_config.vcproj',
964 '$LIBXSLT_DIR/build/libxslt_config.vcproj', 965 '$LIBXSLT_DIR/build/libxslt_config.vcproj',
965 '$SQLITE_DIR/sqlite.vcproj', 966 '$SQLITE_DIR/sqlite.vcproj',
966 ], 967 ],
967 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') 968 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698