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

Side by Side Diff: gyp/effects.gypi

Issue 16125008: Implement SkXfermode image filter (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Add new case to xfermodeimagefilter GM; revert changes to arithmode GM Created 7 years, 6 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
« no previous file with comments | « gm/xfermodeimagefilter.cpp ('k') | gyp/gmslides.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 # 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',
11 '<(skia_src_path)/effects/Sk2DPathEffect.cpp', 11 '<(skia_src_path)/effects/Sk2DPathEffect.cpp',
12 '<(skia_src_path)/effects/SkArithmeticMode.cpp',
12 '<(skia_src_path)/effects/SkAvoidXfermode.cpp', 13 '<(skia_src_path)/effects/SkAvoidXfermode.cpp',
13 '<(skia_src_path)/effects/SkArithmeticMode.cpp',
14 '<(skia_src_path)/effects/SkBicubicImageFilter.cpp', 14 '<(skia_src_path)/effects/SkBicubicImageFilter.cpp',
15 '<(skia_src_path)/effects/SkBitmapSource.cpp', 15 '<(skia_src_path)/effects/SkBitmapSource.cpp',
16 '<(skia_src_path)/effects/SkBlendImageFilter.cpp', 16 '<(skia_src_path)/effects/SkBlendImageFilter.cpp',
17 '<(skia_src_path)/effects/SkBlurDrawLooper.cpp', 17 '<(skia_src_path)/effects/SkBlurDrawLooper.cpp',
18 '<(skia_src_path)/effects/SkBlurMask.cpp', 18 '<(skia_src_path)/effects/SkBlurMask.cpp',
19 '<(skia_src_path)/effects/SkBlurMask.h', 19 '<(skia_src_path)/effects/SkBlurMask.h',
20 '<(skia_src_path)/effects/SkBlurImageFilter.cpp', 20 '<(skia_src_path)/effects/SkBlurImageFilter.cpp',
21 '<(skia_src_path)/effects/SkBlurMaskFilter.cpp', 21 '<(skia_src_path)/effects/SkBlurMaskFilter.cpp',
22 '<(skia_src_path)/effects/SkColorFilters.cpp', 22 '<(skia_src_path)/effects/SkColorFilters.cpp',
23 '<(skia_src_path)/effects/SkColorFilterImageFilter.cpp', 23 '<(skia_src_path)/effects/SkColorFilterImageFilter.cpp',
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/SkKernel33MaskFilter.cpp', 34 '<(skia_src_path)/effects/SkKernel33MaskFilter.cpp',
35 '<(skia_src_path)/effects/SkLayerDrawLooper.cpp', 35 '<(skia_src_path)/effects/SkLayerDrawLooper.cpp',
36 '<(skia_src_path)/effects/SkLayerRasterizer.cpp', 36 '<(skia_src_path)/effects/SkLayerRasterizer.cpp',
37 '<(skia_src_path)/effects/SkLerpXfermode.cpp', 37 '<(skia_src_path)/effects/SkLerpXfermode.cpp',
38 '<(skia_src_path)/effects/SkLightingImageFilter.cpp', 38 '<(skia_src_path)/effects/SkLightingImageFilter.cpp',
39 '<(skia_src_path)/effects/SkMagnifierImageFilter.cpp',
39 '<(skia_src_path)/effects/SkMatrixConvolutionImageFilter.cpp', 40 '<(skia_src_path)/effects/SkMatrixConvolutionImageFilter.cpp',
40 '<(skia_src_path)/effects/SkMergeImageFilter.cpp', 41 '<(skia_src_path)/effects/SkMergeImageFilter.cpp',
41 '<(skia_src_path)/effects/SkMorphologyImageFilter.cpp', 42 '<(skia_src_path)/effects/SkMorphologyImageFilter.cpp',
42 '<(skia_src_path)/effects/SkOffsetImageFilter.cpp', 43 '<(skia_src_path)/effects/SkOffsetImageFilter.cpp',
43 '<(skia_src_path)/effects/SkPaintFlagsDrawFilter.cpp', 44 '<(skia_src_path)/effects/SkPaintFlagsDrawFilter.cpp',
44 '<(skia_src_path)/effects/SkPerlinNoiseShader.cpp', 45 '<(skia_src_path)/effects/SkPerlinNoiseShader.cpp',
45 '<(skia_src_path)/effects/SkPixelXorXfermode.cpp', 46 '<(skia_src_path)/effects/SkPixelXorXfermode.cpp',
46 '<(skia_src_path)/effects/SkPorterDuff.cpp', 47 '<(skia_src_path)/effects/SkPorterDuff.cpp',
47 '<(skia_src_path)/effects/SkRectShaderImageFilter.cpp', 48 '<(skia_src_path)/effects/SkRectShaderImageFilter.cpp',
48 '<(skia_src_path)/effects/SkStippleMaskFilter.cpp', 49 '<(skia_src_path)/effects/SkStippleMaskFilter.cpp',
49 '<(skia_src_path)/effects/SkTableColorFilter.cpp', 50 '<(skia_src_path)/effects/SkTableColorFilter.cpp',
50 '<(skia_src_path)/effects/SkTableMaskFilter.cpp', 51 '<(skia_src_path)/effects/SkTableMaskFilter.cpp',
51 '<(skia_src_path)/effects/SkTestImageFilters.cpp', 52 '<(skia_src_path)/effects/SkTestImageFilters.cpp',
52 '<(skia_src_path)/effects/SkTransparentShader.cpp', 53 '<(skia_src_path)/effects/SkTransparentShader.cpp',
53 '<(skia_src_path)/effects/SkMagnifierImageFilter.cpp', 54 '<(skia_src_path)/effects/SkXfermodeImageFilter.cpp',
54 55
55 '<(skia_src_path)/effects/gradients/SkBitmapCache.cpp', 56 '<(skia_src_path)/effects/gradients/SkBitmapCache.cpp',
56 '<(skia_src_path)/effects/gradients/SkBitmapCache.h', 57 '<(skia_src_path)/effects/gradients/SkBitmapCache.h',
57 '<(skia_src_path)/effects/gradients/SkClampRange.cpp', 58 '<(skia_src_path)/effects/gradients/SkClampRange.cpp',
58 '<(skia_src_path)/effects/gradients/SkClampRange.h', 59 '<(skia_src_path)/effects/gradients/SkClampRange.h',
59 '<(skia_src_path)/effects/gradients/SkRadialGradient_Table.h', 60 '<(skia_src_path)/effects/gradients/SkRadialGradient_Table.h',
60 '<(skia_src_path)/effects/gradients/SkGradientShader.cpp', 61 '<(skia_src_path)/effects/gradients/SkGradientShader.cpp',
61 '<(skia_src_path)/effects/gradients/SkGradientShaderPriv.h', 62 '<(skia_src_path)/effects/gradients/SkGradientShaderPriv.h',
62 '<(skia_src_path)/effects/gradients/SkLinearGradient.cpp', 63 '<(skia_src_path)/effects/gradients/SkLinearGradient.cpp',
63 '<(skia_src_path)/effects/gradients/SkLinearGradient.h', 64 '<(skia_src_path)/effects/gradients/SkLinearGradient.h',
64 '<(skia_src_path)/effects/gradients/SkRadialGradient.cpp', 65 '<(skia_src_path)/effects/gradients/SkRadialGradient.cpp',
65 '<(skia_src_path)/effects/gradients/SkRadialGradient.h', 66 '<(skia_src_path)/effects/gradients/SkRadialGradient.h',
66 '<(skia_src_path)/effects/gradients/SkTwoPointRadialGradient.cpp', 67 '<(skia_src_path)/effects/gradients/SkTwoPointRadialGradient.cpp',
67 '<(skia_src_path)/effects/gradients/SkTwoPointRadialGradient.h', 68 '<(skia_src_path)/effects/gradients/SkTwoPointRadialGradient.h',
68 '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient.cpp', 69 '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient.cpp',
69 '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient.h', 70 '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient.h',
70 '<(skia_src_path)/effects/gradients/SkSweepGradient.cpp', 71 '<(skia_src_path)/effects/gradients/SkSweepGradient.cpp',
71 '<(skia_src_path)/effects/gradients/SkSweepGradient.h', 72 '<(skia_src_path)/effects/gradients/SkSweepGradient.h',
72 73
73 '<(skia_include_path)/effects/Sk1DPathEffect.h', 74 '<(skia_include_path)/effects/Sk1DPathEffect.h',
74 '<(skia_include_path)/effects/Sk2DPathEffect.h', 75 '<(skia_include_path)/effects/Sk2DPathEffect.h',
76 '<(skia_include_path)/effects/SkXfermodeImageFilter.h',
77 '<(skia_include_path)/effects/SkArithmeticMode.h',
75 '<(skia_include_path)/effects/SkAvoidXfermode.h', 78 '<(skia_include_path)/effects/SkAvoidXfermode.h',
76 '<(skia_include_path)/effects/SkArithmeticMode.h',
77 '<(skia_include_path)/effects/SkBitmapSource.h', 79 '<(skia_include_path)/effects/SkBitmapSource.h',
78 '<(skia_include_path)/effects/SkBlendImageFilter.h', 80 '<(skia_include_path)/effects/SkBlendImageFilter.h',
79 '<(skia_include_path)/effects/SkBlurDrawLooper.h', 81 '<(skia_include_path)/effects/SkBlurDrawLooper.h',
80 '<(skia_include_path)/effects/SkBlurImageFilter.h', 82 '<(skia_include_path)/effects/SkBlurImageFilter.h',
81 '<(skia_include_path)/effects/SkBlurMaskFilter.h', 83 '<(skia_include_path)/effects/SkBlurMaskFilter.h',
82 '<(skia_include_path)/effects/SkColorMatrix.h', 84 '<(skia_include_path)/effects/SkColorMatrix.h',
83 '<(skia_include_path)/effects/SkColorMatrixFilter.h', 85 '<(skia_include_path)/effects/SkColorMatrixFilter.h',
84 '<(skia_include_path)/effects/SkColorFilterImageFilter.h', 86 '<(skia_include_path)/effects/SkColorFilterImageFilter.h',
85 '<(skia_include_path)/effects/SkCornerPathEffect.h', 87 '<(skia_include_path)/effects/SkCornerPathEffect.h',
86 '<(skia_include_path)/effects/SkDashPathEffect.h', 88 '<(skia_include_path)/effects/SkDashPathEffect.h',
(...skipping 20 matching lines...) Expand all
107 '<(skia_include_path)/effects/SkTransparentShader.h', 109 '<(skia_include_path)/effects/SkTransparentShader.h',
108 '<(skia_include_path)/effects/SkMagnifierImageFilter.h', 110 '<(skia_include_path)/effects/SkMagnifierImageFilter.h',
109 ], 111 ],
110 } 112 }
111 113
112 # Local Variables: 114 # Local Variables:
113 # tab-width:2 115 # tab-width:2
114 # indent-tabs-mode:nil 116 # indent-tabs-mode:nil
115 # End: 117 # End:
116 # vim: set expandtab tabstop=2 shiftwidth=2: 118 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gm/xfermodeimagefilter.cpp ('k') | gyp/gmslides.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698