epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 1 | { |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 2 | '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.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 85 | 'targets': [ |
| 86 | { |
| 87 | 'target_name': 'skgr', |
| 88 | 'type': 'static_library', |
| 89 | 'include_dirs': [ |
bungeman@google.com | 5a64e58 | 2012-03-29 14:51:56 +0000 | [diff] [blame] | 90 | '../include/config', |
| 91 | '../include/core', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 92 | '../src/core', |
| 93 | '../include/gpu', |
bsalomon@google.com | 9c1f1ac | 2012-05-07 17:09:37 +0000 | [diff] [blame] | 94 | '../src/gpu', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 95 | ], |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 96 | 'dependencies': [ |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 97 | 'angle.gyp:*', |
| 98 | ], |
| 99 | 'export_dependent_settings': [ |
| 100 | 'angle.gyp:*', |
| 101 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 102 | 'sources': [ |
| 103 | '../include/gpu/SkGpuCanvas.h', |
| 104 | '../include/gpu/SkGpuDevice.h', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 105 | '../include/gpu/SkGr.h', |
robertphillips@google.com | 41efe04 | 2012-06-29 20:55:14 +0000 | [diff] [blame] | 106 | '../include/gpu/SkGrPixelRef.h', |
robertphillips@google.com | e9c0469 | 2012-06-29 00:30:13 +0000 | [diff] [blame] | 107 | '../include/gpu/SkGrTexturePixelRef.h', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 108 | |
tomhudson@google.com | 6bf38b5 | 2012-02-14 15:11:59 +0000 | [diff] [blame] | 109 | '../include/gpu/gl/SkGLContext.h', |
| 110 | '../include/gpu/gl/SkMesaGLContext.h', |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 111 | '../include/gpu/gl/SkANGLEGLContext.h', |
tomhudson@google.com | 6bf38b5 | 2012-02-14 15:11:59 +0000 | [diff] [blame] | 112 | '../include/gpu/gl/SkNativeGLContext.h', |
| 113 | '../include/gpu/gl/SkNullGLContext.h', |
robertphillips@google.com | 0da3719 | 2012-03-19 14:42:13 +0000 | [diff] [blame] | 114 | '../include/gpu/gl/SkDebugGLContext.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 115 | |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 116 | '../src/gpu/SkGpuCanvas.cpp', |
| 117 | '../src/gpu/SkGpuDevice.cpp', |
| 118 | '../src/gpu/SkGr.cpp', |
| 119 | '../src/gpu/SkGrFontScaler.cpp', |
robertphillips@google.com | 41efe04 | 2012-06-29 20:55:14 +0000 | [diff] [blame] | 120 | '../src/gpu/SkGrPixelRef.cpp', |
robertphillips@google.com | e9c0469 | 2012-06-29 00:30:13 +0000 | [diff] [blame] | 121 | '../src/gpu/SkGrTexturePixelRef.cpp', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 122 | |
| 123 | '../src/gpu/gl/SkGLContext.cpp', |
| 124 | '../src/gpu/gl/SkNullGLContext.cpp', |
robertphillips@google.com | d91f370 | 2012-03-28 18:22:01 +0000 | [diff] [blame] | 125 | |
| 126 | '../src/gpu/gl/debug/SkDebugGLContext.cpp', |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 127 | |
robertphillips@google.com | 78ff6b4 | 2012-03-28 19:37:51 +0000 | [diff] [blame] | 128 | '../src/gpu/gl/mac/SkNativeGLContext_mac.cpp', |
| 129 | |
| 130 | '../src/gpu/gl/win/SkNativeGLContext_win.cpp', |
| 131 | |
| 132 | '../src/gpu/gl/unix/SkNativeGLContext_unix.cpp', |
| 133 | |
| 134 | '../src/gpu/gl/mesa/SkMesaGLContext.cpp', |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 135 | '../src/gpu/gl/angle/SkANGLEGLContext.cpp', |
| 136 | '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp', |
robertphillips@google.com | 78ff6b4 | 2012-03-28 19:37:51 +0000 | [diff] [blame] | 137 | |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 138 | '../src/gpu/android/SkNativeGLContext_android.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 139 | ], |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 140 | 'conditions': [ |
| 141 | [ 'not skia_mesa', { |
| 142 | 'sources!': [ |
robertphillips@google.com | 78ff6b4 | 2012-03-28 19:37:51 +0000 | [diff] [blame] | 143 | '../src/gpu/gl/mesa/SkMesaGLContext.cpp', |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 144 | ], |
| 145 | }], |
| 146 | [ 'skia_mesa and skia_os == "mac"', { |
| 147 | 'include_dirs': [ |
| 148 | '$(SDKROOT)/usr/X11/include/', |
| 149 | ], |
| 150 | }], |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 151 | [ 'not skia_angle', { |
| 152 | 'sources!': [ |
| 153 | '../include/gpu/gl/SkANGLEGLContext.h', |
| 154 | '../src/gpu/gl/angle/SkANGLEGLContext.cpp', |
| 155 | '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp', |
| 156 | ], |
| 157 | }], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 158 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 159 | }, |
| 160 | { |
| 161 | 'target_name': 'gr', |
| 162 | 'type': 'static_library', |
| 163 | 'include_dirs': [ |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 164 | '../include/core', |
| 165 | '../include/config', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 166 | '../include/gpu', |
bsalomon@google.com | 150d284 | 2012-01-12 20:19:56 +0000 | [diff] [blame] | 167 | '../src/core', # SkRasterClip.h |
tomhudson@google.com | d8f856c | 2012-05-10 12:13:36 +0000 | [diff] [blame] | 168 | '../src/gpu' |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 169 | ], |
| 170 | 'dependencies': [ |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 171 | 'angle.gyp:*', |
| 172 | ], |
| 173 | 'export_dependent_settings': [ |
| 174 | 'angle.gyp:*', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 175 | ], |
| 176 | 'sources': [ |
robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 177 | '../include/gpu/GrAARectRenderer.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 178 | '../include/gpu/GrClip.h', |
| 179 | '../include/gpu/GrClipIterator.h', |
| 180 | '../include/gpu/GrColor.h', |
| 181 | '../include/gpu/GrConfig.h', |
| 182 | '../include/gpu/GrContext.h', |
bsalomon@google.com | 7361f54 | 2012-04-19 19:15:35 +0000 | [diff] [blame] | 183 | '../include/gpu/GrContextFactory.h', |
tomhudson@google.com | 07eecdc | 2012-04-20 18:35:38 +0000 | [diff] [blame] | 184 | '../include/gpu/GrCustomStage.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 185 | '../include/gpu/GrFontScaler.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 186 | '../include/gpu/GrGlyph.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 187 | '../include/gpu/GrInstanceCounter.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 188 | '../include/gpu/GrKey.h', |
| 189 | '../include/gpu/GrMatrix.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 190 | '../include/gpu/GrNoncopyable.h', |
| 191 | '../include/gpu/GrPaint.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 192 | '../include/gpu/GrPoint.h', |
bsalomon@google.com | ae4f96a | 2012-05-18 19:54:48 +0000 | [diff] [blame] | 193 | '../include/gpu/GrProgramStageFactory.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 194 | '../include/gpu/GrRect.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 195 | '../include/gpu/GrRefCnt.h', |
| 196 | '../include/gpu/GrRenderTarget.h', |
| 197 | '../include/gpu/GrResource.h', |
| 198 | '../include/gpu/GrSamplerState.h', |
| 199 | '../include/gpu/GrScalar.h', |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 200 | '../include/gpu/GrSurface.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 201 | '../include/gpu/GrTextContext.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 202 | '../include/gpu/GrTexture.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 203 | '../include/gpu/GrTypes.h', |
| 204 | '../include/gpu/GrUserConfig.h', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 205 | |
tomhudson@google.com | 6bf38b5 | 2012-02-14 15:11:59 +0000 | [diff] [blame] | 206 | '../include/gpu/gl/GrGLConfig.h', |
| 207 | '../include/gpu/gl/GrGLConfig_chrome.h', |
bsalomon@google.com | 637d5e9 | 2012-05-07 21:33:56 +0000 | [diff] [blame] | 208 | '../include/gpu/gl/GrGLFunctions.h', |
tomhudson@google.com | 6bf38b5 | 2012-02-14 15:11:59 +0000 | [diff] [blame] | 209 | '../include/gpu/gl/GrGLInterface.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 210 | |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 211 | '../src/gpu/GrAAHairLinePathRenderer.cpp', |
| 212 | '../src/gpu/GrAAHairLinePathRenderer.h', |
bsalomon@google.com | 69cc6ad | 2012-01-17 14:25:10 +0000 | [diff] [blame] | 213 | '../src/gpu/GrAAConvexPathRenderer.cpp', |
| 214 | '../src/gpu/GrAAConvexPathRenderer.h', |
robertphillips@google.com | f6747b0 | 2012-06-12 00:32:28 +0000 | [diff] [blame] | 215 | '../src/gpu/GrAARectRenderer.cpp', |
bsalomon@google.com | 69cc6ad | 2012-01-17 14:25:10 +0000 | [diff] [blame] | 216 | '../src/gpu/GrAddPathRenderers_default.cpp', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 217 | '../src/gpu/GrAllocator.h', |
| 218 | '../src/gpu/GrAllocPool.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 219 | '../src/gpu/GrAllocPool.cpp', |
| 220 | '../src/gpu/GrAtlas.cpp', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 221 | '../src/gpu/GrAtlas.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 222 | '../src/gpu/GrBinHashKey.h', |
| 223 | '../src/gpu/GrBufferAllocPool.cpp', |
| 224 | '../src/gpu/GrBufferAllocPool.h', |
| 225 | '../src/gpu/GrClip.cpp', |
| 226 | '../src/gpu/GrContext.cpp', |
tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 227 | '../src/gpu/GrCustomStage.cpp', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 228 | '../src/gpu/GrDefaultPathRenderer.cpp', |
| 229 | '../src/gpu/GrDefaultPathRenderer.h', |
tomhudson@google.com | 9381363 | 2011-10-27 20:21:16 +0000 | [diff] [blame] | 230 | '../src/gpu/GrDrawState.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 231 | '../src/gpu/GrDrawTarget.cpp', |
| 232 | '../src/gpu/GrDrawTarget.h', |
| 233 | '../src/gpu/GrGeometryBuffer.h', |
robertphillips@google.com | 1e945b7 | 2012-04-16 18:03:03 +0000 | [diff] [blame] | 234 | '../src/gpu/GrClipMaskManager.h', |
| 235 | '../src/gpu/GrClipMaskManager.cpp', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 236 | '../src/gpu/GrGpu.cpp', |
| 237 | '../src/gpu/GrGpu.h', |
| 238 | '../src/gpu/GrGpuFactory.cpp', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 239 | '../src/gpu/GrGpuVertex.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 240 | '../src/gpu/GrIndexBuffer.h', |
| 241 | '../src/gpu/GrInOrderDrawBuffer.cpp', |
| 242 | '../src/gpu/GrInOrderDrawBuffer.h', |
| 243 | '../src/gpu/GrMatrix.cpp', |
| 244 | '../src/gpu/GrMemory.cpp', |
bsalomon@google.com | 4da34e3 | 2012-06-19 15:40:27 +0000 | [diff] [blame] | 245 | '../src/gpu/GrMemoryPool.cpp', |
| 246 | '../src/gpu/GrMemoryPool.h', |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 247 | '../src/gpu/GrPath.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 248 | '../src/gpu/GrPathRendererChain.cpp', |
| 249 | '../src/gpu/GrPathRendererChain.h', |
| 250 | '../src/gpu/GrPathRenderer.cpp', |
| 251 | '../src/gpu/GrPathRenderer.h', |
| 252 | '../src/gpu/GrPathUtils.cpp', |
| 253 | '../src/gpu/GrPathUtils.h', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 254 | '../src/gpu/GrPlotMgr.h', |
| 255 | '../src/gpu/GrRandom.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 256 | '../src/gpu/GrRectanizer.cpp', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 257 | '../src/gpu/GrRectanizer.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 258 | '../src/gpu/GrRedBlackTree.h', |
| 259 | '../src/gpu/GrRenderTarget.cpp', |
| 260 | '../src/gpu/GrResource.cpp', |
| 261 | '../src/gpu/GrResourceCache.cpp', |
| 262 | '../src/gpu/GrResourceCache.h', |
| 263 | '../src/gpu/GrStencil.cpp', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 264 | '../src/gpu/GrStencil.h', |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 265 | '../src/gpu/GrStencilAndCoverPathRenderer.cpp', |
| 266 | '../src/gpu/GrStencilAndCoverPathRenderer.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 267 | '../src/gpu/GrStencilBuffer.cpp', |
| 268 | '../src/gpu/GrStencilBuffer.h', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 269 | '../src/gpu/GrStringBuilder.h', |
| 270 | '../src/gpu/GrTBSearch.h', |
| 271 | '../src/gpu/GrTDArray.h', |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 272 | '../src/gpu/GrSWMaskHelper.cpp', |
| 273 | '../src/gpu/GrSWMaskHelper.h', |
robertphillips@google.com | 7c2578d | 2012-05-01 12:19:34 +0000 | [diff] [blame] | 274 | '../src/gpu/GrSoftwarePathRenderer.cpp', |
| 275 | '../src/gpu/GrSoftwarePathRenderer.h', |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 276 | '../src/gpu/GrSurface.cpp', |
bsalomon@google.com | 5e24129 | 2012-06-22 12:34:22 +0000 | [diff] [blame] | 277 | '../src/gpu/GrTemplates.h', |
tomhudson@google.com | 375ff85 | 2012-06-29 18:37:57 +0000 | [diff] [blame] | 278 | '../src/gpu/GrTextContext.cpp', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 279 | '../src/gpu/GrTextStrike.cpp', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 280 | '../src/gpu/GrTextStrike.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 281 | '../src/gpu/GrTextStrike_impl.h', |
| 282 | '../src/gpu/GrTexture.cpp', |
bsalomon@google.com | ffa11bb | 2011-10-20 13:43:13 +0000 | [diff] [blame] | 283 | '../src/gpu/GrTHashCache.h', |
| 284 | '../src/gpu/GrTLList.h', |
bsalomon@google.com | d38f137 | 2011-10-12 19:53:16 +0000 | [diff] [blame] | 285 | '../src/gpu/GrVertexBuffer.h', |
| 286 | '../src/gpu/gr_unittests.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 287 | |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 288 | '../src/gpu/effects/Gr1DKernelEffect.h', |
tomhudson@google.com | d8f856c | 2012-05-10 12:13:36 +0000 | [diff] [blame] | 289 | '../src/gpu/effects/GrConvolutionEffect.cpp', |
| 290 | '../src/gpu/effects/GrConvolutionEffect.h', |
tomhudson@google.com | 7fab52d | 2012-05-31 19:40:13 +0000 | [diff] [blame] | 291 | '../src/gpu/effects/GrGradientEffects.cpp', |
| 292 | '../src/gpu/effects/GrGradientEffects.h', |
bsalomon@google.com | b505a12 | 2012-05-31 18:40:36 +0000 | [diff] [blame] | 293 | '../src/gpu/effects/GrMorphologyEffect.cpp', |
| 294 | '../src/gpu/effects/GrMorphologyEffect.h', |
tomhudson@google.com | d8f856c | 2012-05-10 12:13:36 +0000 | [diff] [blame] | 295 | |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 296 | '../src/gpu/gl/GrGLCaps.cpp', |
| 297 | '../src/gpu/gl/GrGLCaps.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 298 | '../src/gpu/gl/GrGLContextInfo.cpp', |
| 299 | '../src/gpu/gl/GrGLContextInfo.h', |
| 300 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
| 301 | '../src/gpu/gl/GrGLCreateNullInterface.cpp', |
| 302 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 303 | '../src/gpu/gl/GrGLDefaultInterface_native.cpp', |
bsalomon@google.com | 91bcc94 | 2012-05-07 17:28:41 +0000 | [diff] [blame] | 304 | '../src/gpu/gl/GrGLDefines.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 305 | '../src/gpu/gl/GrGLIndexBuffer.cpp', |
| 306 | '../src/gpu/gl/GrGLIndexBuffer.h', |
| 307 | '../src/gpu/gl/GrGLInterface.cpp', |
| 308 | '../src/gpu/gl/GrGLIRect.h', |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 309 | '../src/gpu/gl/GrGLPath.cpp', |
| 310 | '../src/gpu/gl/GrGLPath.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 311 | '../src/gpu/gl/GrGLProgram.cpp', |
| 312 | '../src/gpu/gl/GrGLProgram.h', |
tomhudson@google.com | 168e634 | 2012-04-18 17:49:20 +0000 | [diff] [blame] | 313 | '../src/gpu/gl/GrGLProgramStage.cpp', |
| 314 | '../src/gpu/gl/GrGLProgramStage.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 315 | '../src/gpu/gl/GrGLRenderTarget.cpp', |
| 316 | '../src/gpu/gl/GrGLRenderTarget.h', |
tomhudson@google.com | f9ad886 | 2012-05-11 20:38:48 +0000 | [diff] [blame] | 317 | '../src/gpu/gl/GrGLShaderBuilder.cpp', |
| 318 | '../src/gpu/gl/GrGLShaderBuilder.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 319 | '../src/gpu/gl/GrGLShaderVar.h', |
| 320 | '../src/gpu/gl/GrGLSL.cpp', |
| 321 | '../src/gpu/gl/GrGLSL.h', |
| 322 | '../src/gpu/gl/GrGLStencilBuffer.cpp', |
| 323 | '../src/gpu/gl/GrGLStencilBuffer.h', |
| 324 | '../src/gpu/gl/GrGLTexture.cpp', |
| 325 | '../src/gpu/gl/GrGLTexture.h', |
| 326 | '../src/gpu/gl/GrGLUtil.cpp', |
bsalomon@google.com | 9c1f1ac | 2012-05-07 17:09:37 +0000 | [diff] [blame] | 327 | '../src/gpu/gl/GrGLUtil.h', |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 328 | '../src/gpu/gl/GrGLVertexBuffer.cpp', |
| 329 | '../src/gpu/gl/GrGLVertexBuffer.h', |
| 330 | '../src/gpu/gl/GrGpuGL.cpp', |
| 331 | '../src/gpu/gl/GrGpuGL.h', |
bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 332 | '../src/gpu/gl/GrGpuGL_program.cpp', |
bsalomon@google.com | 7e5c624 | 2012-06-01 19:28:26 +0000 | [diff] [blame] | 333 | '../src/gpu/gl/GrGpuGL_unittest.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 334 | |
robertphillips@google.com | d91f370 | 2012-03-28 18:22:01 +0000 | [diff] [blame] | 335 | '../src/gpu/gl/debug/GrGLCreateDebugInterface.cpp', |
robertphillips@google.com | dd743fe | 2012-04-05 14:40:53 +0000 | [diff] [blame] | 336 | '../src/gpu/gl/debug/GrFakeRefObj.h', |
robertphillips@google.com | dd743fe | 2012-04-05 14:40:53 +0000 | [diff] [blame] | 337 | '../src/gpu/gl/debug/GrBufferObj.h', |
| 338 | '../src/gpu/gl/debug/GrBufferObj.cpp', |
| 339 | '../src/gpu/gl/debug/GrFBBindableObj.h', |
robertphillips@google.com | dd743fe | 2012-04-05 14:40:53 +0000 | [diff] [blame] | 340 | '../src/gpu/gl/debug/GrRenderBufferObj.h', |
robertphillips@google.com | dd743fe | 2012-04-05 14:40:53 +0000 | [diff] [blame] | 341 | '../src/gpu/gl/debug/GrTextureObj.h', |
| 342 | '../src/gpu/gl/debug/GrTextureObj.cpp', |
| 343 | '../src/gpu/gl/debug/GrTextureUnitObj.h', |
| 344 | '../src/gpu/gl/debug/GrTextureUnitObj.cpp', |
| 345 | '../src/gpu/gl/debug/GrFrameBufferObj.h', |
| 346 | '../src/gpu/gl/debug/GrFrameBufferObj.cpp', |
| 347 | '../src/gpu/gl/debug/GrShaderObj.h', |
| 348 | '../src/gpu/gl/debug/GrShaderObj.cpp', |
| 349 | '../src/gpu/gl/debug/GrProgramObj.h', |
| 350 | '../src/gpu/gl/debug/GrProgramObj.cpp', |
| 351 | '../src/gpu/gl/debug/GrDebugGL.h', |
| 352 | '../src/gpu/gl/debug/GrDebugGL.cpp', |
robertphillips@google.com | d91f370 | 2012-03-28 18:22:01 +0000 | [diff] [blame] | 353 | |
robertphillips@google.com | 78ff6b4 | 2012-03-28 19:37:51 +0000 | [diff] [blame] | 354 | '../src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 355 | |
robertphillips@google.com | 78ff6b4 | 2012-03-28 19:37:51 +0000 | [diff] [blame] | 356 | '../src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 357 | |
robertphillips@google.com | 78ff6b4 | 2012-03-28 19:37:51 +0000 | [diff] [blame] | 358 | '../src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp', |
| 359 | |
| 360 | '../src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp', |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 361 | '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp', |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 362 | |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 363 | '../src/gpu/android/GrGLCreateNativeInterface_android.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 364 | ], |
| 365 | 'defines': [ |
| 366 | 'GR_IMPLEMENTATION=1', |
| 367 | ], |
| 368 | 'conditions': [ |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 369 | [ 'skia_nv_path_rendering', { |
| 370 | 'defines': [ |
| 371 | 'GR_GL_USE_NV_PATH_RENDERING=1', |
| 372 | ], |
| 373 | }], |
epoger@google.com | 8846cb2 | 2011-07-01 20:20:07 +0000 | [diff] [blame] | 374 | [ 'skia_os == "linux"', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 375 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 376 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 377 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 378 | ], |
| 379 | 'link_settings': { |
| 380 | 'libraries': [ |
| 381 | '-lGL', |
| 382 | '-lX11', |
| 383 | ], |
| 384 | }, |
| 385 | }], |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 386 | [ 'skia_mesa and skia_os == "linux"', { |
| 387 | 'link_settings': { |
| 388 | 'libraries': [ |
| 389 | '-lOSMesa', |
| 390 | ], |
| 391 | }, |
| 392 | }], |
epoger@google.com | 8846cb2 | 2011-07-01 20:20:07 +0000 | [diff] [blame] | 393 | [ 'skia_os == "mac"', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 394 | 'link_settings': { |
| 395 | 'libraries': [ |
| 396 | '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 397 | ], |
| 398 | }, |
| 399 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 400 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 401 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 402 | ], |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 403 | }], |
| 404 | [ 'skia_mesa and skia_os == "mac"', { |
| 405 | 'link_settings': { |
| 406 | 'libraries': [ |
| 407 | '$(SDKROOT)/usr/X11/lib/libOSMesa.dylib', |
| 408 | ], |
| 409 | }, |
| 410 | 'include_dirs': [ |
| 411 | '$(SDKROOT)/usr/X11/include/', |
| 412 | ], |
| 413 | }], |
| 414 | [ 'not skia_mesa', { |
| 415 | 'sources!': [ |
robertphillips@google.com | 78ff6b4 | 2012-03-28 19:37:51 +0000 | [diff] [blame] | 416 | '../src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp', |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 417 | ], |
| 418 | }], |
epoger@google.com | 8846cb2 | 2011-07-01 20:20:07 +0000 | [diff] [blame] | 419 | [ 'skia_os == "win"', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 420 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 421 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 422 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 423 | ], |
| 424 | }], |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 425 | [ 'not skia_angle', { |
| 426 | 'sources!': [ |
| 427 | '../include/gpu/gl/SkANGLEGLContext.h', |
| 428 | |
| 429 | '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp', |
| 430 | '../src/gpu/gl/angle/SkANGLEGLContext.cpp', |
| 431 | ], |
| 432 | }], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 433 | [ 'skia_os == "android"', { |
| 434 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 435 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 436 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 437 | ], |
| 438 | 'link_settings': { |
| 439 | 'libraries': [ |
| 440 | '-lGLESv2', |
| 441 | '-lEGL', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 442 | ], |
| 443 | }, |
| 444 | }], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 445 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 446 | }, |
| 447 | ], |
| 448 | } |
| 449 | |
| 450 | # Local Variables: |
| 451 | # tab-width:2 |
| 452 | # indent-tabs-mode:nil |
| 453 | # End: |
| 454 | # vim: set expandtab tabstop=2 shiftwidth=2: |