blob: c9d24ae609e42a28f81ff7aafabb8b51edcd16f9 [file] [log] [blame]
seanpaul@google.com1134f982011-09-15 14:24:33 +00001# conditions used in both common.gypi and skia.gyp in chromium
2#
3{
chudy@google.combbad34d2012-08-13 14:26:36 +00004 'defines': [
5 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)',
reed@google.com1f1543f2012-09-12 21:08:33 +00006# 'SK_SUPPORT_HINTING_SCALE_FACTOR',
chudy@google.combbad34d2012-08-13 14:26:36 +00007 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +00008 'conditions' : [
borenet@google.coma72aef82013-03-22 13:16:06 +00009 [ 'skia_gpu == 1',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000010 {
11 'defines': [
12 'SK_SUPPORT_GPU=1',
13 ],
14 }, {
15 'defines': [
16 'SK_SUPPORT_GPU=0',
17 ],
18 },
19 ],
zachr@google.comd6585682013-07-17 19:29:19 +000020 [ 'skia_opencl == 1',
21 {
22 'defines': [
23 'SK_SUPPORT_OPENCL=1',
24 ],
25 }, {
26 'defines': [
27 'SK_SUPPORT_OPENCL=0',
28 ],
29 },
30 ],
borenet@google.coma72aef82013-03-22 13:16:06 +000031 [ 'skia_os == "win"',
seanpaul@google.com1134f982011-09-15 14:24:33 +000032 {
33 'defines': [
34 'SK_BUILD_FOR_WIN32',
35 'SK_IGNORE_STDINT_DOT_H',
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000036 '_CRT_SECURE_NO_WARNINGS',
senorblanco@chromium.org5f47a392012-07-12 00:34:39 +000037 'GR_GL_FUNCTION_TYPE=__stdcall',
seanpaul@google.com1134f982011-09-15 14:24:33 +000038 ],
39 'msvs_cygwin_shell': 0,
40 'msvs_settings': {
41 'VCCLCompilerTool': {
bsalomon@google.comb58a6392013-03-21 20:29:05 +000042 'WarningLevel': '3',
43 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb',
seanpaul@google.com1134f982011-09-15 14:24:33 +000044 'DebugInformationFormat': '3',
bsalomon@google.comb58a6392013-03-21 20:29:05 +000045 'ExceptionHandling': '0',
46 'AdditionalOptions': [ '/MP', ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000047 },
48 'VCLinkerTool': {
49 'AdditionalDependencies': [
50 'OpenGL32.lib',
51 'usp10.lib',
bungeman@google.comf51e1252013-06-05 18:35:22 +000052
53 # Prior to gyp r1584, the following were included automatically.
54 'kernel32.lib',
55 'gdi32.lib',
56 'winspool.lib',
57 'comdlg32.lib',
58 'advapi32.lib',
59 'shell32.lib',
60 'ole32.lib',
61 'oleaut32.lib',
62 'user32.lib',
63 'uuid.lib',
64 'odbc32.lib',
65 'odbccp32.lib',
bsalomon@google.combbba7842013-06-06 18:34:13 +000066 'DelayImp.lib',
seanpaul@google.com1134f982011-09-15 14:24:33 +000067 ],
68 },
69 },
70 'configurations': {
71 'Debug': {
72 'msvs_settings': {
73 'VCCLCompilerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000074 'DebugInformationFormat': '4', # editAndContiue (/ZI)
seanpaul@google.com1134f982011-09-15 14:24:33 +000075 'Optimization': '0', # optimizeDisabled (/Od)
76 'PreprocessorDefinitions': ['_DEBUG'],
77 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd)
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000078 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +000079 },
80 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000081 'GenerateDebugInformation': 'true', # /DEBUG
82 'LinkIncremental': '2', # /INCREMENTAL
seanpaul@google.com1134f982011-09-15 14:24:33 +000083 },
84 },
85 },
86 'Release': {
87 'msvs_settings': {
88 'VCCLCompilerTool': {
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000089 'DebugInformationFormat': '3', # programDatabase (/Zi)
commit-bot@chromium.org06b38642013-06-20 20:28:54 +000090 'Optimization': '<(skia_release_optimization_level)',
bsalomon@google.comd9718692013-04-22 14:56:50 +000091 'WholeProgramOptimization': 'true', #/GL
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000092 # Changing the floating point model requires rebaseling gm images
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000093 #'FloatingPointModel': '2', # fast (/fp:fast)
94 'FavorSizeOrSpeed': '1', # speed (/Ot)
seanpaul@google.com1134f982011-09-15 14:24:33 +000095 'PreprocessorDefinitions': ['NDEBUG'],
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000096 'RuntimeLibrary': '2', # rtMultiThreadedDLL (/MD)
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000097 'EnableEnhancedInstructionSet': '2',# /arch:SSE2
98 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +000099 },
100 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +0000101 'GenerateDebugInformation': 'true', # /DEBUG
bsalomon@google.comd9718692013-04-22 14:56:50 +0000102 'LinkTimeCodeGeneration': '1', # useLinkTimeCodeGeneration /LTCG
seanpaul@google.com1134f982011-09-15 14:24:33 +0000103 },
bungeman@google.com983297e2011-10-03 19:36:51 +0000104 'VCLibrarianTool': {
bsalomon@google.comd9718692013-04-22 14:56:50 +0000105 'LinkTimeCodeGeneration': 'true', # useLinkTimeCodeGeneration /LTCG
bungeman@google.com983297e2011-10-03 19:36:51 +0000106 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000107 },
108 },
109 },
borenet@google.comb7961192012-08-20 18:58:26 +0000110 'conditions' : [
borenet@google.coma72aef82013-03-22 13:16:06 +0000111 [ 'skia_arch_width == 64', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000112 'msvs_configuration_platform': 'x64',
borenet@google.coma72aef82013-03-22 13:16:06 +0000113 }],
114 [ 'skia_arch_width == 32', {
115 'msvs_configuration_platform': 'Win32',
116 }],
117 [ 'skia_warnings_as_errors', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000118 'msvs_settings': {
119 'VCCLCompilerTool': {
borenet@google.coma72aef82013-03-22 13:16:06 +0000120 'WarnAsError': 'true',
121 'AdditionalOptions': [
122 '/we4189', # initialized but unused var warning
123 ],
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000124 },
125 },
borenet@google.comb7961192012-08-20 18:58:26 +0000126 }],
commit-bot@chromium.org5a6c2d82013-06-14 17:10:09 +0000127 [ 'skia_win_exceptions', {
128 'msvs_settings': {
129 'VCCLCompilerTool': {
130 'AdditionalOptions': [
131 '/EHsc',
132 ],
133 },
134 },
135 }],
borenet@google.comb7961192012-08-20 18:58:26 +0000136 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000137 },
138 ],
139
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000140 # The following section is common to linux + derivatives and android
141 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos", "android"]',
142 {
143 'conditions': [
144 [ 'skia_warnings_as_errors', {
145 'cflags': [
146 '-Werror',
147 ],
148 }],
149 [ 'skia_arch_type == "arm" and arm_thumb == 1', {
150 'cflags': [
151 '-mthumb',
152 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000153 # The --fix-cortex-a8 switch enables a link-time workaround for
154 # an erratum in certain Cortex-A8 processors. The workaround is
155 # enabled by default if you target the ARM v7-A arch profile.
156 # It can be enabled otherwise by specifying --fix-cortex-a8, or
157 # disabled unconditionally by specifying --no-fix-cortex-a8.
158 #
159 # The erratum only affects Thumb-2 code.
160 'conditions': [
161 [ 'arm_version < 7', {
162 'ldflags': [
163 '-Wl,--fix-cortex-a8',
164 ],
165 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000166 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000167 }],
168 [ 'skia_arch_type == "arm" and arm_version >= 7', {
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000169 'cflags': [
170 '-march=armv7-a',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000171 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000172 'ldflags': [
173 '-march=armv7-a',
174 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000175 'conditions': [
176 [ 'arm_neon == 1', {
177 'defines': [
178 '__ARM_HAVE_NEON',
179 ],
180 'cflags': [
181 '-mfpu=neon',
182 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000183 }],
184 [ 'arm_neon_optional == 1', {
185 'defines': [
186 '__ARM_HAVE_OPTIONAL_NEON_SUPPORT',
187 ],
188 }],
borenet@google.come2b90372013-07-11 18:46:30 +0000189 [ 'skia_os != "chromeos"', {
190 'cflags': [
191 '-mfloat-abi=softfp',
192 ],
193 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000194 ],
195 }],
196 ],
197 },
198 ],
199
200
borenet@google.com05d550e2013-06-11 15:52:19 +0000201 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos"]',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000202 {
203 'defines': [
204 'SK_SAMPLES_FOR_X',
205 'SK_BUILD_FOR_UNIX',
206 ],
207 'configurations': {
208 'Debug': {
209 'cflags': ['-g']
210 },
211 'Release': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000212 'cflags': [
213 '-O<(skia_release_optimization_level)',
214 '-g',
215 ],
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000216 'defines': [ 'NDEBUG' ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000217 },
218 },
bsalomon@google.comcadbcb82012-01-06 19:22:11 +0000219 'cflags': [
bsalomon@google.com31648eb2011-11-23 15:01:08 +0000220 '-Wall',
221 '-Wextra',
bsalomon@google.com31648eb2011-11-23 15:01:08 +0000222 # suppressions below here were added for clang
223 '-Wno-unused-parameter',
224 '-Wno-c++11-extensions'
225 ],
borenet@google.coma37a5172012-08-09 20:44:32 +0000226 'conditions' : [
zachr@google.com28c27c82013-06-20 17:15:05 +0000227 [ 'skia_shared_lib', {
228 'cflags': [
229 '-fPIC',
230 ],
231 'defines': [
232 'GR_DLL=1',
233 'GR_IMPLEMENTATION=1',
234 'SKIA_DLL',
235 'SKIA_IMPLEMENTATION=1',
236 ],
237 }],
borenet@google.com7158e6a2012-11-01 17:43:44 +0000238 [ 'skia_os == "nacl"', {
239 'defines': [
240 'SK_BUILD_FOR_NACL',
241 ],
242 'link_settings': {
243 'libraries': [
244 '-lppapi',
245 '-lppapi_cpp',
246 '-lnosys',
247 '-pthread',
248 ],
249 },
borenet@google.com7158e6a2012-11-01 17:43:44 +0000250 }],
borenet@google.com05d550e2013-06-11 15:52:19 +0000251 [ 'skia_os == "chromeos"', {
252 'ldflags': [
borenet@google.com05d550e2013-06-11 15:52:19 +0000253 '-lstdc++',
254 '-lm',
255 ],
256 }, {
257 'conditions': [
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000258 [ 'skia_arch_width == 64 and skia_arch_type == "x86"', {
borenet@google.com05d550e2013-06-11 15:52:19 +0000259 'cflags': [
260 '-m64',
261 ],
262 'ldflags': [
263 '-m64',
264 ],
265 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000266 [ 'skia_arch_width == 32 and skia_arch_type == "x86"', {
borenet@google.com05d550e2013-06-11 15:52:19 +0000267 'cflags': [
268 '-m32',
269 ],
270 'ldflags': [
271 '-m32',
272 ],
273 }],
274 ],
275 }],
borenet@google.com0d193092013-07-03 15:55:05 +0000276 [ 'skia_asan_build', {
277 'cflags': [
278 '-fsanitize=address',
279 '-fno-omit-frame-pointer',
280 ],
281 'ldflags': [
282 '-fsanitize=address',
283 ],
284 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000285 ],
286 },
287 ],
288
borenet@google.coma72aef82013-03-22 13:16:06 +0000289 [ 'skia_os == "mac"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000290 {
humper@google.com522dbd22013-02-08 21:45:33 +0000291 'variables': {
292 'mac_sdk%': '<!(python <(DEPTH)/tools/find_mac_sdk.py 10.6)',
293 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000294 'defines': [
295 'SK_BUILD_FOR_MAC',
296 ],
djsollen@google.come341cb32012-06-28 16:08:05 +0000297 'conditions' : [
borenet@google.coma72aef82013-03-22 13:16:06 +0000298 [ 'skia_arch_width == 64', {
djsollen@google.come341cb32012-06-28 16:08:05 +0000299 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000300 'ARCHS': ['x86_64'],
djsollen@google.come341cb32012-06-28 16:08:05 +0000301 },
302 }],
borenet@google.coma72aef82013-03-22 13:16:06 +0000303 [ 'skia_arch_width == 32', {
djsollen@google.come341cb32012-06-28 16:08:05 +0000304 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000305 'ARCHS': ['i386'],
borenet@google.coma72aef82013-03-22 13:16:06 +0000306 },
307 }],
308 [ 'skia_warnings_as_errors', {
309 'xcode_settings': {
humper@google.comfe0d6802013-01-07 20:28:16 +0000310 'OTHER_CPLUSPLUSFLAGS': [
311 '-Werror',
commit-bot@chromium.orgfaa5ae42013-07-23 11:13:56 +0000312 '-Wall',
313 '-Wextra',
314 '-Wno-unused-parameter',
humper@google.comfe0d6802013-01-07 20:28:16 +0000315 ],
djsollen@google.come341cb32012-06-28 16:08:05 +0000316 },
317 }],
mtklein@google.com8d725b22013-07-24 16:20:05 +0000318# This old compiler is really bad at figuring out when things are uninitialized, so ignore it.
319 [ '<(mac_sdk)==10.6', {
320 'xcode_settings': {
321 'OTHER_CPLUSPLUSFLAGS': [
322 '-Wno-uninitialized',
323 ],
324 },
325 }],
djsollen@google.come341cb32012-06-28 16:08:05 +0000326 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000327 'configurations': {
328 'Debug': {
329 'xcode_settings': {
330 'GCC_OPTIMIZATION_LEVEL': '0',
331 },
332 },
reed@google.come05cc8e2011-10-10 14:19:40 +0000333 'Release': {
334 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000335 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
reed@google.come05cc8e2011-10-10 14:19:40 +0000336 },
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000337 'defines': [ 'NDEBUG' ],
reed@google.come05cc8e2011-10-10 14:19:40 +0000338 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000339 },
340 'xcode_settings': {
robertphillips@google.com02297652012-04-05 19:29:04 +0000341 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
humper@google.com522dbd22013-02-08 21:45:33 +0000342 'conditions': [
borenet@google.coma72aef82013-03-22 13:16:06 +0000343 [ 'skia_osx_sdkroot==""', {
humper@google.com522dbd22013-02-08 21:45:33 +0000344 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
345 }, {
346 'SDKROOT': '<(skia_osx_sdkroot)', # -isysroot
347 }],
348 ],
reed@google.com0069aa52011-11-17 15:35:47 +0000349# trying to get this to work, but it needs clang I think...
350# 'WARNING_CFLAGS': '-Wexit-time-destructors',
mike@reedtribe.orge51755f2011-12-10 19:36:56 +0000351 'CLANG_WARN_CXX0X_EXTENSIONS': 'NO',
caryclark@google.comb462a422012-06-06 12:12:28 +0000352 'GCC_WARN_64_TO_32_BIT_CONVERSION': 'YES',
353 'GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS': 'YES',
354 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'YES',
355 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
356 'GCC_WARN_ABOUT_MISSING_PROTOTYPES': 'YES',
357 'GCC_WARN_ABOUT_POINTER_SIGNEDNESS': 'YES',
358 'GCC_WARN_ABOUT_RETURN_TYPE': 'YES',
359 'GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL': 'YES',
360 'GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED': 'YES',
361 'GCC_WARN_MISSING_PARENTHESES': 'YES',
362 'GCC_WARN_PROTOTYPE_CONVERSION': 'YES',
363 'GCC_WARN_SIGN_COMPARE': 'YES',
364 'GCC_WARN_TYPECHECK_CALLS_TO_PRINTF': 'YES',
365 'GCC_WARN_UNKNOWN_PRAGMAS': 'YES',
366 'GCC_WARN_UNUSED_FUNCTION': 'YES',
367 'GCC_WARN_UNUSED_LABEL': 'YES',
368 'GCC_WARN_UNUSED_VALUE': 'YES',
369 'GCC_WARN_UNUSED_VARIABLE': 'YES',
bungeman@google.com43b4ed52012-10-02 15:42:21 +0000370 'OTHER_CPLUSPLUSFLAGS': [
371 '-mssse3',
372 '-fvisibility=hidden',
373 '-fvisibility-inlines-hidden',
374 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000375 },
376 },
377 ],
378
borenet@google.coma72aef82013-03-22 13:16:06 +0000379 [ 'skia_os == "ios"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000380 {
381 'defines': [
382 'SK_BUILD_FOR_IOS',
383 ],
borenet@google.coma72aef82013-03-22 13:16:06 +0000384 'conditions' : [
385 [ 'skia_warnings_as_errors', {
386 'xcode_settings': {
387 'OTHER_CPLUSPLUSFLAGS': [
388 '-Werror',
389 ],
390 },
391 }],
392 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000393 'configurations': {
394 'Debug': {
395 'xcode_settings': {
396 'GCC_OPTIMIZATION_LEVEL': '0',
397 },
398 },
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000399 'Release': {
400 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000401 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000402 },
403 'defines': [ 'NDEBUG' ],
404 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000405 },
406 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000407 'ARCHS': ['armv6', 'armv7'],
caryclark@google.com867cbd82012-09-20 15:45:41 +0000408 'CODE_SIGNING_REQUIRED': 'NO',
409 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000410 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)',
caryclark@google.com867cbd82012-09-20 15:45:41 +0000411 'SDKROOT': 'iphoneos',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000412 'TARGETED_DEVICE_FAMILY': '1,2',
borenet@google.coma72aef82013-03-22 13:16:06 +0000413 'OTHER_CPLUSPLUSFLAGS': [
414 '-fvisibility=hidden',
415 '-fvisibility-inlines-hidden',
416 ],
bsalomon@google.com89dec582012-09-28 18:33:11 +0000417 'GCC_THUMB_SUPPORT': 'NO',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000418 },
419 },
420 ],
chudy@google.combbad34d2012-08-13 14:26:36 +0000421
borenet@google.coma72aef82013-03-22 13:16:06 +0000422 [ 'skia_os == "android"',
djsollen@google.com58629292011-11-03 13:08:29 +0000423 {
424 'defines': [
djsollen@google.com58629292011-11-03 13:08:29 +0000425 'SK_BUILD_FOR_ANDROID',
djsollen@google.com58629292011-11-03 13:08:29 +0000426 ],
427 'configurations': {
428 'Debug': {
429 'cflags': ['-g']
430 },
431 'Release': {
djsollen@google.combde506c2013-04-04 19:42:51 +0000432 'cflags': ['-O2'],
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000433 'defines': [ 'NDEBUG' ],
djsollen@google.com58629292011-11-03 13:08:29 +0000434 },
435 },
436 'libraries': [
437 '-lstdc++',
438 '-lm',
djsollen@google.com318cf922011-11-08 19:03:43 +0000439 '-llog',
djsollen@google.com58629292011-11-03 13:08:29 +0000440 ],
djsollen@google.com44360bc2011-12-05 13:55:55 +0000441 'cflags': [
djsollen@google.comefbe8e92013-02-07 18:58:35 +0000442 '-Wall',
djsollen@google.com44360bc2011-12-05 13:55:55 +0000443 '-fno-exceptions',
djsollen@google.comefbe8e92013-02-07 18:58:35 +0000444 '-fstrict-aliasing',
borenet@google.comde9ac142012-07-25 15:17:03 +0000445 '-fuse-ld=gold',
djsollen@google.com44360bc2011-12-05 13:55:55 +0000446 ],
reed@google.come52d2912013-05-15 20:01:07 +0000447 'cflags_cc': [
448 '-fno-rtti',
449 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000450 'conditions': [
djsollen@google.com52f02972013-06-03 12:10:19 +0000451 [ 'skia_shared_lib', {
452 'cflags': [
453 '-fPIC',
454 ],
455 'defines': [
456 'GR_DLL=1',
457 'GR_IMPLEMENTATION=1',
458 'SKIA_DLL',
459 'SKIA_IMPLEMENTATION=1',
460 ],
461 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000462 [ 'skia_profile_enabled == 1', {
463 'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'],
djsollen@google.com3839ca12011-11-03 17:31:41 +0000464 }],
chudy@google.combbad34d2012-08-13 14:26:36 +0000465 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000466 },
467 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000468
digit@google.com1771cbf2012-01-26 21:26:40 +0000469 # We can POD-style initialization of static mutexes to avoid generating
470 # static initializers if we're using a pthread-compatible thread interface.
471 [ 'skia_os != "win"', {
472 'defines': [
borenet@google.com7158e6a2012-11-01 17:43:44 +0000473 'SK_USE_POSIX_THREADS',
digit@google.com1771cbf2012-01-26 21:26:40 +0000474 ],
475 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000476 ], # end 'conditions'
caryclark@google.com4588ce82012-09-26 15:48:43 +0000477 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
478 'xcode_settings': {
479 'SYMROOT': '<(DEPTH)/xcodebuild',
480 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000481}
482
483# Local Variables:
484# tab-width:2
485# indent-tabs-mode:nil
486# End:
487# vim: set expandtab tabstop=2 shiftwidth=2: