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

Side by Side Diff: Source/core/core.gyp

Issue 21353004: Use Skia for font selection on windows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 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
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2009 Google Inc. All rights reserved. 2 # Copyright (C) 2009 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 }], 754 }],
755 ['OS=="win"', { 755 ['OS=="win"', {
756 'sources/': [ 756 'sources/': [
757 ['exclude', 'Posix\\.cpp$'], 757 ['exclude', 'Posix\\.cpp$'],
758 758
759 ['include', 'platform/ScrollbarThemeWin\\.(cpp|h)$'], 759 ['include', 'platform/ScrollbarThemeWin\\.(cpp|h)$'],
760 ['include', 'platform/graphics/chromium/TransparencyWin\\.(cpp|h)$'] , 760 ['include', 'platform/graphics/chromium/TransparencyWin\\.(cpp|h)$'] ,
761 ['include', 'platform/graphics/opentype/'], 761 ['include', 'platform/graphics/opentype/'],
762 ['include', 'platform/graphics/skia/SkiaFontWin\\.(cpp|h)$'], 762 ['include', 'platform/graphics/skia/SkiaFontWin\\.(cpp|h)$'],
763 763
764 ['exclude', 'platform/graphics/skia/FontCacheSkia\\.cpp$'],
765
766 # Windows currently uses FontCustomPlatformDataWin.cpp instead. 764 # Windows currently uses FontCustomPlatformDataWin.cpp instead.
767 ['exclude', 'platform/graphics/skia/FontCustomPlatformDataSkia\\.cpp $'], 765 ['exclude', 'platform/graphics/skia/FontCustomPlatformDataSkia\\.cpp $'],
768 ['include', 'platform/graphics/win/FontCustomPlatformDataWin\\.cpp$' ], 766 ['include', 'platform/graphics/win/FontCustomPlatformDataWin\\.cpp$' ],
769 767
770 # SystemInfo.cpp is useful and we don't want to copy it. 768 # SystemInfo.cpp is useful and we don't want to copy it.
771 ['include', 'platform/win/SystemInfo\\.cpp$'], 769 ['include', 'platform/win/SystemInfo\\.cpp$'],
772 770
773 ['exclude', 'platform/text/LocaleICU\\.cpp$'], 771 ['exclude', 'platform/text/LocaleICU\\.cpp$'],
774 ['exclude', 'platform/text/LocaleICU\\.h$'], 772 ['exclude', 'platform/text/LocaleICU\\.h$'],
775 ['include', 'platform/text/win/LocaleWin\.cpp$'], 773 ['include', 'platform/text/win/LocaleWin\.cpp$'],
776 ['include', 'platform/text/win/LocaleWin\.h$'], 774 ['include', 'platform/text/win/LocaleWin\.h$'],
777 ], 775 ],
778 'conditions': [ 776 'conditions': [
779 ['"ENABLE_GDI_FONTS_ON_WINDOWS=1" in feature_defines', { 777 ['"ENABLE_GDI_FONTS_ON_WINDOWS=1" in feature_defines', {
780 'sources/': [ 778 'sources/': [
781 ['exclude', 'platform/graphics/skia/SimpleFontDataSkia\\.cpp$'], 779 ['exclude', 'platform/graphics/skia/SimpleFontDataSkia\\.cpp$'],
782 ['exclude', 'platform/graphics/skia/GlyphPageTreeNodeSkia\\.cpp$ '], 780 ['exclude', 'platform/graphics/skia/GlyphPageTreeNodeSkia\\.cpp$ '],
781 ['exclude', 'platform/graphics/skia/FontCacheSkia\\.cpp$'],
782 ['exclude', 'platform/graphics/skia/FontCacheSkiaWin\\.cpp$'],
783 ], 783 ],
784 },{ # ENABLE_GDI_FONTS_ON_WINDOWS!=1 784 },{ # ENABLE_GDI_FONTS_ON_WINDOWS!=1
785 'sources/': [ 785 'sources/': [
786 ['exclude', 'platform/graphics/chromium/SimpleFontDataChromiumWi n\\.cpp$'],
787 ['include', 'platform/graphics/skia/SimpleFontDataSkia\\.cpp$'], 786 ['include', 'platform/graphics/skia/SimpleFontDataSkia\\.cpp$'],
788 ['include', 'platform/graphics/skia/GlyphPageTreeNodeSkia\\.cpp$ '], 787 ['include', 'platform/graphics/skia/GlyphPageTreeNodeSkia\\.cpp$ '],
788 ['include', 'platform/graphics/skia/FontCacheSkiaWin\\.cpp$'],
789 ['exclude', 'platform/graphics/chromium/SimpleFontDataChromiumWi n\\.cpp$'],
789 ['exclude', 'platform/graphics/chromium/GlyphPageTreeNodeChromiu mWin\\.cpp$'], 790 ['exclude', 'platform/graphics/chromium/GlyphPageTreeNodeChromiu mWin\\.cpp$'],
791 ['exclude', 'platform/graphics/chromium/FontCacheChromiumWin\\.c pp$'],
790 ], 792 ],
791 }], 793 }],
792 ], 794 ],
793 },{ # OS!="win" 795 },{ # OS!="win"
794 'sources/': [ 796 'sources/': [
795 ['exclude', 'Win\\.cpp$'], 797 ['exclude', 'Win\\.cpp$'],
796 ['exclude', '/(Windows|Uniscribe)[^/]*\\.cpp$'], 798 ['exclude', '/(Windows|Uniscribe)[^/]*\\.cpp$'],
797 ['include', 'platform/graphics/opentype/OpenTypeSanitizer\\.cpp$'], 799 ['include', 'platform/graphics/opentype/OpenTypeSanitizer\\.cpp$'],
798 ], 800 ],
799 }], 801 }],
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h', 1121 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h',
1120 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp', 1122 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp',
1121 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h', 1123 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h',
1122 ], 1124 ],
1123 'sources/': [ 1125 'sources/': [
1124 ['exclude', 'testing/js'], 1126 ['exclude', 'testing/js'],
1125 ], 1127 ],
1126 }, 1128 },
1127 ], # targets 1129 ], # targets
1128 } 1130 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698