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

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

Issue 15137009: Refactor shadow rendering logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove unnecessary <algorithm> include Created 7 years, 7 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 1
2 { 2 {
3 'variables': { 3 'variables': {
4 'core_idl_files': [ 4 'core_idl_files': [
5 'css/CSS.idl', 5 'css/CSS.idl',
6 'css/CSSCharsetRule.idl', 6 'css/CSSCharsetRule.idl',
7 'css/CSSFontFaceLoadEvent.idl', 7 'css/CSSFontFaceLoadEvent.idl',
8 'css/CSSFontFaceRule.idl', 8 'css/CSSFontFaceRule.idl',
9 'css/CSSHostRule.idl', 9 'css/CSSHostRule.idl',
10 'css/CSSImportRule.idl', 10 'css/CSSImportRule.idl',
(...skipping 2638 matching lines...) Expand 10 before | Expand all | Expand 10 after
2649 'platform/chromium/TraceEvent.h', 2649 'platform/chromium/TraceEvent.h',
2650 'platform/chromium/VisitedLinksChromium.cpp', 2650 'platform/chromium/VisitedLinksChromium.cpp',
2651 'platform/cocoa/KeyEventCocoa.h', 2651 'platform/cocoa/KeyEventCocoa.h',
2652 'platform/cocoa/KeyEventCocoa.mm', 2652 'platform/cocoa/KeyEventCocoa.mm',
2653 'platform/graphics/ANGLEWebKitBridge.cpp', 2653 'platform/graphics/ANGLEWebKitBridge.cpp',
2654 'platform/graphics/ANGLEWebKitBridge.h', 2654 'platform/graphics/ANGLEWebKitBridge.h',
2655 'platform/graphics/BitmapImage.cpp', 2655 'platform/graphics/BitmapImage.cpp',
2656 'platform/graphics/Color.cpp', 2656 'platform/graphics/Color.cpp',
2657 'platform/graphics/CrossfadeGeneratedImage.cpp', 2657 'platform/graphics/CrossfadeGeneratedImage.cpp',
2658 'platform/graphics/CrossfadeGeneratedImage.h', 2658 'platform/graphics/CrossfadeGeneratedImage.h',
2659 'platform/graphics/DrawLooper.cpp',
2660 'platform/graphics/DrawLooper.h',
2659 'platform/graphics/Extensions3D.cpp', 2661 'platform/graphics/Extensions3D.cpp',
2660 'platform/graphics/Extensions3D.h', 2662 'platform/graphics/Extensions3D.h',
2661 'platform/graphics/Font.cpp', 2663 'platform/graphics/Font.cpp',
2662 'platform/graphics/FontCache.cpp', 2664 'platform/graphics/FontCache.cpp',
2663 'platform/graphics/FontData.cpp', 2665 'platform/graphics/FontData.cpp',
2664 'platform/graphics/FontDescription.cpp', 2666 'platform/graphics/FontDescription.cpp',
2665 'platform/graphics/FontFallbackList.cpp', 2667 'platform/graphics/FontFallbackList.cpp',
2666 'platform/graphics/FontFamily.cpp', 2668 'platform/graphics/FontFamily.cpp',
2667 'platform/graphics/FontFeatureSettings.cpp', 2669 'platform/graphics/FontFeatureSettings.cpp',
2668 'platform/graphics/FontFastPath.cpp', 2670 'platform/graphics/FontFastPath.cpp',
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after
3674 'bison_exe': 'bison', 3676 'bison_exe': 'bison',
3675 # We specify a preprocess so it happens locally and won't get 3677 # We specify a preprocess so it happens locally and won't get
3676 # distributed to goma. 3678 # distributed to goma.
3677 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3679 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3678 # use /usr/bin/clang once we require Xcode 4.x. 3680 # use /usr/bin/clang once we require Xcode 4.x.
3679 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3681 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3680 }], 3682 }],
3681 ], 3683 ],
3682 } 3684 }
3683 } 3685 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698