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

Side by Side Diff: gyp/effects.gypi

Issue 1011273003: Move SkMatrixImageFilter into core, and add a factory fn for it. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Changed all callers to use SkImageFilter::CreateMatrixFilter() instead of SKMIF::Create() Created 5 years, 9 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 | « gyp/core.gypi ('k') | include/core/SkImageFilter.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 # 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 '<(skia_src_path)/effects/SkOffsetImageFilter.cpp', 49 '<(skia_src_path)/effects/SkOffsetImageFilter.cpp',
50 '<(skia_src_path)/effects/SkPaintFlagsDrawFilter.cpp', 50 '<(skia_src_path)/effects/SkPaintFlagsDrawFilter.cpp',
51 '<(skia_src_path)/effects/SkPerlinNoiseShader.cpp', 51 '<(skia_src_path)/effects/SkPerlinNoiseShader.cpp',
52 '<(skia_src_path)/effects/SkPictureImageFilter.cpp', 52 '<(skia_src_path)/effects/SkPictureImageFilter.cpp',
53 '<(skia_src_path)/effects/SkPixelXorXfermode.cpp', 53 '<(skia_src_path)/effects/SkPixelXorXfermode.cpp',
54 '<(skia_src_path)/effects/SkRectShaderImageFilter.cpp', 54 '<(skia_src_path)/effects/SkRectShaderImageFilter.cpp',
55 '<(skia_src_path)/effects/SkTableColorFilter.cpp', 55 '<(skia_src_path)/effects/SkTableColorFilter.cpp',
56 '<(skia_src_path)/effects/SkTableMaskFilter.cpp', 56 '<(skia_src_path)/effects/SkTableMaskFilter.cpp',
57 '<(skia_src_path)/effects/SkTestImageFilters.cpp', 57 '<(skia_src_path)/effects/SkTestImageFilters.cpp',
58 '<(skia_src_path)/effects/SkTileImageFilter.cpp', 58 '<(skia_src_path)/effects/SkTileImageFilter.cpp',
59 '<(skia_src_path)/effects/SkMatrixImageFilter.cpp',
60 '<(skia_src_path)/effects/SkTransparentShader.cpp', 59 '<(skia_src_path)/effects/SkTransparentShader.cpp',
61 '<(skia_src_path)/effects/SkXfermodeImageFilter.cpp', 60 '<(skia_src_path)/effects/SkXfermodeImageFilter.cpp',
62 61
63 '<(skia_src_path)/effects/gradients/SkClampRange.cpp', 62 '<(skia_src_path)/effects/gradients/SkClampRange.cpp',
64 '<(skia_src_path)/effects/gradients/SkClampRange.h', 63 '<(skia_src_path)/effects/gradients/SkClampRange.h',
65 '<(skia_src_path)/effects/gradients/SkRadialGradient_Table.h', 64 '<(skia_src_path)/effects/gradients/SkRadialGradient_Table.h',
66 '<(skia_src_path)/effects/gradients/SkGradientBitmapCache.cpp', 65 '<(skia_src_path)/effects/gradients/SkGradientBitmapCache.cpp',
67 '<(skia_src_path)/effects/gradients/SkGradientBitmapCache.h', 66 '<(skia_src_path)/effects/gradients/SkGradientBitmapCache.h',
68 '<(skia_src_path)/effects/gradients/SkGradientShader.cpp', 67 '<(skia_src_path)/effects/gradients/SkGradientShader.cpp',
69 '<(skia_src_path)/effects/gradients/SkGradientShaderPriv.h', 68 '<(skia_src_path)/effects/gradients/SkGradientShaderPriv.h',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 '<(skia_include_path)/effects/SkPerlinNoiseShader.h', 111 '<(skia_include_path)/effects/SkPerlinNoiseShader.h',
113 '<(skia_include_path)/effects/SkPixelXorXfermode.h', 112 '<(skia_include_path)/effects/SkPixelXorXfermode.h',
114 '<(skia_include_path)/effects/SkRectShaderImageFilter.h', 113 '<(skia_include_path)/effects/SkRectShaderImageFilter.h',
115 '<(skia_include_path)/effects/SkTableColorFilter.h', 114 '<(skia_include_path)/effects/SkTableColorFilter.h',
116 '<(skia_include_path)/effects/SkTableMaskFilter.h', 115 '<(skia_include_path)/effects/SkTableMaskFilter.h',
117 '<(skia_include_path)/effects/SkTileImageFilter.h', 116 '<(skia_include_path)/effects/SkTileImageFilter.h',
118 '<(skia_include_path)/effects/SkTransparentShader.h', 117 '<(skia_include_path)/effects/SkTransparentShader.h',
119 '<(skia_include_path)/effects/SkMagnifierImageFilter.h', 118 '<(skia_include_path)/effects/SkMagnifierImageFilter.h',
120 ], 119 ],
121 } 120 }
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | include/core/SkImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698