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