blob: 7080ebbea27ad078014baf55a632d5b6b05cd9e8 [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',
tomhudson@google.com40725562012-02-10 21:35:06 +0000105
epoger@google.comae85aea2011-05-31 13:50:51 +0000106 '../src/gpu/GrPrintf_skia.cpp',
107 '../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',
bsalomon@google.come2953132011-10-13 13:33:08 +0000115
djsollen@google.com58629292011-11-03 13:08:29 +0000116 '../src/gpu/android/SkNativeGLContext_android.cpp',
117
bsalomon@google.com373a6632011-10-19 20:43:20 +0000118 '../src/gpu/mac/SkNativeGLContext_mac.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000119
bsalomon@google.com373a6632011-10-19 20:43:20 +0000120 '../src/gpu/win/SkNativeGLContext_win.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000121
bsalomon@google.com373a6632011-10-19 20:43:20 +0000122 '../src/gpu/unix/SkNativeGLContext_unix.cpp',
bsalomon@google.come2953132011-10-13 13:33:08 +0000123
bsalomon@google.com373a6632011-10-19 20:43:20 +0000124 '../src/gpu/mesa/SkMesaGLContext.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000125 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000126 'conditions': [
127 [ 'not skia_mesa', {
128 'sources!': [
129 '../src/gpu/mesa/SkMesaGLContext.cpp',
130 ],
131 }],
132 [ 'skia_mesa and skia_os == "mac"', {
133 'include_dirs': [
134 '$(SDKROOT)/usr/X11/include/',
135 ],
136 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000137 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000138 },
139 {
140 'target_name': 'gr',
141 'type': 'static_library',
142 'include_dirs': [
epoger@google.comae85aea2011-05-31 13:50:51 +0000143 '../include/core',
144 '../include/config',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000145 '../include/gpu',
bsalomon@google.com150d2842012-01-12 20:19:56 +0000146 '../src/core', # SkRasterClip.h
epoger@google.comae85aea2011-05-31 13:50:51 +0000147 ],
148 'dependencies': [
149 'libtess.gyp:libtess',
150 ],
151 'sources': [
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000152 '../include/gpu/GrClip.h',
153 '../include/gpu/GrClipIterator.h',
154 '../include/gpu/GrColor.h',
155 '../include/gpu/GrConfig.h',
156 '../include/gpu/GrContext.h',
157 '../include/gpu/GrFontScaler.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000158 '../include/gpu/GrGlyph.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000159 '../include/gpu/GrInstanceCounter.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000160 '../include/gpu/GrKey.h',
161 '../include/gpu/GrMatrix.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000162 '../include/gpu/GrNoncopyable.h',
163 '../include/gpu/GrPaint.h',
164 '../include/gpu/GrPath.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000165 '../include/gpu/GrPoint.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000166 '../include/gpu/GrRect.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000167 '../include/gpu/GrRefCnt.h',
168 '../include/gpu/GrRenderTarget.h',
169 '../include/gpu/GrResource.h',
170 '../include/gpu/GrSamplerState.h',
171 '../include/gpu/GrScalar.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000172 '../include/gpu/GrTextContext.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000173 '../include/gpu/GrTexture.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000174 '../include/gpu/GrTypes.h',
175 '../include/gpu/GrUserConfig.h',
epoger@google.comae85aea2011-05-31 13:50:51 +0000176
tomhudson@google.com6bf38b52012-02-14 15:11:59 +0000177 '../include/gpu/gl/GrGLConfig.h',
178 '../include/gpu/gl/GrGLConfig_chrome.h',
179 '../include/gpu/gl/GrGLDefines.h',
180 '../include/gpu/gl/GrGLInterface.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000181
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000182 '../src/gpu/GrAAHairLinePathRenderer.cpp',
183 '../src/gpu/GrAAHairLinePathRenderer.h',
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +0000184 '../src/gpu/GrAAConvexPathRenderer.cpp',
185 '../src/gpu/GrAAConvexPathRenderer.h',
186 '../src/gpu/GrAddPathRenderers_default.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000187 '../src/gpu/GrAllocator.h',
188 '../src/gpu/GrAllocPool.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000189 '../src/gpu/GrAllocPool.cpp',
190 '../src/gpu/GrAtlas.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000191 '../src/gpu/GrAtlas.h',
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000192 '../src/gpu/GrBatchedTextContext.cpp',
193 '../src/gpu/GrBatchedTextContext.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000194 '../src/gpu/GrBinHashKey.h',
195 '../src/gpu/GrBufferAllocPool.cpp',
196 '../src/gpu/GrBufferAllocPool.h',
197 '../src/gpu/GrClip.cpp',
198 '../src/gpu/GrContext.cpp',
199 '../src/gpu/GrDefaultPathRenderer.cpp',
200 '../src/gpu/GrDefaultPathRenderer.h',
bsalomon@google.comf4a9c822012-03-16 14:02:46 +0000201 '../src/gpu/GrDefaultTextContext.cpp',
202 '../src/gpu/GrDefaultTextContext.h',
tomhudson@google.com93813632011-10-27 20:21:16 +0000203 '../src/gpu/GrDrawState.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000204 '../src/gpu/GrDrawTarget.cpp',
205 '../src/gpu/GrDrawTarget.h',
206 '../src/gpu/GrGeometryBuffer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000207 '../src/gpu/GrGpu.cpp',
208 '../src/gpu/GrGpu.h',
209 '../src/gpu/GrGpuFactory.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000210 '../src/gpu/GrGpuVertex.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000211 '../src/gpu/GrIndexBuffer.h',
212 '../src/gpu/GrInOrderDrawBuffer.cpp',
213 '../src/gpu/GrInOrderDrawBuffer.h',
214 '../src/gpu/GrMatrix.cpp',
215 '../src/gpu/GrMemory.cpp',
216 '../src/gpu/GrPathRendererChain.cpp',
217 '../src/gpu/GrPathRendererChain.h',
218 '../src/gpu/GrPathRenderer.cpp',
219 '../src/gpu/GrPathRenderer.h',
220 '../src/gpu/GrPathUtils.cpp',
221 '../src/gpu/GrPathUtils.h',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000222 '../src/gpu/GrPlotMgr.h',
223 '../src/gpu/GrRandom.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000224 '../src/gpu/GrRectanizer.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000225 '../src/gpu/GrRectanizer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000226 '../src/gpu/GrRedBlackTree.h',
227 '../src/gpu/GrRenderTarget.cpp',
228 '../src/gpu/GrResource.cpp',
229 '../src/gpu/GrResourceCache.cpp',
230 '../src/gpu/GrResourceCache.h',
231 '../src/gpu/GrStencil.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000232 '../src/gpu/GrStencil.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000233 '../src/gpu/GrStencilBuffer.cpp',
234 '../src/gpu/GrStencilBuffer.h',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000235 '../src/gpu/GrStringBuilder.h',
236 '../src/gpu/GrTBSearch.h',
237 '../src/gpu/GrTDArray.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000238 '../src/gpu/GrTesselatedPathRenderer.cpp',
239 '../src/gpu/GrTesselatedPathRenderer.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000240 '../src/gpu/GrTextStrike.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000241 '../src/gpu/GrTextStrike.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000242 '../src/gpu/GrTextStrike_impl.h',
243 '../src/gpu/GrTexture.cpp',
bsalomon@google.comffa11bb2011-10-20 13:43:13 +0000244 '../src/gpu/GrTHashCache.h',
245 '../src/gpu/GrTLList.h',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000246 '../src/gpu/GrVertexBuffer.h',
247 '../src/gpu/gr_unittests.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000248
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000249 '../src/gpu/gl/GrGLCaps.cpp',
250 '../src/gpu/gl/GrGLCaps.h',
tomhudson@google.com40725562012-02-10 21:35:06 +0000251 '../src/gpu/gl/GrGLContextInfo.cpp',
252 '../src/gpu/gl/GrGLContextInfo.h',
253 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
254 '../src/gpu/gl/GrGLCreateNullInterface.cpp',
255 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
256 '../src/gpu/gl/GrGLDefaultInterface_native.cpp',
257 '../src/gpu/gl/GrGLIndexBuffer.cpp',
258 '../src/gpu/gl/GrGLIndexBuffer.h',
259 '../src/gpu/gl/GrGLInterface.cpp',
260 '../src/gpu/gl/GrGLIRect.h',
261 '../src/gpu/gl/GrGLProgram.cpp',
262 '../src/gpu/gl/GrGLProgram.h',
263 '../src/gpu/gl/GrGLRenderTarget.cpp',
264 '../src/gpu/gl/GrGLRenderTarget.h',
265 '../src/gpu/gl/GrGLShaderVar.h',
266 '../src/gpu/gl/GrGLSL.cpp',
267 '../src/gpu/gl/GrGLSL.h',
268 '../src/gpu/gl/GrGLStencilBuffer.cpp',
269 '../src/gpu/gl/GrGLStencilBuffer.h',
270 '../src/gpu/gl/GrGLTexture.cpp',
271 '../src/gpu/gl/GrGLTexture.h',
272 '../src/gpu/gl/GrGLUtil.cpp',
273 '../src/gpu/gl/GrGLVertexBuffer.cpp',
274 '../src/gpu/gl/GrGLVertexBuffer.h',
275 '../src/gpu/gl/GrGpuGL.cpp',
276 '../src/gpu/gl/GrGpuGL.h',
277 '../src/gpu/gl/GrGpuGLShaders.cpp',
278 '../src/gpu/gl/GrGpuGLShaders.h',
epoger@google.comae85aea2011-05-31 13:50:51 +0000279
bsalomon@google.com373a6632011-10-19 20:43:20 +0000280 '../src/gpu/mac/GrGLCreateNativeInterface_mac.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000281
bsalomon@google.com373a6632011-10-19 20:43:20 +0000282 '../src/gpu/win/GrGLCreateNativeInterface_win.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000283
bsalomon@google.com373a6632011-10-19 20:43:20 +0000284 '../src/gpu/unix/GrGLCreateNativeInterface_unix.cpp',
285
djsollen@google.com58629292011-11-03 13:08:29 +0000286 '../src/gpu/android/GrGLCreateNativeInterface_android.cpp',
287
bsalomon@google.com373a6632011-10-19 20:43:20 +0000288 '../src/gpu/mesa/GrGLCreateMesaInterface.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000289 ],
290 'defines': [
291 'GR_IMPLEMENTATION=1',
292 ],
293 'conditions': [
epoger@google.com8846cb22011-07-01 20:20:07 +0000294 [ 'skia_os == "linux"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000295 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000296 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
297 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000298 ],
299 'link_settings': {
300 'libraries': [
301 '-lGL',
302 '-lX11',
303 ],
304 },
305 }],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000306 [ 'skia_mesa and skia_os == "linux"', {
307 'link_settings': {
308 'libraries': [
309 '-lOSMesa',
310 ],
311 },
312 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000313 [ 'skia_os == "mac"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000314 'link_settings': {
315 'libraries': [
316 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
317 ],
318 },
319 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000320 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
321 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000322 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000323 }],
324 [ 'skia_mesa and skia_os == "mac"', {
325 'link_settings': {
326 'libraries': [
327 '$(SDKROOT)/usr/X11/lib/libOSMesa.dylib',
328 ],
329 },
330 'include_dirs': [
331 '$(SDKROOT)/usr/X11/include/',
332 ],
333 }],
334 [ 'not skia_mesa', {
335 'sources!': [
336 '../src/gpu/mesa/GrGLCreateMesaInterface.cpp',
337 ],
338 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000339 [ 'skia_os == "win"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000340 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000341 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
342 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000343 ],
344 }],
djsollen@google.com58629292011-11-03 13:08:29 +0000345 [ 'skia_os == "android"', {
346 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000347 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
348 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +0000349 ],
350 'link_settings': {
351 'libraries': [
352 '-lGLESv2',
353 '-lEGL',
djsollen@google.com58629292011-11-03 13:08:29 +0000354 ],
355 },
356 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000357 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000358 },
359 ],
360}
361
362# Local Variables:
363# tab-width:2
364# indent-tabs-mode:nil
365# End:
366# vim: set expandtab tabstop=2 shiftwidth=2: