blob: c9526ef8a1d39751dbeeb8b149f3a00189f1b16f [file] [log] [blame]
epoger@google.comae85aea2011-05-31 13:50:51 +00001{
bsalomon@google.come2953132011-10-13 13:33:08 +00002 'target_defaults': {
3 'conditions': [
4 ['skia_os != "win"', {
5 'sources/': [ ['exclude', '_win.(h|cpp)$'],
6 ],
7 }],
8 ['skia_os != "mac"', {
9 'sources/': [ ['exclude', '_mac.(h|cpp)$'],
10 ],
11 }],
12 ['skia_os != "linux"', {
13 'sources/': [ ['exclude', '_unix.(h|cpp)$'],
14 ],
15 }],
16 ['skia_os != "ios"', {
17 'sources/': [ ['exclude', '_iOS.(h|cpp)$'],
18 ],
19 }],
20 ['skia_os != "android"', {
21 'sources/': [ ['exclude', '_android.(h|cpp)$'],
22 ],
23 }],
24 [ 'skia_os == "android"', {
25 'defines': [
26 'GR_ANDROID_BUILD=1',
27 ],
28 }],
29 [ 'skia_os == "mac"', {
30 'defines': [
31 'GR_MAC_BUILD=1',
32 ],
33 }],
34 [ 'skia_os == "linux"', {
35 'defines': [
36 'GR_LINUX_BUILD=1',
37 ],
38 }],
39 [ 'skia_os == "ios"', {
40 'defines': [
41 'GR_IOS_BUILD=1',
42 ],
43 }],
44 [ 'skia_os == "win"', {
45 'defines': [
46 'GR_WIN32_BUILD=1',
bsalomon@google.come2953132011-10-13 13:33:08 +000047 ],
48 }],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000049 # nullify the targets in this gyp file if skia_gpu is 0
50 [ 'skia_gpu == 0', {
51 'sources/': [
52 ['exclude', '.*'],
53 ],
54 'defines/': [
55 ['exclude', '.*'],
56 ],
57 'include_dirs/': [
58 ['exclude', '.*'],
59 ],
60 'link_settings': {
61 'libraries/': [
62 ['exclude', '.*'],
63 ],
64 },
65 'direct_dependent_settings': {
66 'defines/': [
67 ['exclude', '.*'],
68 ],
69 'include_dirs/': [
70 ['exclude', '.*'],
71 ],
72 },
73 }],
bsalomon@google.come2953132011-10-13 13:33:08 +000074 ],
75 'direct_dependent_settings': {
76 'conditions': [
77 [ 'skia_os == "android"', {
78 'defines': [
79 'GR_ANDROID_BUILD=1',
80 ],
81 }],
82 [ 'skia_os == "mac"', {
83 'defines': [
84 'GR_MAC_BUILD=1',
85 ],
86 }],
87 [ 'skia_os == "linux"', {
88 'defines': [
89 'GR_LINUX_BUILD=1',
90 ],
91 }],
92 [ 'skia_os == "ios"', {
93 'defines': [
94 'GR_IOS_BUILD=1',
95 ],
96 }],
97 [ 'skia_os == "win"', {
98 'defines': [
99 'GR_WIN32_BUILD=1',
100 'GR_GL_FUNCTION_TYPE=__stdcall',
101 ],
102 }],
103 ],
104 'include_dirs': [
105 '../include/gpu',
106 ],
107 },
108 },
epoger@google.comae85aea2011-05-31 13:50:51 +0000109 'targets': [
110 {
111 'target_name': 'skgr',
112 'type': 'static_library',
113 'include_dirs': [
bungeman@google.com5a64e582012-03-29 14:51:56 +0000114 '../include/config',
115 '../include/core',
epoger@google.comae85aea2011-05-31 13:50:51 +0000116 '../src/core',
117 '../include/gpu',
bsalomon@google.com9c1f1ac2012-05-07 17:09:37 +0000118 '../src/gpu',
epoger@google.comae85aea2011-05-31 13:50:51 +0000119 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +0000120 'dependencies': [
robertphillips@google.com021bce92012-04-02 20:42:26 +0000121 'angle.gyp:*',
122 ],
123 'export_dependent_settings': [
124 'angle.gyp:*',
125 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000126 'sources': [
127 '../include/gpu/SkGpuCanvas.h',
128 '../include/gpu/SkGpuDevice.h',
epoger@google.comae85aea2011-05-31 13:50:51 +0000129 '../include/gpu/SkGr.h',
robertphillips@google.com41efe042012-06-29 20:55:14 +0000130 '../include/gpu/SkGrPixelRef.h',
robertphillips@google.come9c04692012-06-29 00:30:13 +0000131 '../include/gpu/SkGrTexturePixelRef.h',
epoger@google.comae85aea2011-05-31 13:50:51 +0000132
tomhudson@google.com6bf38b52012-02-14 15:11:59 +0000133 '../include/gpu/gl/SkGLContext.h',
134 '../include/gpu/gl/SkMesaGLContext.h',
robertphillips@google.com021bce92012-04-02 20:42:26 +0000135 '../include/gpu/gl/SkANGLEGLContext.h',
tomhudson@google.com6bf38b52012-02-14 15:11:59 +0000136 '../include/gpu/gl/SkNativeGLContext.h',
137 '../include/gpu/gl/SkNullGLContext.h',
robertphillips@google.com0da37192012-03-19 14:42:13 +0000138 '../include/gpu/gl/SkDebugGLContext.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000139
epoger@google.comae85aea2011-05-31 13:50:51 +0000140 '../src/gpu/SkGpuCanvas.cpp',
141 '../src/gpu/SkGpuDevice.cpp',
142 '../src/gpu/SkGr.cpp',
143 '../src/gpu/SkGrFontScaler.cpp',
robertphillips@google.com41efe042012-06-29 20:55:14 +0000144 '../src/gpu/SkGrPixelRef.cpp',
robertphillips@google.come9c04692012-06-29 00:30:13 +0000145 '../src/gpu/SkGrTexturePixelRef.cpp',
tomhudson@google.com40725562012-02-10 21:35:06 +0000146
147 '../src/gpu/gl/SkGLContext.cpp',
148 '../src/gpu/gl/SkNullGLContext.cpp',
robertphillips@google.comd91f3702012-03-28 18:22:01 +0000149
150 '../src/gpu/gl/debug/SkDebugGLContext.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000151
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000152 '../src/gpu/gl/mac/SkNativeGLContext_mac.cpp',
153
154 '../src/gpu/gl/win/SkNativeGLContext_win.cpp',
155
156 '../src/gpu/gl/unix/SkNativeGLContext_unix.cpp',
157
158 '../src/gpu/gl/mesa/SkMesaGLContext.cpp',
robertphillips@google.com021bce92012-04-02 20:42:26 +0000159 '../src/gpu/gl/angle/SkANGLEGLContext.cpp',
160 '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp',
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000161
djsollen@google.com58629292011-11-03 13:08:29 +0000162 '../src/gpu/android/SkNativeGLContext_android.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000163 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000164 'conditions': [
165 [ 'not skia_mesa', {
166 'sources!': [
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000167 '../src/gpu/gl/mesa/SkMesaGLContext.cpp',
bsalomon@google.com373a6632011-10-19 20:43:20 +0000168 ],
169 }],
170 [ 'skia_mesa and skia_os == "mac"', {
171 'include_dirs': [
172 '$(SDKROOT)/usr/X11/include/',
173 ],
174 }],
robertphillips@google.com021bce92012-04-02 20:42:26 +0000175 [ 'not skia_angle', {
176 'sources!': [
177 '../include/gpu/gl/SkANGLEGLContext.h',
178 '../src/gpu/gl/angle/SkANGLEGLContext.cpp',
179 '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp',
180 ],
181 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000182 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000183 },
184 {
185 'target_name': 'gr',
186 'type': 'static_library',
187 'include_dirs': [
epoger@google.comae85aea2011-05-31 13:50:51 +0000188 '../include/core',
189 '../include/config',
senorblanco@chromium.org894790d2012-07-11 16:01:22 +0000190 '../include/effects', # This is only to get Sk effects into
191 # GrGpuGL_unittest.cpp, not for general
192 # consumption in src/gpu.
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000193 '../include/gpu',
bsalomon@google.com150d2842012-01-12 20:19:56 +0000194 '../src/core', # SkRasterClip.h
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000195 '../src/gpu'
epoger@google.comae85aea2011-05-31 13:50:51 +0000196 ],
197 'dependencies': [
robertphillips@google.com021bce92012-04-02 20:42:26 +0000198 'angle.gyp:*',
199 ],
200 'export_dependent_settings': [
201 'angle.gyp:*',
epoger@google.comae85aea2011-05-31 13:50:51 +0000202 ],
203 'sources': [
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000204 '../include/gpu/GrAARectRenderer.h',
robertphillips@google.coma2d71482012-08-01 20:08:47 +0000205 '../include/gpu/GrClipData.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000206 '../include/gpu/GrColor.h',
207 '../include/gpu/GrConfig.h',
208 '../include/gpu/GrContext.h',
bsalomon@google.com7361f542012-04-19 19:15:35 +0000209 '../include/gpu/GrContextFactory.h',
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000210 '../include/gpu/GrCustomStage.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000211 '../include/gpu/GrFontScaler.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000212 '../include/gpu/GrGlyph.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000213 '../include/gpu/GrInstanceCounter.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000214 '../include/gpu/GrKey.h',
215 '../include/gpu/GrMatrix.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000216 '../include/gpu/GrNoncopyable.h',
217 '../include/gpu/GrPaint.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000218 '../include/gpu/GrPoint.h',
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000219 '../include/gpu/GrProgramStageFactory.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000220 '../include/gpu/GrRect.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000221 '../include/gpu/GrRefCnt.h',
222 '../include/gpu/GrRenderTarget.h',
223 '../include/gpu/GrResource.h',
224 '../include/gpu/GrSamplerState.h',
225 '../include/gpu/GrScalar.h',
robertphillips@google.com7d501ab2012-06-21 21:09:06 +0000226 '../include/gpu/GrSurface.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000227 '../include/gpu/GrTextContext.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000228 '../include/gpu/GrTexture.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000229 '../include/gpu/GrTypes.h',
230 '../include/gpu/GrUserConfig.h',
epoger@google.comae85aea2011-05-31 13:50:51 +0000231
tomhudson@google.com6bf38b52012-02-14 15:11:59 +0000232 '../include/gpu/gl/GrGLConfig.h',
233 '../include/gpu/gl/GrGLConfig_chrome.h',
bsalomon@google.com637d5e92012-05-07 21:33:56 +0000234 '../include/gpu/gl/GrGLFunctions.h',
tomhudson@google.com6bf38b52012-02-14 15:11:59 +0000235 '../include/gpu/gl/GrGLInterface.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000236
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000237 '../src/gpu/GrAAHairLinePathRenderer.cpp',
238 '../src/gpu/GrAAHairLinePathRenderer.h',
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +0000239 '../src/gpu/GrAAConvexPathRenderer.cpp',
240 '../src/gpu/GrAAConvexPathRenderer.h',
robertphillips@google.comf6747b02012-06-12 00:32:28 +0000241 '../src/gpu/GrAARectRenderer.cpp',
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +0000242 '../src/gpu/GrAddPathRenderers_default.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000243 '../src/gpu/GrAllocator.h',
244 '../src/gpu/GrAllocPool.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000245 '../src/gpu/GrAllocPool.cpp',
246 '../src/gpu/GrAtlas.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000247 '../src/gpu/GrAtlas.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000248 '../src/gpu/GrBinHashKey.h',
249 '../src/gpu/GrBufferAllocPool.cpp',
250 '../src/gpu/GrBufferAllocPool.h',
robertphillips@google.coma2d71482012-08-01 20:08:47 +0000251 '../src/gpu/GrClipData.cpp',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000252 '../src/gpu/GrContext.cpp',
tomhudson@google.com168e6342012-04-18 17:49:20 +0000253 '../src/gpu/GrCustomStage.cpp',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000254 '../src/gpu/GrDefaultPathRenderer.cpp',
255 '../src/gpu/GrDefaultPathRenderer.h',
tomhudson@google.com93813632011-10-27 20:21:16 +0000256 '../src/gpu/GrDrawState.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000257 '../src/gpu/GrDrawTarget.cpp',
258 '../src/gpu/GrDrawTarget.h',
259 '../src/gpu/GrGeometryBuffer.h',
robertphillips@google.com1e945b72012-04-16 18:03:03 +0000260 '../src/gpu/GrClipMaskManager.h',
261 '../src/gpu/GrClipMaskManager.cpp',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000262 '../src/gpu/GrGpu.cpp',
263 '../src/gpu/GrGpu.h',
264 '../src/gpu/GrGpuFactory.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000265 '../src/gpu/GrGpuVertex.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000266 '../src/gpu/GrIndexBuffer.h',
267 '../src/gpu/GrInOrderDrawBuffer.cpp',
268 '../src/gpu/GrInOrderDrawBuffer.h',
269 '../src/gpu/GrMatrix.cpp',
270 '../src/gpu/GrMemory.cpp',
bsalomon@google.com4da34e32012-06-19 15:40:27 +0000271 '../src/gpu/GrMemoryPool.cpp',
272 '../src/gpu/GrMemoryPool.h',
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000273 '../src/gpu/GrPath.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000274 '../src/gpu/GrPathRendererChain.cpp',
275 '../src/gpu/GrPathRendererChain.h',
276 '../src/gpu/GrPathRenderer.cpp',
277 '../src/gpu/GrPathRenderer.h',
278 '../src/gpu/GrPathUtils.cpp',
279 '../src/gpu/GrPathUtils.h',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000280 '../src/gpu/GrPlotMgr.h',
281 '../src/gpu/GrRandom.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000282 '../src/gpu/GrRectanizer.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000283 '../src/gpu/GrRectanizer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000284 '../src/gpu/GrRedBlackTree.h',
285 '../src/gpu/GrRenderTarget.cpp',
286 '../src/gpu/GrResource.cpp',
287 '../src/gpu/GrResourceCache.cpp',
288 '../src/gpu/GrResourceCache.h',
289 '../src/gpu/GrStencil.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000290 '../src/gpu/GrStencil.h',
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000291 '../src/gpu/GrStencilAndCoverPathRenderer.cpp',
292 '../src/gpu/GrStencilAndCoverPathRenderer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000293 '../src/gpu/GrStencilBuffer.cpp',
294 '../src/gpu/GrStencilBuffer.h',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000295 '../src/gpu/GrTBSearch.h',
296 '../src/gpu/GrTDArray.h',
robertphillips@google.com58b20212012-06-27 20:44:52 +0000297 '../src/gpu/GrSWMaskHelper.cpp',
298 '../src/gpu/GrSWMaskHelper.h',
robertphillips@google.com7c2578d2012-05-01 12:19:34 +0000299 '../src/gpu/GrSoftwarePathRenderer.cpp',
300 '../src/gpu/GrSoftwarePathRenderer.h',
robertphillips@google.com7d501ab2012-06-21 21:09:06 +0000301 '../src/gpu/GrSurface.cpp',
bsalomon@google.com5e241292012-06-22 12:34:22 +0000302 '../src/gpu/GrTemplates.h',
tomhudson@google.com375ff852012-06-29 18:37:57 +0000303 '../src/gpu/GrTextContext.cpp',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000304 '../src/gpu/GrTextStrike.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000305 '../src/gpu/GrTextStrike.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000306 '../src/gpu/GrTextStrike_impl.h',
307 '../src/gpu/GrTexture.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000308 '../src/gpu/GrTHashCache.h',
309 '../src/gpu/GrTLList.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000310 '../src/gpu/GrVertexBuffer.h',
311 '../src/gpu/gr_unittests.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000312
bsalomon@google.comb505a122012-05-31 18:40:36 +0000313 '../src/gpu/effects/Gr1DKernelEffect.h',
twiz@google.com58071162012-07-18 21:41:50 +0000314 '../src/gpu/effects/GrColorTableEffect.cpp',
315 '../src/gpu/effects/GrColorTableEffect.h',
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000316 '../src/gpu/effects/GrConvolutionEffect.cpp',
317 '../src/gpu/effects/GrConvolutionEffect.h',
bsalomon@google.comb505a122012-05-31 18:40:36 +0000318 '../src/gpu/effects/GrMorphologyEffect.cpp',
319 '../src/gpu/effects/GrMorphologyEffect.h',
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000320 '../src/gpu/effects/GrSingleTextureEffect.cpp',
321 '../src/gpu/effects/GrSingleTextureEffect.h',
tomhudson@google.com2f68e762012-07-17 18:43:21 +0000322 '../src/gpu/effects/GrTextureDomainEffect.cpp',
323 '../src/gpu/effects/GrTextureDomainEffect.h',
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000324
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000325 '../src/gpu/gl/GrGLCaps.cpp',
326 '../src/gpu/gl/GrGLCaps.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000327 '../src/gpu/gl/GrGLContextInfo.cpp',
328 '../src/gpu/gl/GrGLContextInfo.h',
329 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
330 '../src/gpu/gl/GrGLCreateNullInterface.cpp',
331 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
332 '../src/gpu/gl/GrGLDefaultInterface_native.cpp',
bsalomon@google.com91bcc942012-05-07 17:28:41 +0000333 '../src/gpu/gl/GrGLDefines.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000334 '../src/gpu/gl/GrGLIndexBuffer.cpp',
335 '../src/gpu/gl/GrGLIndexBuffer.h',
336 '../src/gpu/gl/GrGLInterface.cpp',
337 '../src/gpu/gl/GrGLIRect.h',
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000338 '../src/gpu/gl/GrGLPath.cpp',
339 '../src/gpu/gl/GrGLPath.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000340 '../src/gpu/gl/GrGLProgram.cpp',
341 '../src/gpu/gl/GrGLProgram.h',
tomhudson@google.com168e6342012-04-18 17:49:20 +0000342 '../src/gpu/gl/GrGLProgramStage.cpp',
343 '../src/gpu/gl/GrGLProgramStage.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000344 '../src/gpu/gl/GrGLRenderTarget.cpp',
345 '../src/gpu/gl/GrGLRenderTarget.h',
tomhudson@google.comf9ad8862012-05-11 20:38:48 +0000346 '../src/gpu/gl/GrGLShaderBuilder.cpp',
347 '../src/gpu/gl/GrGLShaderBuilder.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000348 '../src/gpu/gl/GrGLShaderVar.h',
349 '../src/gpu/gl/GrGLSL.cpp',
350 '../src/gpu/gl/GrGLSL.h',
351 '../src/gpu/gl/GrGLStencilBuffer.cpp',
352 '../src/gpu/gl/GrGLStencilBuffer.h',
353 '../src/gpu/gl/GrGLTexture.cpp',
354 '../src/gpu/gl/GrGLTexture.h',
355 '../src/gpu/gl/GrGLUtil.cpp',
bsalomon@google.com9c1f1ac2012-05-07 17:09:37 +0000356 '../src/gpu/gl/GrGLUtil.h',
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000357 '../src/gpu/gl/GrGLUniformManager.cpp',
358 '../src/gpu/gl/GrGLUniformManager.h',
359 '../src/gpu/gl/GrGLUniformHandle.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000360 '../src/gpu/gl/GrGLVertexBuffer.cpp',
361 '../src/gpu/gl/GrGLVertexBuffer.h',
362 '../src/gpu/gl/GrGpuGL.cpp',
363 '../src/gpu/gl/GrGpuGL.h',
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000364 '../src/gpu/gl/GrGpuGL_program.cpp',
bsalomon@google.com7e5c6242012-06-01 19:28:26 +0000365 '../src/gpu/gl/GrGpuGL_unittest.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000366
robertphillips@google.comd91f3702012-03-28 18:22:01 +0000367 '../src/gpu/gl/debug/GrGLCreateDebugInterface.cpp',
robertphillips@google.comdd743fe2012-04-05 14:40:53 +0000368 '../src/gpu/gl/debug/GrFakeRefObj.h',
robertphillips@google.comdd743fe2012-04-05 14:40:53 +0000369 '../src/gpu/gl/debug/GrBufferObj.h',
370 '../src/gpu/gl/debug/GrBufferObj.cpp',
371 '../src/gpu/gl/debug/GrFBBindableObj.h',
robertphillips@google.comdd743fe2012-04-05 14:40:53 +0000372 '../src/gpu/gl/debug/GrRenderBufferObj.h',
robertphillips@google.comdd743fe2012-04-05 14:40:53 +0000373 '../src/gpu/gl/debug/GrTextureObj.h',
374 '../src/gpu/gl/debug/GrTextureObj.cpp',
375 '../src/gpu/gl/debug/GrTextureUnitObj.h',
376 '../src/gpu/gl/debug/GrTextureUnitObj.cpp',
377 '../src/gpu/gl/debug/GrFrameBufferObj.h',
378 '../src/gpu/gl/debug/GrFrameBufferObj.cpp',
379 '../src/gpu/gl/debug/GrShaderObj.h',
380 '../src/gpu/gl/debug/GrShaderObj.cpp',
381 '../src/gpu/gl/debug/GrProgramObj.h',
382 '../src/gpu/gl/debug/GrProgramObj.cpp',
383 '../src/gpu/gl/debug/GrDebugGL.h',
384 '../src/gpu/gl/debug/GrDebugGL.cpp',
robertphillips@google.comd91f3702012-03-28 18:22:01 +0000385
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000386 '../src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000387
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000388 '../src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000389
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000390 '../src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp',
391
392 '../src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp',
robertphillips@google.com021bce92012-04-02 20:42:26 +0000393 '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp',
bsalomon@google.com373a6632011-10-19 20:43:20 +0000394
djsollen@google.com58629292011-11-03 13:08:29 +0000395 '../src/gpu/android/GrGLCreateNativeInterface_android.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000396 ],
397 'defines': [
398 'GR_IMPLEMENTATION=1',
399 ],
400 'conditions': [
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000401 [ 'skia_nv_path_rendering', {
402 'defines': [
403 'GR_GL_USE_NV_PATH_RENDERING=1',
404 ],
405 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000406 [ 'skia_os == "linux"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000407 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000408 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
409 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000410 ],
411 'link_settings': {
412 'libraries': [
413 '-lGL',
414 '-lX11',
415 ],
416 },
417 }],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000418 [ 'skia_mesa and skia_os == "linux"', {
419 'link_settings': {
420 'libraries': [
421 '-lOSMesa',
422 ],
423 },
424 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000425 [ 'skia_os == "mac"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000426 'link_settings': {
427 'libraries': [
428 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
429 ],
430 },
431 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000432 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
433 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000434 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000435 }],
436 [ 'skia_mesa and skia_os == "mac"', {
437 'link_settings': {
438 'libraries': [
439 '$(SDKROOT)/usr/X11/lib/libOSMesa.dylib',
440 ],
441 },
442 'include_dirs': [
443 '$(SDKROOT)/usr/X11/include/',
444 ],
445 }],
446 [ 'not skia_mesa', {
447 'sources!': [
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000448 '../src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp',
bsalomon@google.com373a6632011-10-19 20:43:20 +0000449 ],
450 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000451 [ 'skia_os == "win"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000452 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000453 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
454 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000455 ],
456 }],
robertphillips@google.com021bce92012-04-02 20:42:26 +0000457 [ 'not skia_angle', {
458 'sources!': [
459 '../include/gpu/gl/SkANGLEGLContext.h',
460
461 '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp',
462 '../src/gpu/gl/angle/SkANGLEGLContext.cpp',
463 ],
464 }],
djsollen@google.com58629292011-11-03 13:08:29 +0000465 [ 'skia_os == "android"', {
466 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000467 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
468 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +0000469 ],
470 'link_settings': {
471 'libraries': [
472 '-lGLESv2',
473 '-lEGL',
djsollen@google.com58629292011-11-03 13:08:29 +0000474 ],
475 },
476 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000477 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000478 },
479 ],
480}
481
482# Local Variables:
483# tab-width:2
484# indent-tabs-mode:nil
485# End:
486# vim: set expandtab tabstop=2 shiftwidth=2: