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

Side by Side Diff: gyp/effects.gypi

Issue 13602013: Allow single-pass filters (which use asNewEffect()) to participate in the image filter DAG. This w… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fix return value of SkImageFilter::asNewEffect(). Created 7 years, 8 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 # Include this gypi to include all 'effects' files 1 # Include this gypi to include all 'effects' files
2 # The parent gyp/gypi file must define: 2 # The parent gyp/gypi file must define:
3 # 'skia_src_path' e.g. skia/trunk/src 3 # 'skia_src_path' e.g. skia/trunk/src
4 # 'skia_include_path' e.g. skia/trunk/include 4 # 'skia_include_path' e.g. skia/trunk/include
5 # 5 #
6 # The skia build defines these in common_variables.gypi. 6 # The skia build defines these in common_variables.gypi.
7 # 7 #
8 { 8 {
9 'sources': [ 9 'sources': [
10 '<(skia_src_path)/effects/Sk1DPathEffect.cpp', 10 '<(skia_src_path)/effects/Sk1DPathEffect.cpp',
(...skipping 13 matching lines...) Expand all
24 '<(skia_src_path)/effects/SkColorMatrix.cpp', 24 '<(skia_src_path)/effects/SkColorMatrix.cpp',
25 '<(skia_src_path)/effects/SkColorMatrixFilter.cpp', 25 '<(skia_src_path)/effects/SkColorMatrixFilter.cpp',
26 '<(skia_src_path)/effects/SkCornerPathEffect.cpp', 26 '<(skia_src_path)/effects/SkCornerPathEffect.cpp',
27 '<(skia_src_path)/effects/SkDashPathEffect.cpp', 27 '<(skia_src_path)/effects/SkDashPathEffect.cpp',
28 '<(skia_src_path)/effects/SkDiscretePathEffect.cpp', 28 '<(skia_src_path)/effects/SkDiscretePathEffect.cpp',
29 '<(skia_src_path)/effects/SkDisplacementMapEffect.cpp', 29 '<(skia_src_path)/effects/SkDisplacementMapEffect.cpp',
30 '<(skia_src_path)/effects/SkEmbossMask.cpp', 30 '<(skia_src_path)/effects/SkEmbossMask.cpp',
31 '<(skia_src_path)/effects/SkEmbossMask.h', 31 '<(skia_src_path)/effects/SkEmbossMask.h',
32 '<(skia_src_path)/effects/SkEmbossMask_Table.h', 32 '<(skia_src_path)/effects/SkEmbossMask_Table.h',
33 '<(skia_src_path)/effects/SkEmbossMaskFilter.cpp', 33 '<(skia_src_path)/effects/SkEmbossMaskFilter.cpp',
34 '<(skia_src_path)/effects/SkImageFilterUtils.cpp',
35 '<(skia_src_path)/effects/SkKernel33MaskFilter.cpp', 34 '<(skia_src_path)/effects/SkKernel33MaskFilter.cpp',
36 '<(skia_src_path)/effects/SkLayerDrawLooper.cpp', 35 '<(skia_src_path)/effects/SkLayerDrawLooper.cpp',
37 '<(skia_src_path)/effects/SkLayerRasterizer.cpp', 36 '<(skia_src_path)/effects/SkLayerRasterizer.cpp',
38 '<(skia_src_path)/effects/SkLightingImageFilter.cpp', 37 '<(skia_src_path)/effects/SkLightingImageFilter.cpp',
39 '<(skia_src_path)/effects/SkMatrixConvolutionImageFilter.cpp', 38 '<(skia_src_path)/effects/SkMatrixConvolutionImageFilter.cpp',
40 '<(skia_src_path)/effects/SkMergeImageFilter.cpp', 39 '<(skia_src_path)/effects/SkMergeImageFilter.cpp',
41 '<(skia_src_path)/effects/SkMorphologyImageFilter.cpp', 40 '<(skia_src_path)/effects/SkMorphologyImageFilter.cpp',
42 '<(skia_src_path)/effects/SkOffsetImageFilter.cpp', 41 '<(skia_src_path)/effects/SkOffsetImageFilter.cpp',
43 '<(skia_src_path)/effects/SkPaintFlagsDrawFilter.cpp', 42 '<(skia_src_path)/effects/SkPaintFlagsDrawFilter.cpp',
44 '<(skia_src_path)/effects/SkPerlinNoiseShader.cpp', 43 '<(skia_src_path)/effects/SkPerlinNoiseShader.cpp',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 '<(skia_include_path)/effects/SkColorMatrix.h', 81 '<(skia_include_path)/effects/SkColorMatrix.h',
83 '<(skia_include_path)/effects/SkColorMatrixFilter.h', 82 '<(skia_include_path)/effects/SkColorMatrixFilter.h',
84 '<(skia_include_path)/effects/SkColorFilterImageFilter.h', 83 '<(skia_include_path)/effects/SkColorFilterImageFilter.h',
85 '<(skia_include_path)/effects/SkCornerPathEffect.h', 84 '<(skia_include_path)/effects/SkCornerPathEffect.h',
86 '<(skia_include_path)/effects/SkDashPathEffect.h', 85 '<(skia_include_path)/effects/SkDashPathEffect.h',
87 '<(skia_include_path)/effects/SkDiscretePathEffect.h', 86 '<(skia_include_path)/effects/SkDiscretePathEffect.h',
88 '<(skia_include_path)/effects/SkDisplacementMapEffect.h', 87 '<(skia_include_path)/effects/SkDisplacementMapEffect.h',
89 '<(skia_include_path)/effects/SkDrawExtraPathEffect.h', 88 '<(skia_include_path)/effects/SkDrawExtraPathEffect.h',
90 '<(skia_include_path)/effects/SkEmbossMaskFilter.h', 89 '<(skia_include_path)/effects/SkEmbossMaskFilter.h',
91 '<(skia_include_path)/effects/SkGradientShader.h', 90 '<(skia_include_path)/effects/SkGradientShader.h',
92 '<(skia_include_path)/effects/SkImageFilterUtils.h',
93 '<(skia_include_path)/effects/SkKernel33MaskFilter.h', 91 '<(skia_include_path)/effects/SkKernel33MaskFilter.h',
94 '<(skia_include_path)/effects/SkLayerDrawLooper.h', 92 '<(skia_include_path)/effects/SkLayerDrawLooper.h',
95 '<(skia_include_path)/effects/SkLayerRasterizer.h', 93 '<(skia_include_path)/effects/SkLayerRasterizer.h',
96 '<(skia_include_path)/effects/SkLightingImageFilter.h', 94 '<(skia_include_path)/effects/SkLightingImageFilter.h',
97 '<(skia_include_path)/effects/SkOffsetImageFilter.h', 95 '<(skia_include_path)/effects/SkOffsetImageFilter.h',
98 '<(skia_include_path)/effects/SkMorphologyImageFilter.h', 96 '<(skia_include_path)/effects/SkMorphologyImageFilter.h',
99 '<(skia_include_path)/effects/SkPaintFlagsDrawFilter.h', 97 '<(skia_include_path)/effects/SkPaintFlagsDrawFilter.h',
100 '<(skia_include_path)/effects/SkPerlinNoiseShader.h', 98 '<(skia_include_path)/effects/SkPerlinNoiseShader.h',
101 '<(skia_include_path)/effects/SkPixelXorXfermode.h', 99 '<(skia_include_path)/effects/SkPixelXorXfermode.h',
102 '<(skia_include_path)/effects/SkPorterDuff.h', 100 '<(skia_include_path)/effects/SkPorterDuff.h',
103 '<(skia_include_path)/effects/SkRectShaderImageFilter.h', 101 '<(skia_include_path)/effects/SkRectShaderImageFilter.h',
104 '<(skia_include_path)/effects/SkStippleMaskFilter.h', 102 '<(skia_include_path)/effects/SkStippleMaskFilter.h',
105 '<(skia_include_path)/effects/SkTableColorFilter.h', 103 '<(skia_include_path)/effects/SkTableColorFilter.h',
106 '<(skia_include_path)/effects/SkTableMaskFilter.h', 104 '<(skia_include_path)/effects/SkTableMaskFilter.h',
107 '<(skia_include_path)/effects/SkTransparentShader.h', 105 '<(skia_include_path)/effects/SkTransparentShader.h',
108 '<(skia_include_path)/effects/SkMagnifierImageFilter.h', 106 '<(skia_include_path)/effects/SkMagnifierImageFilter.h',
109 ], 107 ],
110 } 108 }
111 109
112 # Local Variables: 110 # Local Variables:
113 # tab-width:2 111 # tab-width:2
114 # indent-tabs-mode:nil 112 # indent-tabs-mode:nil
115 # End: 113 # End:
116 # vim: set expandtab tabstop=2 shiftwidth=2: 114 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | include/core/SkImageFilter.h » ('j') | src/core/SkImageFilter.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698