blob: 94988ad02b5fa5e8fffbab7255e4215b4782c8d8 [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',
bsalomon@google.come2953132011-10-13 13:33:08 +000047 ],
48 }],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000049 # nullify the targets in this gyp file if skia_gpu is 0
50 [ 'skia_gpu == 0', {
51 'sources/': [
52 ['exclude', '.*'],
53 ],
54 'defines/': [
55 ['exclude', '.*'],
56 ],
57 'include_dirs/': [
58 ['exclude', '.*'],
59 ],
60 'link_settings': {
61 'libraries/': [
62 ['exclude', '.*'],
63 ],
64 },
65 'direct_dependent_settings': {
66 'defines/': [
67 ['exclude', '.*'],
68 ],
69 'include_dirs/': [
70 ['exclude', '.*'],
71 ],
72 },
73 }],
bsalomon@google.come2953132011-10-13 13:33:08 +000074 ],
75 'direct_dependent_settings': {
76 'conditions': [
77 [ 'skia_os == "android"', {
78 'defines': [
79 'GR_ANDROID_BUILD=1',
80 ],
81 }],
82 [ 'skia_os == "mac"', {
83 'defines': [
84 'GR_MAC_BUILD=1',
85 ],
86 }],
87 [ 'skia_os == "linux"', {
88 'defines': [
89 'GR_LINUX_BUILD=1',
90 ],
91 }],
92 [ 'skia_os == "ios"', {
93 'defines': [
94 'GR_IOS_BUILD=1',
95 ],
96 }],
97 [ 'skia_os == "win"', {
98 'defines': [
99 'GR_WIN32_BUILD=1',
100 'GR_GL_FUNCTION_TYPE=__stdcall',
101 ],
102 }],
103 ],
104 'include_dirs': [
105 '../include/gpu',
106 ],
107 },
108 },
epoger@google.comae85aea2011-05-31 13:50:51 +0000109 'targets': [
110 {
111 'target_name': 'skgr',
112 'type': 'static_library',
bsalomon@google.com20806352012-08-23 12:55:01 +0000113 'includes': [
114 'gpu.gypi',
115 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000116 'include_dirs': [
bungeman@google.com5a64e582012-03-29 14:51:56 +0000117 '../include/config',
118 '../include/core',
epoger@google.comae85aea2011-05-31 13:50:51 +0000119 '../src/core',
120 '../include/gpu',
bsalomon@google.com9c1f1ac2012-05-07 17:09:37 +0000121 '../src/gpu',
epoger@google.comae85aea2011-05-31 13:50:51 +0000122 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +0000123 'dependencies': [
robertphillips@google.com021bce92012-04-02 20:42:26 +0000124 'angle.gyp:*',
125 ],
126 'export_dependent_settings': [
127 'angle.gyp:*',
128 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000129 'sources': [
bsalomon@google.com20806352012-08-23 12:55:01 +0000130 '<@(skgr_sources)',
131 '<@(skgr_native_gl_sources)',
132 '<@(skgr_angle_gl_sources)',
133 '<@(skgr_mesa_gl_sources)',
134 '<@(skgr_debug_gl_sources)',
135 '<@(skgr_null_gl_sources)',
bsalomon@google.com202a51b2012-09-04 14:37:12 +0000136 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
epoger@google.comae85aea2011-05-31 13:50:51 +0000137 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000138 'conditions': [
139 [ 'not skia_mesa', {
140 'sources!': [
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000141 '../src/gpu/gl/mesa/SkMesaGLContext.cpp',
bsalomon@google.com373a6632011-10-19 20:43:20 +0000142 ],
143 }],
144 [ 'skia_mesa and skia_os == "mac"', {
145 'include_dirs': [
146 '$(SDKROOT)/usr/X11/include/',
147 ],
148 }],
robertphillips@google.com021bce92012-04-02 20:42:26 +0000149 [ '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.comae85aea2011-05-31 13:50:51 +0000156 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000157 },
158 {
159 'target_name': 'gr',
160 'type': 'static_library',
bsalomon@google.com20806352012-08-23 12:55:01 +0000161 'includes': [
162 'gpu.gypi',
163 ],
164 'include_dirs': [
epoger@google.comae85aea2011-05-31 13:50:51 +0000165 '../include/core',
166 '../include/config',
bsalomon@google.comd38f1372011-10-12 19:53:16 +0000167 '../include/gpu',
bsalomon@google.com150d2842012-01-12 20:19:56 +0000168 '../src/core', # SkRasterClip.h
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000169 '../src/gpu'
epoger@google.comae85aea2011-05-31 13:50:51 +0000170 ],
171 'dependencies': [
robertphillips@google.com021bce92012-04-02 20:42:26 +0000172 'angle.gyp:*',
173 ],
174 'export_dependent_settings': [
175 'angle.gyp:*',
epoger@google.comae85aea2011-05-31 13:50:51 +0000176 ],
177 'sources': [
bsalomon@google.com20806352012-08-23 12:55:01 +0000178 '<@(gr_sources)',
179 '<@(gr_native_gl_sources)',
rmistry@google.comd6176b02012-08-23 18:14:13 +0000180 '<@(gr_angle_gl_sources)',
bsalomon@google.com20806352012-08-23 12:55:01 +0000181 '<@(gr_mesa_gl_sources)',
182 '<@(gr_debug_gl_sources)',
183 '<@(gr_null_gl_sources)',
bsalomon@google.com202a51b2012-09-04 14:37:12 +0000184 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
epoger@google.comae85aea2011-05-31 13:50:51 +0000185 ],
186 'defines': [
187 'GR_IMPLEMENTATION=1',
188 ],
189 'conditions': [
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000190 [ 'skia_nv_path_rendering', {
191 'defines': [
192 'GR_GL_USE_NV_PATH_RENDERING=1',
193 ],
194 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000195 [ 'skia_os == "linux"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000196 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000197 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
198 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000199 ],
200 'link_settings': {
201 'libraries': [
202 '-lGL',
203 '-lX11',
204 ],
205 },
206 }],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000207 [ 'skia_mesa and skia_os == "linux"', {
208 'link_settings': {
209 'libraries': [
210 '-lOSMesa',
211 ],
212 },
213 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000214 [ 'skia_os == "mac"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000215 'link_settings': {
216 'libraries': [
217 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
218 ],
219 },
220 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000221 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
222 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000223 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000224 }],
225 [ 'skia_mesa and skia_os == "mac"', {
226 'link_settings': {
227 'libraries': [
228 '$(SDKROOT)/usr/X11/lib/libOSMesa.dylib',
229 ],
230 },
231 'include_dirs': [
232 '$(SDKROOT)/usr/X11/include/',
233 ],
234 }],
235 [ 'not skia_mesa', {
236 'sources!': [
robertphillips@google.com78ff6b42012-03-28 19:37:51 +0000237 '../src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp',
bsalomon@google.com373a6632011-10-19 20:43:20 +0000238 ],
239 }],
bsalomon@google.comcca3c8f2012-09-28 16:56:28 +0000240 [ 'skia_os in ["win", "ios"]', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000241 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000242 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
243 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000244 ],
245 }],
robertphillips@google.com021bce92012-04-02 20:42:26 +0000246 [ 'not skia_angle', {
247 'sources!': [
248 '../include/gpu/gl/SkANGLEGLContext.h',
249
250 '../src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp',
251 '../src/gpu/gl/angle/SkANGLEGLContext.cpp',
252 ],
253 }],
djsollen@google.com58629292011-11-03 13:08:29 +0000254 [ 'skia_os == "android"', {
255 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000256 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
257 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +0000258 ],
259 'link_settings': {
260 'libraries': [
261 '-lGLESv2',
262 '-lEGL',
djsollen@google.com58629292011-11-03 13:08:29 +0000263 ],
264 },
265 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000266 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000267 },
268 ],
269}
270
271# Local Variables:
272# tab-width:2
273# indent-tabs-mode:nil
274# End:
275# vim: set expandtab tabstop=2 shiftwidth=2: