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

Side by Side Diff: webkit/webkit.gyp

Issue 159152: Linux: splice together RendererPreferences and SkFontHost (Closed)
Patch Set: ... Created 11 years, 5 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'variables': { 6 'variables': {
7 'feature_defines': [ 7 'feature_defines': [
8 'ENABLE_CHANNEL_MESSAGING=1', 8 'ENABLE_CHANNEL_MESSAGING=1',
9 'ENABLE_DATABASE=1', 9 'ENABLE_DATABASE=1',
10 'ENABLE_DATAGRID=1', 10 'ENABLE_DATAGRID=1',
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 ], 966 ],
967 'include_dirs': [ 967 'include_dirs': [
968 'api/public', 968 'api/public',
969 'api/src', 969 'api/src',
970 ], 970 ],
971 'defines': [ 971 'defines': [
972 'WEBKIT_IMPLEMENTATION', 972 'WEBKIT_IMPLEMENTATION',
973 ], 973 ],
974 'sources': [ 974 'sources': [
975 'api/public/gtk/WebInputEventFactory.h', 975 'api/public/gtk/WebInputEventFactory.h',
976 'api/public/linux/WebFontRendering.h',
976 'api/public/x11/WebScreenInfoFactory.h', 977 'api/public/x11/WebScreenInfoFactory.h',
977 'api/public/mac/WebInputEventFactory.h', 978 'api/public/mac/WebInputEventFactory.h',
978 'api/public/mac/WebScreenInfoFactory.h', 979 'api/public/mac/WebScreenInfoFactory.h',
979 'api/public/WebCache.h', 980 'api/public/WebCache.h',
980 'api/public/WebCanvas.h', 981 'api/public/WebCanvas.h',
981 'api/public/WebClipboard.h', 982 'api/public/WebClipboard.h',
982 'api/public/WebColor.h', 983 'api/public/WebColor.h',
983 'api/public/WebCommon.h', 984 'api/public/WebCommon.h',
984 'api/public/WebCompositionCommand.h', 985 'api/public/WebCompositionCommand.h',
985 'api/public/WebConsoleMessage.h', 986 'api/public/WebConsoleMessage.h',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 'api/public/win/WebInputEventFactory.h', 1028 'api/public/win/WebInputEventFactory.h',
1028 'api/public/win/WebSandboxSupport.h', 1029 'api/public/win/WebSandboxSupport.h',
1029 'api/public/win/WebScreenInfoFactory.h', 1030 'api/public/win/WebScreenInfoFactory.h',
1030 'api/public/win/WebScreenInfoFactory.h', 1031 'api/public/win/WebScreenInfoFactory.h',
1031 'api/src/ChromiumBridge.cpp', 1032 'api/src/ChromiumBridge.cpp',
1032 'api/src/ChromiumCurrentTime.cpp', 1033 'api/src/ChromiumCurrentTime.cpp',
1033 'api/src/ChromiumThreading.cpp', 1034 'api/src/ChromiumThreading.cpp',
1034 'api/src/gtk/WebFontInfo.cpp', 1035 'api/src/gtk/WebFontInfo.cpp',
1035 'api/src/gtk/WebFontInfo.h', 1036 'api/src/gtk/WebFontInfo.h',
1036 'api/src/gtk/WebInputEventFactory.cpp', 1037 'api/src/gtk/WebInputEventFactory.cpp',
1038 'api/src/linux/WebFontRendering.cpp',
1037 'api/src/x11/WebScreenInfoFactory.cpp', 1039 'api/src/x11/WebScreenInfoFactory.cpp',
1038 'api/src/mac/WebInputEventFactory.mm', 1040 'api/src/mac/WebInputEventFactory.mm',
1039 'api/src/mac/WebScreenInfoFactory.mm', 1041 'api/src/mac/WebScreenInfoFactory.mm',
1040 'api/src/LocalizedStrings.cpp', 1042 'api/src/LocalizedStrings.cpp',
1041 'api/src/MediaPlayerPrivateChromium.cpp', 1043 'api/src/MediaPlayerPrivateChromium.cpp',
1042 'api/src/ResourceHandle.cpp', 1044 'api/src/ResourceHandle.cpp',
1043 'api/src/StorageNamespaceProxy.cpp', 1045 'api/src/StorageNamespaceProxy.cpp',
1044 'api/src/StorageNamespaceProxy.h', 1046 'api/src/StorageNamespaceProxy.h',
1045 'api/src/TemporaryGlue.h', 1047 'api/src/TemporaryGlue.h',
1046 'api/src/WebCache.cpp', 1048 'api/src/WebCache.cpp',
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
1675 '../third_party/WebKit/WebCore/inspector/front-end/Images/userInputP reviousIcon.png', 1677 '../third_party/WebKit/WebCore/inspector/front-end/Images/userInputP reviousIcon.png',
1676 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningIco n.png', 1678 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningIco n.png',
1677 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningMed iumIcon.png', 1679 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningMed iumIcon.png',
1678 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningsEr rors.png', 1680 '../third_party/WebKit/WebCore/inspector/front-end/Images/warningsEr rors.png',
1679 ], 1681 ],
1680 }, 1682 },
1681 ], 1683 ],
1682 }, 1684 },
1683 ], 1685 ],
1684 } 1686 }
OLDNEW
« webkit/api/public/linux/WebFontRendering.h ('K') | « webkit/api/src/linux/WebFontRendering.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698