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

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

Issue 13984002: Extracting the SVG Filter Reference implementation out of the FilterEffectRenderer into its own typ… Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Updated to ToT, fixed style, warnings 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
« no previous file with comments | « no previous file | Source/core/platform/graphics/filters/Filter.h » ('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 { 2 {
3 'variables': { 3 'variables': {
4 'core_idl_files': [ 4 'core_idl_files': [
5 'css/CSSCharsetRule.idl', 5 'css/CSSCharsetRule.idl',
6 'css/CSSFontFaceLoadEvent.idl', 6 'css/CSSFontFaceLoadEvent.idl',
7 'css/CSSFontFaceRule.idl', 7 'css/CSSFontFaceRule.idl',
8 'css/CSSHostRule.idl', 8 'css/CSSHostRule.idl',
9 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
10 'css/CSSMediaRule.idl', 10 'css/CSSMediaRule.idl',
(...skipping 2853 matching lines...) Expand 10 before | Expand all | Expand 10 after
2864 'platform/graphics/filters/Filter.h', 2864 'platform/graphics/filters/Filter.h',
2865 'platform/graphics/filters/FilterEffect.cpp', 2865 'platform/graphics/filters/FilterEffect.cpp',
2866 'platform/graphics/filters/FilterEffect.h', 2866 'platform/graphics/filters/FilterEffect.h',
2867 'platform/graphics/filters/FilterOperation.cpp', 2867 'platform/graphics/filters/FilterOperation.cpp',
2868 'platform/graphics/filters/FilterOperation.h', 2868 'platform/graphics/filters/FilterOperation.h',
2869 'platform/graphics/filters/FilterOperations.cpp', 2869 'platform/graphics/filters/FilterOperations.cpp',
2870 'platform/graphics/filters/FilterOperations.h', 2870 'platform/graphics/filters/FilterOperations.h',
2871 'platform/graphics/filters/LightSource.h', 2871 'platform/graphics/filters/LightSource.h',
2872 'platform/graphics/filters/PointLightSource.cpp', 2872 'platform/graphics/filters/PointLightSource.cpp',
2873 'platform/graphics/filters/PointLightSource.h', 2873 'platform/graphics/filters/PointLightSource.h',
2874 'platform/graphics/filters/ReferenceFilter.cpp',
2875 'platform/graphics/filters/ReferenceFilter.h',
2874 'platform/graphics/filters/SkiaImageFilterBuilder.cpp', 2876 'platform/graphics/filters/SkiaImageFilterBuilder.cpp',
2875 'platform/graphics/filters/SkiaImageFilterBuilder.h', 2877 'platform/graphics/filters/SkiaImageFilterBuilder.h',
2876 'platform/graphics/filters/SourceAlpha.cpp', 2878 'platform/graphics/filters/SourceAlpha.cpp',
2877 'platform/graphics/filters/SourceAlpha.h', 2879 'platform/graphics/filters/SourceAlpha.h',
2878 'platform/graphics/filters/SourceGraphic.cpp', 2880 'platform/graphics/filters/SourceGraphic.cpp',
2879 'platform/graphics/filters/SourceGraphic.h', 2881 'platform/graphics/filters/SourceGraphic.h',
2880 'platform/graphics/filters/SpotLightSource.cpp', 2882 'platform/graphics/filters/SpotLightSource.cpp',
2881 'platform/graphics/filters/SpotLightSource.h', 2883 'platform/graphics/filters/SpotLightSource.h',
2882 'platform/graphics/gpu/DrawingBuffer.cpp', 2884 'platform/graphics/gpu/DrawingBuffer.cpp',
2883 'platform/graphics/gpu/DrawingBuffer.h', 2885 'platform/graphics/gpu/DrawingBuffer.h',
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
3157 'platform/graphics/IntRect.cpp', 3159 'platform/graphics/IntRect.cpp',
3158 'platform/graphics/IntRectExtent.h', 3160 'platform/graphics/IntRectExtent.h',
3159 'platform/graphics/LayoutRect.cpp', 3161 'platform/graphics/LayoutRect.cpp',
3160 'platform/graphics/Region.cpp', 3162 'platform/graphics/Region.cpp',
3161 'platform/graphics/transforms/TransformationMatrix.cpp', 3163 'platform/graphics/transforms/TransformationMatrix.cpp',
3162 'platform/graphics/transforms/AffineTransform.cpp', 3164 'platform/graphics/transforms/AffineTransform.cpp',
3163 ], 3165 ],
3164 'webcore_svg_files': [ 3166 'webcore_svg_files': [
3165 'rendering/style/SVGRenderStyle.cpp', 3167 'rendering/style/SVGRenderStyle.cpp',
3166 'rendering/style/SVGRenderStyleDefs.cpp', 3168 'rendering/style/SVGRenderStyleDefs.cpp',
3169 'rendering/svg/ReferenceFilterBuilder.cpp',
3170 'rendering/svg/ReferenceFilterBuilder.h',
3167 'rendering/svg/RenderSVGBlock.cpp', 3171 'rendering/svg/RenderSVGBlock.cpp',
3168 'rendering/svg/RenderSVGBlock.h', 3172 'rendering/svg/RenderSVGBlock.h',
3169 'rendering/svg/RenderSVGContainer.cpp', 3173 'rendering/svg/RenderSVGContainer.cpp',
3170 'rendering/svg/RenderSVGContainer.h', 3174 'rendering/svg/RenderSVGContainer.h',
3171 'rendering/svg/RenderSVGEllipse.cpp', 3175 'rendering/svg/RenderSVGEllipse.cpp',
3172 'rendering/svg/RenderSVGEllipse.h', 3176 'rendering/svg/RenderSVGEllipse.h',
3173 'rendering/svg/RenderSVGForeignObject.cpp', 3177 'rendering/svg/RenderSVGForeignObject.cpp',
3174 'rendering/svg/RenderSVGForeignObject.h', 3178 'rendering/svg/RenderSVGForeignObject.h',
3175 'rendering/svg/RenderSVGGradientStop.cpp', 3179 'rendering/svg/RenderSVGGradientStop.cpp',
3176 'rendering/svg/RenderSVGGradientStop.h', 3180 'rendering/svg/RenderSVGGradientStop.h',
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
3694 'bison_exe': 'bison', 3698 'bison_exe': 'bison',
3695 # We specify a preprocess so it happens locally and won't get 3699 # We specify a preprocess so it happens locally and won't get
3696 # distributed to goma. 3700 # distributed to goma.
3697 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3701 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3698 # use /usr/bin/clang once we require Xcode 4.x. 3702 # use /usr/bin/clang once we require Xcode 4.x.
3699 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3703 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3700 }], 3704 }],
3701 ], 3705 ],
3702 } 3706 }
3703 } 3707 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/platform/graphics/filters/Filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698