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"', { |
bsalomon@google.com | 2b64f84 | 2012-10-02 15:25:12 +0000 | [diff] [blame] | 9 | 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 10 | ], |
| 11 | }], |
borenet@google.com | 05d550e | 2013-06-11 15:52:19 +0000 | [diff] [blame] | 12 | ['skia_os != "linux" and skia_os != "chromeos"', { |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 13 | 'sources/': [ ['exclude', '_unix.(h|cpp)$'], |
| 14 | ], |
| 15 | }], |
| 16 | ['skia_os != "ios"', { |
bsalomon@google.com | 2b64f84 | 2012-10-02 15:25:12 +0000 | [diff] [blame] | 17 | 'sources/': [ ['exclude', '_iOS.(h|cpp|m|mm)$'], |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 18 | ], |
| 19 | }], |
| 20 | ['skia_os != "android"', { |
| 21 | 'sources/': [ ['exclude', '_android.(h|cpp)$'], |
| 22 | ], |
| 23 | }], |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 24 | ['skia_os != "nacl"', { |
| 25 | 'sources/': [ ['exclude', '_nacl.(h|cpp)$'], |
| 26 | ], |
| 27 | }], |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 28 | # nullify the targets in this gyp file if skia_gpu is 0 |
| 29 | [ 'skia_gpu == 0', { |
| 30 | 'sources/': [ |
| 31 | ['exclude', '.*'], |
| 32 | ], |
| 33 | 'defines/': [ |
| 34 | ['exclude', '.*'], |
| 35 | ], |
| 36 | 'include_dirs/': [ |
| 37 | ['exclude', '.*'], |
| 38 | ], |
| 39 | 'link_settings': { |
| 40 | 'libraries/': [ |
| 41 | ['exclude', '.*'], |
| 42 | ], |
| 43 | }, |
| 44 | 'direct_dependent_settings': { |
| 45 | 'defines/': [ |
| 46 | ['exclude', '.*'], |
| 47 | ], |
| 48 | 'include_dirs/': [ |
| 49 | ['exclude', '.*'], |
| 50 | ], |
| 51 | }, |
| 52 | }], |
robertphillips@google.com | 4e5559a | 2013-10-30 17:04:16 +0000 | [diff] [blame] | 53 | [ 'skia_resource_cache_mb_limit != 0', { |
djsollen@google.com | 42041e6 | 2012-10-29 19:24:45 +0000 | [diff] [blame] | 54 | 'defines': [ |
robertphillips@google.com | 4e5559a | 2013-10-30 17:04:16 +0000 | [diff] [blame] | 55 | 'GR_DEFAULT_RESOURCE_CACHE_MB_LIMIT=<(skia_resource_cache_mb_limit)', |
| 56 | ], |
| 57 | }], |
| 58 | [ 'skia_resource_cache_count_limit != 0', { |
| 59 | 'defines': [ |
| 60 | 'GR_DEFAULT_RESOURCE_CACHE_COUNT_LIMIT=<(skia_resource_cache_count_limit)', |
djsollen@google.com | 42041e6 | 2012-10-29 19:24:45 +0000 | [diff] [blame] | 61 | ], |
| 62 | }], |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 63 | ], |
| 64 | 'direct_dependent_settings': { |
| 65 | 'conditions': [ |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 66 | [ 'skia_os == "win"', { |
| 67 | 'defines': [ |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 68 | 'GR_GL_FUNCTION_TYPE=__stdcall', |
| 69 | ], |
| 70 | }], |
| 71 | ], |
| 72 | 'include_dirs': [ |
| 73 | '../include/gpu', |
| 74 | ], |
| 75 | }, |
| 76 | }, |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 77 | 'targets': [ |
| 78 | { |
robertphillips@google.com | e63296e | 2013-06-18 14:43:53 +0000 | [diff] [blame] | 79 | 'target_name': 'skgpu', |
| 80 | 'product_name': 'skia_skgpu', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 81 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 82 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 83 | 'dependencies': [ |
| 84 | 'angle.gyp:*', |
| 85 | 'core.gyp:*', |
jvanverth@google.com | d830d13 | 2013-11-11 20:54:09 +0000 | [diff] [blame] | 86 | 'edtaa.gyp:*', |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 87 | 'utils.gyp:*', |
| 88 | ], |
bsalomon@google.com | 2080635 | 2012-08-23 12:55:01 +0000 | [diff] [blame] | 89 | 'includes': [ |
| 90 | 'gpu.gypi', |
| 91 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 92 | 'include_dirs': [ |
bungeman@google.com | 899f1d8 | 2013-07-20 00:24:35 +0000 | [diff] [blame] | 93 | '../include/gpu', |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 94 | '../src/core', |
bsalomon@google.com | 9c1f1ac | 2012-05-07 17:09:37 +0000 | [diff] [blame] | 95 | '../src/gpu', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 96 | ], |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 97 | 'export_dependent_settings': [ |
| 98 | 'angle.gyp:*', |
| 99 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 100 | 'sources': [ |
robertphillips@google.com | e63296e | 2013-06-18 14:43:53 +0000 | [diff] [blame] | 101 | '<@(skgpu_sources)', |
| 102 | '<@(skgpu_native_gl_sources)', |
| 103 | '<@(skgpu_angle_gl_sources)', |
| 104 | '<@(skgpu_mesa_gl_sources)', |
| 105 | '<@(skgpu_debug_gl_sources)', |
| 106 | '<@(skgpu_null_gl_sources)', |
bsalomon@google.com | 202a51b | 2012-09-04 14:37:12 +0000 | [diff] [blame] | 107 | 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the build). |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 108 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 109 | 'conditions': [ |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 110 | [ 'skia_nv_path_rendering', { |
| 111 | 'defines': [ |
| 112 | 'GR_GL_USE_NV_PATH_RENDERING=1', |
| 113 | ], |
| 114 | }], |
sugoi@google.com | e3453cb | 2013-01-07 14:26:40 +0000 | [diff] [blame] | 115 | [ 'skia_stroke_path_rendering', { |
| 116 | 'sources': [ |
| 117 | '../experimental/StrokePathRenderer/GrStrokePathRenderer.h', |
| 118 | '../experimental/StrokePathRenderer/GrStrokePathRenderer.cpp', |
| 119 | ], |
| 120 | 'defines': [ |
| 121 | 'GR_STROKE_PATH_RENDERING=1', |
| 122 | ], |
| 123 | }], |
jvanverth@google.com | 74dda90 | 2013-01-09 21:04:52 +0000 | [diff] [blame] | 124 | [ 'skia_android_path_rendering', { |
| 125 | 'sources': [ |
| 126 | '../experimental/AndroidPathRenderer/GrAndroidPathRenderer.cpp', |
| 127 | '../experimental/AndroidPathRenderer/GrAndroidPathRenderer.h', |
| 128 | '../experimental/AndroidPathRenderer/AndroidPathRenderer.cpp', |
| 129 | '../experimental/AndroidPathRenderer/AndroidPathRenderer.h', |
| 130 | '../experimental/AndroidPathRenderer/Vertex.h', |
| 131 | ], |
| 132 | 'defines': [ |
| 133 | 'GR_ANDROID_PATH_RENDERING=1', |
| 134 | ], |
| 135 | }], |
robertphillips@google.com | 42cc237 | 2013-12-10 15:19:32 +0000 | [diff] [blame] | 136 | [ 'skia_chrome_utils', { |
| 137 | 'sources': [ |
| 138 | '../experimental/ChromeUtils/SkBorder.cpp', |
| 139 | '../experimental/ChromeUtils/SkBorder.h', |
| 140 | ], |
| 141 | 'defines': [ |
| 142 | 'GR_CHROME_UTILS=1', |
| 143 | ], |
| 144 | }], |
jvanverth@google.com | d830d13 | 2013-11-11 20:54:09 +0000 | [diff] [blame] | 145 | [ 'skia_distancefield_fonts', { |
| 146 | 'sources': [ |
| 147 | '<(skia_include_path)/gpu/GrDistanceFieldTextContext.h', |
| 148 | '<(skia_src_path)/gpu/GrDistanceFieldTextContext.cpp', |
| 149 | '<(skia_src_path)/gpu/effects/GrDistanceFieldTextureEffect.cpp', |
| 150 | '<(skia_src_path)/gpu/effects/GrDistanceFieldTextureEffect.h', |
| 151 | ], |
| 152 | 'defines': [ |
| 153 | 'GR_DISTANCEFIELD_FONTS=1', |
| 154 | ], |
| 155 | }], |
borenet@google.com | 05d550e | 2013-06-11 15:52:19 +0000 | [diff] [blame] | 156 | [ 'skia_os == "linux" or skia_os == "chromeos"', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 157 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 158 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 159 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 160 | ], |
| 161 | 'link_settings': { |
| 162 | 'libraries': [ |
| 163 | '-lGL', |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 164 | '-lGLU', |
senorblanco@chromium.org | 0d92353 | 2012-11-12 20:55:02 +0000 | [diff] [blame] | 165 | '-lX11', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 166 | ], |
| 167 | }, |
| 168 | }], |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 169 | [ 'skia_os == "nacl"', { |
| 170 | 'link_settings': { |
| 171 | 'libraries': [ |
| 172 | '-lppapi_gles2', |
| 173 | ], |
| 174 | }, |
| 175 | }], |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 176 | [ 'skia_mesa and skia_os == "linux"', { |
| 177 | 'link_settings': { |
| 178 | 'libraries': [ |
| 179 | '-lOSMesa', |
| 180 | ], |
| 181 | }, |
| 182 | }], |
epoger@google.com | 8846cb2 | 2011-07-01 20:20:07 +0000 | [diff] [blame] | 183 | [ 'skia_os == "mac"', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 184 | 'link_settings': { |
| 185 | 'libraries': [ |
| 186 | '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 187 | ], |
| 188 | }, |
| 189 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 190 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 191 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 192 | ], |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 193 | }], |
robertphillips@google.com | e63296e | 2013-06-18 14:43:53 +0000 | [diff] [blame] | 194 | [ 'not skia_mesa', { |
| 195 | 'sources!': [ |
| 196 | '../src/gpu/gl/mesa/SkMesaGLContext.cpp', |
| 197 | '../src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp', |
| 198 | ], |
| 199 | }], |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 200 | [ 'skia_mesa and skia_os == "mac"', { |
| 201 | 'link_settings': { |
| 202 | 'libraries': [ |
bsalomon@google.com | 71cf3ae | 2013-02-04 22:17:13 +0000 | [diff] [blame] | 203 | '/opt/X11/lib/libOSMesa.dylib', |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 204 | ], |
| 205 | }, |
| 206 | 'include_dirs': [ |
bsalomon@google.com | 71cf3ae | 2013-02-04 22:17:13 +0000 | [diff] [blame] | 207 | '/opt/X11/include/', |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 208 | ], |
| 209 | }], |
bsalomon@google.com | cca3c8f | 2012-09-28 16:56:28 +0000 | [diff] [blame] | 210 | [ 'skia_os in ["win", "ios"]', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 211 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 212 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 213 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 214 | ], |
| 215 | }], |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 216 | [ 'not skia_angle', { |
| 217 | 'sources!': [ |
robertphillips@google.com | e63296e | 2013-06-18 14:43:53 +0000 | [diff] [blame] | 218 | '<@(skgpu_angle_gl_sources)', |
djsollen@google.com | 403b90e | 2013-05-03 14:00:34 +0000 | [diff] [blame] | 219 | ], |
| 220 | 'dependencies!': [ |
| 221 | 'angle.gyp:*', |
| 222 | ], |
| 223 | 'export_dependent_settings!': [ |
| 224 | 'angle.gyp:*', |
robertphillips@google.com | 021bce9 | 2012-04-02 20:42:26 +0000 | [diff] [blame] | 225 | ], |
| 226 | }], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 227 | [ 'skia_os == "android"', { |
| 228 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 229 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 230 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 231 | ], |
| 232 | 'link_settings': { |
| 233 | 'libraries': [ |
| 234 | '-lGLESv2', |
| 235 | '-lEGL', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 236 | ], |
| 237 | }, |
| 238 | }], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 239 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 240 | }, |
| 241 | ], |
| 242 | } |