blob: db506d70a46c453307c88617529009971679620b [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',
47 'GR_GL_FUNCTION_TYPE=__stdcall',
48 ],
49 }],
50 ],
51 'direct_dependent_settings': {
52 'conditions': [
53 [ 'skia_os == "android"', {
54 'defines': [
55 'GR_ANDROID_BUILD=1',
56 ],
57 }],
58 [ 'skia_os == "mac"', {
59 'defines': [
60 'GR_MAC_BUILD=1',
61 ],
62 }],
63 [ 'skia_os == "linux"', {
64 'defines': [
65 'GR_LINUX_BUILD=1',
66 ],
67 }],
68 [ 'skia_os == "ios"', {
69 'defines': [
70 'GR_IOS_BUILD=1',
71 ],
72 }],
73 [ 'skia_os == "win"', {
74 'defines': [
75 'GR_WIN32_BUILD=1',
76 'GR_GL_FUNCTION_TYPE=__stdcall',
77 ],
78 }],
79 ],
80 'include_dirs': [
81 '../include/gpu',
82 ],
83 },
84 },
epoger@google.comae85aea2011-05-31 13:50:51 +000085 'targets': [
86 {
87 'target_name': 'skgr',
88 'type': 'static_library',
89 'include_dirs': [
90 '../include/config',
91 '../include/core',
92 '../src/core',
93 '../include/gpu',
epoger@google.comae85aea2011-05-31 13:50:51 +000094 ],
95 'sources': [
96 '../include/gpu/SkGpuCanvas.h',
97 '../include/gpu/SkGpuDevice.h',
epoger@google.comae85aea2011-05-31 13:50:51 +000098 '../include/gpu/SkGr.h',
99 '../include/gpu/SkGrTexturePixelRef.h',
100
tomhudson@google.com6bf38b52012-02-14 15:11:59 +0000101 '../include/gpu/gl/SkGLContext.h',
102 '../include/gpu/gl/SkMesaGLContext.h',
103 '../include/gpu/gl/SkNativeGLContext.h',
104 '../include/gpu/gl/SkNullGLContext.h',
robertphillips@google.com0da37192012-03-19 14:42:13 +0000105 '../include/gpu/gl/SkDebugGLContext.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000106
epoger@google.comae85aea2011-05-31 13:50:51 +0000107 '../src/gpu/SkGpuCanvas.cpp',
108 '../src/gpu/SkGpuDevice.cpp',
109 '../src/gpu/SkGr.cpp',
110 '../src/gpu/SkGrFontScaler.cpp',
111 '../src/gpu/SkGrTexturePixelRef.cpp',
tomhudson@google.com40725562012-02-10 21:35:06 +0000112
113 '../src/gpu/gl/SkGLContext.cpp',
114 '../src/gpu/gl/SkNullGLContext.cpp',
robertphillips@google.com0da37192012-03-19 14:42:13 +0000115 '../src/gpu/gl/SkDebugGLContext.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000116
djsollen@google.com58629292011-11-03 13:08:29 +0000117 '../src/gpu/android/SkNativeGLContext_android.cpp',
118
bsalomon@google.com373a6632011-10-19 20:43:20 +0000119 '../src/gpu/mac/SkNativeGLContext_mac.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000120
bsalomon@google.com373a6632011-10-19 20:43:20 +0000121 '../src/gpu/win/SkNativeGLContext_win.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000122
bsalomon@google.com373a6632011-10-19 20:43:20 +0000123 '../src/gpu/unix/SkNativeGLContext_unix.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000124
bsalomon@google.com373a6632011-10-19 20:43:20 +0000125 '../src/gpu/mesa/SkMesaGLContext.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000126 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000127 'conditions': [
128 [ 'not skia_mesa', {
129 'sources!': [
130 '../src/gpu/mesa/SkMesaGLContext.cpp',
131 ],
132 }],
133 [ 'skia_mesa and skia_os == "mac"', {
134 'include_dirs': [
135 '$(SDKROOT)/usr/X11/include/',
136 ],
137 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000138 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000139 },
140 {
141 'target_name': 'gr',
142 'type': 'static_library',
143 'include_dirs': [
epoger@google.comae85aea2011-05-31 13:50:51 +0000144 '../include/core',
145 '../include/config',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000146 '../include/gpu',
bsalomon@google.com150d2842012-01-12 20:19:56 +0000147 '../src/core', # SkRasterClip.h
epoger@google.comae85aea2011-05-31 13:50:51 +0000148 ],
149 'dependencies': [
150 'libtess.gyp:libtess',
151 ],
152 'sources': [
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000153 '../include/gpu/GrClip.h',
154 '../include/gpu/GrClipIterator.h',
155 '../include/gpu/GrColor.h',
156 '../include/gpu/GrConfig.h',
157 '../include/gpu/GrContext.h',
158 '../include/gpu/GrFontScaler.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000159 '../include/gpu/GrGlyph.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000160 '../include/gpu/GrInstanceCounter.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000161 '../include/gpu/GrKey.h',
162 '../include/gpu/GrMatrix.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000163 '../include/gpu/GrNoncopyable.h',
164 '../include/gpu/GrPaint.h',
165 '../include/gpu/GrPath.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000166 '../include/gpu/GrPoint.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000167 '../include/gpu/GrRect.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000168 '../include/gpu/GrRefCnt.h',
169 '../include/gpu/GrRenderTarget.h',
170 '../include/gpu/GrResource.h',
171 '../include/gpu/GrSamplerState.h',
172 '../include/gpu/GrScalar.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000173 '../include/gpu/GrTextContext.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000174 '../include/gpu/GrTexture.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000175 '../include/gpu/GrTypes.h',
176 '../include/gpu/GrUserConfig.h',
epoger@google.comae85aea2011-05-31 13:50:51 +0000177
tomhudson@google.com6bf38b52012-02-14 15:11:59 +0000178 '../include/gpu/gl/GrGLConfig.h',
179 '../include/gpu/gl/GrGLConfig_chrome.h',
180 '../include/gpu/gl/GrGLDefines.h',
181 '../include/gpu/gl/GrGLInterface.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000182
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000183 '../src/gpu/GrAAHairLinePathRenderer.cpp',
184 '../src/gpu/GrAAHairLinePathRenderer.h',
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +0000185 '../src/gpu/GrAAConvexPathRenderer.cpp',
186 '../src/gpu/GrAAConvexPathRenderer.h',
187 '../src/gpu/GrAddPathRenderers_default.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000188 '../src/gpu/GrAllocator.h',
189 '../src/gpu/GrAllocPool.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000190 '../src/gpu/GrAllocPool.cpp',
191 '../src/gpu/GrAtlas.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000192 '../src/gpu/GrAtlas.h',
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000193 '../src/gpu/GrBatchedTextContext.cpp',
194 '../src/gpu/GrBatchedTextContext.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000195 '../src/gpu/GrBinHashKey.h',
196 '../src/gpu/GrBufferAllocPool.cpp',
197 '../src/gpu/GrBufferAllocPool.h',
198 '../src/gpu/GrClip.cpp',
199 '../src/gpu/GrContext.cpp',
200 '../src/gpu/GrDefaultPathRenderer.cpp',
201 '../src/gpu/GrDefaultPathRenderer.h',
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000202 '../src/gpu/GrDefaultTextContext.cpp',
203 '../src/gpu/GrDefaultTextContext.h',
tomhudson@google.com93813632011-10-27 20:21:16 +0000204 '../src/gpu/GrDrawState.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000205 '../src/gpu/GrDrawTarget.cpp',
206 '../src/gpu/GrDrawTarget.h',
207 '../src/gpu/GrGeometryBuffer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000208 '../src/gpu/GrGpu.cpp',
209 '../src/gpu/GrGpu.h',
210 '../src/gpu/GrGpuFactory.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000211 '../src/gpu/GrGpuVertex.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000212 '../src/gpu/GrIndexBuffer.h',
213 '../src/gpu/GrInOrderDrawBuffer.cpp',
214 '../src/gpu/GrInOrderDrawBuffer.h',
215 '../src/gpu/GrMatrix.cpp',
216 '../src/gpu/GrMemory.cpp',
217 '../src/gpu/GrPathRendererChain.cpp',
218 '../src/gpu/GrPathRendererChain.h',
219 '../src/gpu/GrPathRenderer.cpp',
220 '../src/gpu/GrPathRenderer.h',
221 '../src/gpu/GrPathUtils.cpp',
222 '../src/gpu/GrPathUtils.h',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000223 '../src/gpu/GrPlotMgr.h',
224 '../src/gpu/GrRandom.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000225 '../src/gpu/GrRectanizer.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000226 '../src/gpu/GrRectanizer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000227 '../src/gpu/GrRedBlackTree.h',
228 '../src/gpu/GrRenderTarget.cpp',
229 '../src/gpu/GrResource.cpp',
230 '../src/gpu/GrResourceCache.cpp',
231 '../src/gpu/GrResourceCache.h',
232 '../src/gpu/GrStencil.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000233 '../src/gpu/GrStencil.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000234 '../src/gpu/GrStencilBuffer.cpp',
235 '../src/gpu/GrStencilBuffer.h',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000236 '../src/gpu/GrStringBuilder.h',
237 '../src/gpu/GrTBSearch.h',
238 '../src/gpu/GrTDArray.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000239 '../src/gpu/GrTesselatedPathRenderer.cpp',
240 '../src/gpu/GrTesselatedPathRenderer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000241 '../src/gpu/GrTextStrike.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000242 '../src/gpu/GrTextStrike.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000243 '../src/gpu/GrTextStrike_impl.h',
244 '../src/gpu/GrTexture.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000245 '../src/gpu/GrTHashCache.h',
246 '../src/gpu/GrTLList.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000247 '../src/gpu/GrVertexBuffer.h',
248 '../src/gpu/gr_unittests.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000249
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000250 '../src/gpu/gl/GrGLCaps.cpp',
251 '../src/gpu/gl/GrGLCaps.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000252 '../src/gpu/gl/GrGLContextInfo.cpp',
253 '../src/gpu/gl/GrGLContextInfo.h',
254 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
255 '../src/gpu/gl/GrGLCreateNullInterface.cpp',
robertphillips@google.com0da37192012-03-19 14:42:13 +0000256 '../src/gpu/gl/GrGLCreateDebugInterface.cpp',
tomhudson@google.com40725562012-02-10 21:35:06 +0000257 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
258 '../src/gpu/gl/GrGLDefaultInterface_native.cpp',
259 '../src/gpu/gl/GrGLIndexBuffer.cpp',
260 '../src/gpu/gl/GrGLIndexBuffer.h',
261 '../src/gpu/gl/GrGLInterface.cpp',
262 '../src/gpu/gl/GrGLIRect.h',
263 '../src/gpu/gl/GrGLProgram.cpp',
264 '../src/gpu/gl/GrGLProgram.h',
265 '../src/gpu/gl/GrGLRenderTarget.cpp',
266 '../src/gpu/gl/GrGLRenderTarget.h',
267 '../src/gpu/gl/GrGLShaderVar.h',
268 '../src/gpu/gl/GrGLSL.cpp',
269 '../src/gpu/gl/GrGLSL.h',
270 '../src/gpu/gl/GrGLStencilBuffer.cpp',
271 '../src/gpu/gl/GrGLStencilBuffer.h',
272 '../src/gpu/gl/GrGLTexture.cpp',
273 '../src/gpu/gl/GrGLTexture.h',
274 '../src/gpu/gl/GrGLUtil.cpp',
275 '../src/gpu/gl/GrGLVertexBuffer.cpp',
276 '../src/gpu/gl/GrGLVertexBuffer.h',
277 '../src/gpu/gl/GrGpuGL.cpp',
278 '../src/gpu/gl/GrGpuGL.h',
279 '../src/gpu/gl/GrGpuGLShaders.cpp',
280 '../src/gpu/gl/GrGpuGLShaders.h',
epoger@google.comae85aea2011-05-31 13:50:51 +0000281
bsalomon@google.com373a6632011-10-19 20:43:20 +0000282 '../src/gpu/mac/GrGLCreateNativeInterface_mac.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000283
bsalomon@google.com373a6632011-10-19 20:43:20 +0000284 '../src/gpu/win/GrGLCreateNativeInterface_win.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000285
bsalomon@google.com373a6632011-10-19 20:43:20 +0000286 '../src/gpu/unix/GrGLCreateNativeInterface_unix.cpp',
287
djsollen@google.com58629292011-11-03 13:08:29 +0000288 '../src/gpu/android/GrGLCreateNativeInterface_android.cpp',
289
bsalomon@google.com373a6632011-10-19 20:43:20 +0000290 '../src/gpu/mesa/GrGLCreateMesaInterface.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000291 ],
292 'defines': [
293 'GR_IMPLEMENTATION=1',
294 ],
295 'conditions': [
epoger@google.com8846cb22011-07-01 20:20:07 +0000296 [ 'skia_os == "linux"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000297 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000298 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
299 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000300 ],
301 'link_settings': {
302 'libraries': [
303 '-lGL',
304 '-lX11',
305 ],
306 },
307 }],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000308 [ 'skia_mesa and skia_os == "linux"', {
309 'link_settings': {
310 'libraries': [
311 '-lOSMesa',
312 ],
313 },
314 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000315 [ 'skia_os == "mac"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000316 'link_settings': {
317 'libraries': [
318 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
319 ],
320 },
321 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000322 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
323 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000324 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000325 }],
326 [ 'skia_mesa and skia_os == "mac"', {
327 'link_settings': {
328 'libraries': [
329 '$(SDKROOT)/usr/X11/lib/libOSMesa.dylib',
330 ],
331 },
332 'include_dirs': [
333 '$(SDKROOT)/usr/X11/include/',
334 ],
335 }],
336 [ 'not skia_mesa', {
337 'sources!': [
338 '../src/gpu/mesa/GrGLCreateMesaInterface.cpp',
339 ],
340 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000341 [ 'skia_os == "win"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000342 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000343 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
344 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000345 ],
346 }],
djsollen@google.com58629292011-11-03 13:08:29 +0000347 [ 'skia_os == "android"', {
348 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000349 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
350 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +0000351 ],
352 'link_settings': {
353 'libraries': [
354 '-lGLESv2',
355 '-lEGL',
djsollen@google.com58629292011-11-03 13:08:29 +0000356 ],
357 },
358 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000359 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000360 },
361 ],
362}
363
364# Local Variables:
365# tab-width:2
366# indent-tabs-mode:nil
367# End:
368# vim: set expandtab tabstop=2 shiftwidth=2: