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

Side by Side Diff: gyp/gpu.gypi

Issue 780263003: Move GrPorterDuffXferProcessor to include/gpu/effects. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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/gpu.gyp ('k') | include/gpu/effects/GrPorterDuffXferProcessor.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/GrPorterDuffXferProcessor.h',
39
38 '<(skia_include_path)/gpu/gl/GrGLConfig.h', 40 '<(skia_include_path)/gpu/gl/GrGLConfig.h',
39 '<(skia_include_path)/gpu/gl/GrGLExtensions.h', 41 '<(skia_include_path)/gpu/gl/GrGLExtensions.h',
40 '<(skia_include_path)/gpu/gl/GrGLFunctions.h', 42 '<(skia_include_path)/gpu/gl/GrGLFunctions.h',
41 '<(skia_include_path)/gpu/gl/GrGLInterface.h', 43 '<(skia_include_path)/gpu/gl/GrGLInterface.h',
42 '<(skia_include_path)/gpu/gl/GrGLSLPrettyPrint.h', 44 '<(skia_include_path)/gpu/gl/GrGLSLPrettyPrint.h',
45 '<(skia_include_path)/gpu/gl/GrGLSLPrettyPrint.h',
bsalomon 2014/12/05 16:30:17 should this be in include?
egdaniel 2014/12/05 19:33:41 line was accidentally duplicated. Removed.
43 46
44 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.cpp', 47 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.cpp',
45 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.h', 48 '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.h',
46 '<(skia_src_path)/gpu/GrAAConvexPathRenderer.cpp', 49 '<(skia_src_path)/gpu/GrAAConvexPathRenderer.cpp',
47 '<(skia_src_path)/gpu/GrAAConvexPathRenderer.h', 50 '<(skia_src_path)/gpu/GrAAConvexPathRenderer.h',
48 '<(skia_src_path)/gpu/GrAADistanceFieldPathRenderer.cpp', 51 '<(skia_src_path)/gpu/GrAADistanceFieldPathRenderer.cpp',
49 '<(skia_src_path)/gpu/GrAADistanceFieldPathRenderer.h', 52 '<(skia_src_path)/gpu/GrAADistanceFieldPathRenderer.h',
50 '<(skia_src_path)/gpu/GrAARectRenderer.cpp', 53 '<(skia_src_path)/gpu/GrAARectRenderer.cpp',
51 '<(skia_src_path)/gpu/GrAARectRenderer.h', 54 '<(skia_src_path)/gpu/GrAARectRenderer.h',
52 '<(skia_src_path)/gpu/GrAddPathRenderers_default.cpp', 55 '<(skia_src_path)/gpu/GrAddPathRenderers_default.cpp',
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 ], 362 ],
360 'skgpu_null_gl_sources': [ 363 'skgpu_null_gl_sources': [
361 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 364 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
362 365
363 # Sk files 366 # Sk files
364 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 367 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
365 '<(skia_src_path)/gpu/gl/SkNullGLContext.h', 368 '<(skia_src_path)/gpu/gl/SkNullGLContext.h',
366 ], 369 ],
367 }, 370 },
368 } 371 }
OLDNEW
« no previous file with comments | « gyp/gpu.gyp ('k') | include/gpu/effects/GrPorterDuffXferProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698