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

Side by Side Diff: gyp/gpu.gypi

Issue 537773004: Add GrProgramElement base class for GrEffect with deferred exec ref. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address comments Created 6 years, 3 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/GrEffect.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': [
11 '<(skia_include_path)/gpu/GrBackendEffectFactory.h', 11 '<(skia_include_path)/gpu/GrBackendEffectFactory.h',
12 '<(skia_include_path)/gpu/GrBinHashKey.h', 12 '<(skia_include_path)/gpu/GrBinHashKey.h',
13 '<(skia_include_path)/gpu/GrClipData.h', 13 '<(skia_include_path)/gpu/GrClipData.h',
14 '<(skia_include_path)/gpu/GrColor.h', 14 '<(skia_include_path)/gpu/GrColor.h',
15 '<(skia_include_path)/gpu/GrConfig.h', 15 '<(skia_include_path)/gpu/GrConfig.h',
16 '<(skia_include_path)/gpu/GrContext.h', 16 '<(skia_include_path)/gpu/GrContext.h',
17 '<(skia_include_path)/gpu/GrContextFactory.h', 17 '<(skia_include_path)/gpu/GrContextFactory.h',
18 '<(skia_include_path)/gpu/GrCoordTransform.h', 18 '<(skia_include_path)/gpu/GrCoordTransform.h',
19 '<(skia_include_path)/gpu/GrEffect.h', 19 '<(skia_include_path)/gpu/GrEffect.h',
20 '<(skia_include_path)/gpu/GrEffectStage.h', 20 '<(skia_include_path)/gpu/GrEffectStage.h',
21 '<(skia_include_path)/gpu/GrEffectUnitTest.h', 21 '<(skia_include_path)/gpu/GrEffectUnitTest.h',
22 '<(skia_include_path)/gpu/GrFontScaler.h', 22 '<(skia_include_path)/gpu/GrFontScaler.h',
23 '<(skia_include_path)/gpu/GrGlyph.h', 23 '<(skia_include_path)/gpu/GrGlyph.h',
24 '<(skia_include_path)/gpu/GrGpuResource.h', 24 '<(skia_include_path)/gpu/GrGpuResource.h',
25 '<(skia_include_path)/gpu/GrPaint.h', 25 '<(skia_include_path)/gpu/GrPaint.h',
26 '<(skia_include_path)/gpu/GrPathRendererChain.h', 26 '<(skia_include_path)/gpu/GrPathRendererChain.h',
27 '<(skia_include_path)/gpu/GrProgramElement.h',
28 '<(skia_include_path)/gpu/GrProgramElementRef.h',
29 '<(skia_include_path)/gpu/GrProgramResource.h',
27 '<(skia_include_path)/gpu/GrRect.h', 30 '<(skia_include_path)/gpu/GrRect.h',
28 '<(skia_include_path)/gpu/GrRenderTarget.h', 31 '<(skia_include_path)/gpu/GrRenderTarget.h',
29 '<(skia_include_path)/gpu/GrResourceKey.h', 32 '<(skia_include_path)/gpu/GrResourceKey.h',
30 '<(skia_include_path)/gpu/GrSurface.h', 33 '<(skia_include_path)/gpu/GrSurface.h',
31 '<(skia_include_path)/gpu/GrTBackendEffectFactory.h', 34 '<(skia_include_path)/gpu/GrTBackendEffectFactory.h',
32 '<(skia_include_path)/gpu/GrTexture.h', 35 '<(skia_include_path)/gpu/GrTexture.h',
33 '<(skia_include_path)/gpu/GrTextureAccess.h', 36 '<(skia_include_path)/gpu/GrTextureAccess.h',
34 '<(skia_include_path)/gpu/GrTypes.h', 37 '<(skia_include_path)/gpu/GrTypes.h',
35 '<(skia_include_path)/gpu/GrUserConfig.h', 38 '<(skia_include_path)/gpu/GrUserConfig.h',
36 39
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 '<(skia_src_path)/gpu/GrPaint.cpp', 100 '<(skia_src_path)/gpu/GrPaint.cpp',
98 '<(skia_src_path)/gpu/GrPath.cpp', 101 '<(skia_src_path)/gpu/GrPath.cpp',
99 '<(skia_src_path)/gpu/GrPath.h', 102 '<(skia_src_path)/gpu/GrPath.h',
100 '<(skia_src_path)/gpu/GrPathRange.h', 103 '<(skia_src_path)/gpu/GrPathRange.h',
101 '<(skia_src_path)/gpu/GrPathRendererChain.cpp', 104 '<(skia_src_path)/gpu/GrPathRendererChain.cpp',
102 '<(skia_src_path)/gpu/GrPathRenderer.cpp', 105 '<(skia_src_path)/gpu/GrPathRenderer.cpp',
103 '<(skia_src_path)/gpu/GrPathRenderer.h', 106 '<(skia_src_path)/gpu/GrPathRenderer.h',
104 '<(skia_src_path)/gpu/GrPathRendering.h', 107 '<(skia_src_path)/gpu/GrPathRendering.h',
105 '<(skia_src_path)/gpu/GrPathUtils.cpp', 108 '<(skia_src_path)/gpu/GrPathUtils.cpp',
106 '<(skia_src_path)/gpu/GrPathUtils.h', 109 '<(skia_src_path)/gpu/GrPathUtils.h',
110 '<(skia_src_path)/gpu/GrProgramElement.cpp',
111 '<(skia_src_path)/gpu/GrProgramResource.cpp',
107 '<(skia_src_path)/gpu/GrPictureUtils.h', 112 '<(skia_src_path)/gpu/GrPictureUtils.h',
108 '<(skia_src_path)/gpu/GrPictureUtils.cpp', 113 '<(skia_src_path)/gpu/GrPictureUtils.cpp',
109 '<(skia_src_path)/gpu/GrPlotMgr.h', 114 '<(skia_src_path)/gpu/GrPlotMgr.h',
110 '<(skia_src_path)/gpu/GrRecordReplaceDraw.cpp', 115 '<(skia_src_path)/gpu/GrRecordReplaceDraw.cpp',
111 '<(skia_src_path)/gpu/GrRecordReplaceDraw.h', 116 '<(skia_src_path)/gpu/GrRecordReplaceDraw.h',
112 '<(skia_src_path)/gpu/GrRectanizer.h', 117 '<(skia_src_path)/gpu/GrRectanizer.h',
113 '<(skia_src_path)/gpu/GrRectanizer_pow2.cpp', 118 '<(skia_src_path)/gpu/GrRectanizer_pow2.cpp',
114 '<(skia_src_path)/gpu/GrRectanizer_pow2.h', 119 '<(skia_src_path)/gpu/GrRectanizer_pow2.h',
115 '<(skia_src_path)/gpu/GrRectanizer_skyline.cpp', 120 '<(skia_src_path)/gpu/GrRectanizer_skyline.cpp',
116 '<(skia_src_path)/gpu/GrRectanizer_skyline.h', 121 '<(skia_src_path)/gpu/GrRectanizer_skyline.h',
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 ], 341 ],
337 'skgpu_null_gl_sources': [ 342 'skgpu_null_gl_sources': [
338 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', 343 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp',
339 344
340 # Sk files 345 # Sk files
341 '<(skia_include_path)/gpu/gl/SkNullGLContext.h', 346 '<(skia_include_path)/gpu/gl/SkNullGLContext.h',
342 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', 347 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp',
343 ], 348 ],
344 }, 349 },
345 } 350 }
OLDNEW
« no previous file with comments | « no previous file | include/gpu/GrEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698