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

Side by Side Diff: gyp/gpu.gypi

Issue 844913003: Move XferEffects class to GrCustomXfermode file (Closed) Base URL: https://skia.googlesource.com/skia.git@arithXP
Patch Set: Fix build Created 5 years, 11 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 | include/gpu/effects/GrCustomXfermode.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 'gpu' files 1 # Include this gypi to include all 'gpu' 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 'skgpu_sources': [ 10 'skgpu_sources': [
(...skipping 17 matching lines...) Expand all
28 '<(skia_include_path)/gpu/GrRenderTarget.h', 28 '<(skia_include_path)/gpu/GrRenderTarget.h',
29 '<(skia_include_path)/gpu/GrResourceKey.h', 29 '<(skia_include_path)/gpu/GrResourceKey.h',
30 '<(skia_include_path)/gpu/GrSurface.h', 30 '<(skia_include_path)/gpu/GrSurface.h',
31 '<(skia_include_path)/gpu/GrShaderVar.h', 31 '<(skia_include_path)/gpu/GrShaderVar.h',
32 '<(skia_include_path)/gpu/GrTexture.h', 32 '<(skia_include_path)/gpu/GrTexture.h',
33 '<(skia_include_path)/gpu/GrTextureAccess.h', 33 '<(skia_include_path)/gpu/GrTextureAccess.h',
34 '<(skia_include_path)/gpu/GrTypes.h', 34 '<(skia_include_path)/gpu/GrTypes.h',
35 '<(skia_include_path)/gpu/GrUserConfig.h', 35 '<(skia_include_path)/gpu/GrUserConfig.h',
36 '<(skia_include_path)/gpu/GrXferProcessor.h', 36 '<(skia_include_path)/gpu/GrXferProcessor.h',
37 37
38 '<(skia_include_path)/gpu/effects/GrCustomXfermode.h',
38 '<(skia_include_path)/gpu/effects/GrPorterDuffXferProcessor.h', 39 '<(skia_include_path)/gpu/effects/GrPorterDuffXferProcessor.h',
39 40
40 '<(skia_include_path)/gpu/gl/GrGLConfig.h', 41 '<(skia_include_path)/gpu/gl/GrGLConfig.h',
41 '<(skia_include_path)/gpu/gl/GrGLExtensions.h', 42 '<(skia_include_path)/gpu/gl/GrGLExtensions.h',
42 '<(skia_include_path)/gpu/gl/GrGLFunctions.h', 43 '<(skia_include_path)/gpu/gl/GrGLFunctions.h',
43 '<(skia_include_path)/gpu/gl/GrGLInterface.h', 44 '<(skia_include_path)/gpu/gl/GrGLInterface.h',
44 '<(skia_include_path)/gpu/gl/GrGLSLPrettyPrint.h', 45 '<(skia_include_path)/gpu/gl/GrGLSLPrettyPrint.h',
45 46
46 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.cpp', 47 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.cpp',
47 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.h', 48 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.h',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 '<(skia_src_path)/gpu/GrTexturePriv.h', 173 '<(skia_src_path)/gpu/GrTexturePriv.h',
173 '<(skia_src_path)/gpu/GrTextureAccess.cpp', 174 '<(skia_src_path)/gpu/GrTextureAccess.cpp',
174 '<(skia_src_path)/gpu/GrTRecorder.h', 175 '<(skia_src_path)/gpu/GrTRecorder.h',
175 '<(skia_src_path)/gpu/GrVertexBuffer.h', 176 '<(skia_src_path)/gpu/GrVertexBuffer.h',
176 177
177 '<(skia_src_path)/gpu/effects/Gr1DKernelEffect.h', 178 '<(skia_src_path)/gpu/effects/Gr1DKernelEffect.h',
178 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.cpp', 179 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.cpp',
179 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.h', 180 '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.h',
180 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.cpp', 181 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.cpp',
181 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.h', 182 '<(skia_src_path)/gpu/effects/GrCoverageSetOpXP.h',
183 '<(skia_src_path)/gpu/effects/GrCustomXfermode.cpp',
184 '<(skia_src_path)/gpu/effects/GrCustomXfermodePriv.h',
182 '<(skia_src_path)/gpu/effects/GrBezierEffect.cpp', 185 '<(skia_src_path)/gpu/effects/GrBezierEffect.cpp',
183 '<(skia_src_path)/gpu/effects/GrBezierEffect.h', 186 '<(skia_src_path)/gpu/effects/GrBezierEffect.h',
184 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.cpp', 187 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.cpp',
185 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.h', 188 '<(skia_src_path)/gpu/effects/GrConvolutionEffect.h',
186 '<(skia_src_path)/gpu/effects/GrConvexPolyEffect.cpp', 189 '<(skia_src_path)/gpu/effects/GrConvexPolyEffect.cpp',
187 '<(skia_src_path)/gpu/effects/GrConvexPolyEffect.h', 190 '<(skia_src_path)/gpu/effects/GrConvexPolyEffect.h',
188 '<(skia_src_path)/gpu/effects/GrBicubicEffect.cpp', 191 '<(skia_src_path)/gpu/effects/GrBicubicEffect.cpp',
189 '<(skia_src_path)/gpu/effects/GrBicubicEffect.h', 192 '<(skia_src_path)/gpu/effects/GrBicubicEffect.h',
190 '<(skia_src_path)/gpu/effects/GrBitmapTextGeoProc.cpp', 193 '<(skia_src_path)/gpu/effects/GrBitmapTextGeoProc.cpp',
191 '<(skia_src_path)/gpu/effects/GrBitmapTextGeoProc.h', 194 '<(skia_src_path)/gpu/effects/GrBitmapTextGeoProc.h',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 ], 366 ],
364 'skgpu_null_gl_sources': [ 367 'skgpu_null_gl_sources': [
365 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 368 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
366 369
367 # Sk files 370 # Sk files
368 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 371 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
369 '<(skia_src_path)/gpu/gl/SkNullGLContext.h', 372 '<(skia_src_path)/gpu/gl/SkNullGLContext.h',
370 ], 373 ],
371 }, 374 },
372 } 375 }
OLDNEW
« no previous file with comments | « no previous file | include/gpu/effects/GrCustomXfermode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698