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

Side by Side Diff: gyp/gpu.gypi

Issue 12462008: Add GrEllipseEdgeEffect (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | include/gpu/GrEffect.h » ('j') | include/gpu/GrEffect.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Include this gypi to include all 'gr' and 'skgr' files 1 # Include this gypi to include all 'gr' and 'skgr' 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 'variables': { 9 'variables': {
10 'gr_sources': [ 10 'gr_sources': [
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 '<(skia_src_path)/gpu/GrTextContext.cpp', 114 '<(skia_src_path)/gpu/GrTextContext.cpp',
115 '<(skia_src_path)/gpu/GrTextStrike.cpp', 115 '<(skia_src_path)/gpu/GrTextStrike.cpp',
116 '<(skia_src_path)/gpu/GrTextStrike.h', 116 '<(skia_src_path)/gpu/GrTextStrike.h',
117 '<(skia_src_path)/gpu/GrTextStrike_impl.h', 117 '<(skia_src_path)/gpu/GrTextStrike_impl.h',
118 '<(skia_src_path)/gpu/GrTexture.cpp', 118 '<(skia_src_path)/gpu/GrTexture.cpp',
119 '<(skia_src_path)/gpu/GrTextureAccess.cpp', 119 '<(skia_src_path)/gpu/GrTextureAccess.cpp',
120 '<(skia_src_path)/gpu/GrTHashCache.h', 120 '<(skia_src_path)/gpu/GrTHashCache.h',
121 '<(skia_src_path)/gpu/GrVertexBuffer.h', 121 '<(skia_src_path)/gpu/GrVertexBuffer.h',
122 '<(skia_src_path)/gpu/gr_unittests.cpp', 122 '<(skia_src_path)/gpu/gr_unittests.cpp',
123 123
124 '<(skia_src_path)/gpu/effects/Gr1DKernelEffect.h', 124 '<(skia_src_path)/gpu/effects/Gr1DKernelEffect.h',
robertphillips 2013/03/05 20:30:13 What is texture strip atlas doing up here?
jvanverth1 2013/03/07 15:21:54 Done. Also removed GrCircleEdgeEffect, which I did
125 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.h', 125 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.h',
126 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.cpp', 126 '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.cpp',
127 '<(skia_src_path)/gpu/effects/GrCircleEdgeEffect.cpp',
128 '<(skia_src_path)/gpu/effects/GrCircleEdgeEffect.h',
127 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.cpp', 129 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.cpp',
128 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.h', 130 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.h',
129 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.cpp', 131 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.cpp',
130 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.h', 132 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.h',
133 '<(skia_src_path)/gpu/effects/GrEllipseEdgeEffect.cpp',
134 '<(skia_src_path)/gpu/effects/GrEllipseEdgeEffect.h',
131 '<(skia_src_path)/gpu/effects/GrSimpleTextureEffect.cpp', 135 '<(skia_src_path)/gpu/effects/GrSimpleTextureEffect.cpp',
132 '<(skia_src_path)/gpu/effects/GrSimpleTextureEffect.h', 136 '<(skia_src_path)/gpu/effects/GrSimpleTextureEffect.h',
133 '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.cpp', 137 '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.cpp',
134 '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.h', 138 '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.h',
135 '<(skia_src_path)/gpu/effects/GrTextureDomainEffect.cpp', 139 '<(skia_src_path)/gpu/effects/GrTextureDomainEffect.cpp',
136 '<(skia_src_path)/gpu/effects/GrTextureDomainEffect.h', 140 '<(skia_src_path)/gpu/effects/GrTextureDomainEffect.h',
137 141
138 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.cpp', 142 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.cpp',
139 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.h', 143 '<(skia_src_path)/gpu/gl/GrGLBufferImpl.h',
140 '<(skia_src_path)/gpu/gl/GrGLCaps.cpp', 144 '<(skia_src_path)/gpu/gl/GrGLCaps.cpp',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 269 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
266 ], 270 ],
267 }, 271 },
268 } 272 }
269 273
270 # Local Variables: 274 # Local Variables:
271 # tab-width:2 275 # tab-width:2
272 # indent-tabs-mode:nil 276 # indent-tabs-mode:nil
273 # End: 277 # End:
274 # vim: set expandtab tabstop=2 shiftwidth=2: 278 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | include/gpu/GrEffect.h » ('j') | include/gpu/GrEffect.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698