blob: 211aa128c326dddb9c408e10074bfb9c9b559917 [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)',
6 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +00007 'conditions' : [
borenet@google.coma72aef82013-03-22 13:16:06 +00008 [ 'skia_gpu == 1',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00009 {
10 'defines': [
11 'SK_SUPPORT_GPU=1',
12 ],
13 }, {
14 'defines': [
15 'SK_SUPPORT_GPU=0',
16 ],
17 },
18 ],
zachr@google.comd6585682013-07-17 19:29:19 +000019 [ 'skia_opencl == 1',
20 {
21 'defines': [
22 'SK_SUPPORT_OPENCL=1',
23 ],
24 }, {
25 'defines': [
26 'SK_SUPPORT_OPENCL=0',
27 ],
28 },
29 ],
borenet@google.coma72aef82013-03-22 13:16:06 +000030 [ 'skia_os == "win"',
seanpaul@google.com1134f982011-09-15 14:24:33 +000031 {
32 'defines': [
33 'SK_BUILD_FOR_WIN32',
reed@google.comebbda762013-08-07 15:30:09 +000034 'SK_FONTHOST_USES_FONTMGR',
seanpaul@google.com1134f982011-09-15 14:24:33 +000035 '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',
reed@google.comebbda762013-08-07 15:30:09 +0000296 'SK_FONTHOST_USES_FONTMGR',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000297 ],
djsollen@google.come341cb32012-06-28 16:08:05 +0000298 'conditions' : [
borenet@google.coma72aef82013-03-22 13:16:06 +0000299 [ 'skia_arch_width == 64', {
djsollen@google.come341cb32012-06-28 16:08:05 +0000300 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000301 'ARCHS': ['x86_64'],
djsollen@google.come341cb32012-06-28 16:08:05 +0000302 },
303 }],
borenet@google.coma72aef82013-03-22 13:16:06 +0000304 [ 'skia_arch_width == 32', {
djsollen@google.come341cb32012-06-28 16:08:05 +0000305 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000306 'ARCHS': ['i386'],
borenet@google.coma72aef82013-03-22 13:16:06 +0000307 },
308 }],
309 [ 'skia_warnings_as_errors', {
310 'xcode_settings': {
humper@google.comfe0d6802013-01-07 20:28:16 +0000311 'OTHER_CPLUSPLUSFLAGS': [
312 '-Werror',
commit-bot@chromium.orgfaa5ae42013-07-23 11:13:56 +0000313 '-Wall',
314 '-Wextra',
315 '-Wno-unused-parameter',
humper@google.comfe0d6802013-01-07 20:28:16 +0000316 ],
djsollen@google.come341cb32012-06-28 16:08:05 +0000317 },
318 }],
mtklein@google.com8d725b22013-07-24 16:20:05 +0000319# This old compiler is really bad at figuring out when things are uninitialized, so ignore it.
320 [ '<(mac_sdk)==10.6', {
321 'xcode_settings': {
322 'OTHER_CPLUSPLUSFLAGS': [
323 '-Wno-uninitialized',
324 ],
325 },
326 }],
djsollen@google.come341cb32012-06-28 16:08:05 +0000327 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000328 'configurations': {
329 'Debug': {
330 'xcode_settings': {
331 'GCC_OPTIMIZATION_LEVEL': '0',
332 },
333 },
reed@google.come05cc8e2011-10-10 14:19:40 +0000334 'Release': {
335 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000336 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
reed@google.come05cc8e2011-10-10 14:19:40 +0000337 },
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000338 'defines': [ 'NDEBUG' ],
reed@google.come05cc8e2011-10-10 14:19:40 +0000339 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000340 },
341 'xcode_settings': {
robertphillips@google.com02297652012-04-05 19:29:04 +0000342 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
humper@google.com522dbd22013-02-08 21:45:33 +0000343 'conditions': [
borenet@google.coma72aef82013-03-22 13:16:06 +0000344 [ 'skia_osx_sdkroot==""', {
humper@google.com522dbd22013-02-08 21:45:33 +0000345 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
346 }, {
347 'SDKROOT': '<(skia_osx_sdkroot)', # -isysroot
348 }],
349 ],
reed@google.com0069aa52011-11-17 15:35:47 +0000350# trying to get this to work, but it needs clang I think...
351# 'WARNING_CFLAGS': '-Wexit-time-destructors',
mike@reedtribe.orge51755f2011-12-10 19:36:56 +0000352 'CLANG_WARN_CXX0X_EXTENSIONS': 'NO',
caryclark@google.comb462a422012-06-06 12:12:28 +0000353 'GCC_WARN_64_TO_32_BIT_CONVERSION': 'YES',
354 'GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS': 'YES',
355 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'YES',
356 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
357 'GCC_WARN_ABOUT_MISSING_PROTOTYPES': 'YES',
358 'GCC_WARN_ABOUT_POINTER_SIGNEDNESS': 'YES',
359 'GCC_WARN_ABOUT_RETURN_TYPE': 'YES',
360 'GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL': 'YES',
361 'GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED': 'YES',
362 'GCC_WARN_MISSING_PARENTHESES': 'YES',
363 'GCC_WARN_PROTOTYPE_CONVERSION': 'YES',
364 'GCC_WARN_SIGN_COMPARE': 'YES',
365 'GCC_WARN_TYPECHECK_CALLS_TO_PRINTF': 'YES',
366 'GCC_WARN_UNKNOWN_PRAGMAS': 'YES',
367 'GCC_WARN_UNUSED_FUNCTION': 'YES',
368 'GCC_WARN_UNUSED_LABEL': 'YES',
369 'GCC_WARN_UNUSED_VALUE': 'YES',
370 'GCC_WARN_UNUSED_VARIABLE': 'YES',
bungeman@google.com43b4ed52012-10-02 15:42:21 +0000371 'OTHER_CPLUSPLUSFLAGS': [
372 '-mssse3',
373 '-fvisibility=hidden',
374 '-fvisibility-inlines-hidden',
375 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000376 },
377 },
378 ],
379
borenet@google.coma72aef82013-03-22 13:16:06 +0000380 [ 'skia_os == "ios"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000381 {
382 'defines': [
383 'SK_BUILD_FOR_IOS',
384 ],
borenet@google.coma72aef82013-03-22 13:16:06 +0000385 'conditions' : [
386 [ 'skia_warnings_as_errors', {
387 'xcode_settings': {
388 'OTHER_CPLUSPLUSFLAGS': [
389 '-Werror',
390 ],
391 },
392 }],
393 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000394 'configurations': {
395 'Debug': {
396 'xcode_settings': {
397 'GCC_OPTIMIZATION_LEVEL': '0',
398 },
399 },
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000400 'Release': {
401 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000402 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000403 },
404 'defines': [ 'NDEBUG' ],
405 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000406 },
407 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000408 'ARCHS': ['armv6', 'armv7'],
caryclark@google.com867cbd82012-09-20 15:45:41 +0000409 'CODE_SIGNING_REQUIRED': 'NO',
410 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000411 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)',
caryclark@google.com867cbd82012-09-20 15:45:41 +0000412 'SDKROOT': 'iphoneos',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000413 'TARGETED_DEVICE_FAMILY': '1,2',
borenet@google.coma72aef82013-03-22 13:16:06 +0000414 'OTHER_CPLUSPLUSFLAGS': [
415 '-fvisibility=hidden',
416 '-fvisibility-inlines-hidden',
417 ],
bsalomon@google.com89dec582012-09-28 18:33:11 +0000418 'GCC_THUMB_SUPPORT': 'NO',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000419 },
420 },
421 ],
chudy@google.combbad34d2012-08-13 14:26:36 +0000422
borenet@google.coma72aef82013-03-22 13:16:06 +0000423 [ 'skia_os == "android"',
djsollen@google.com58629292011-11-03 13:08:29 +0000424 {
425 'defines': [
djsollen@google.com58629292011-11-03 13:08:29 +0000426 'SK_BUILD_FOR_ANDROID',
djsollen@google.com58629292011-11-03 13:08:29 +0000427 ],
428 'configurations': {
429 'Debug': {
430 'cflags': ['-g']
431 },
432 'Release': {
djsollen@google.combde506c2013-04-04 19:42:51 +0000433 'cflags': ['-O2'],
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000434 'defines': [ 'NDEBUG' ],
djsollen@google.com58629292011-11-03 13:08:29 +0000435 },
436 },
437 'libraries': [
438 '-lstdc++',
439 '-lm',
djsollen@google.com318cf922011-11-08 19:03:43 +0000440 '-llog',
djsollen@google.com58629292011-11-03 13:08:29 +0000441 ],
djsollen@google.com44360bc2011-12-05 13:55:55 +0000442 'cflags': [
djsollen@google.comefbe8e92013-02-07 18:58:35 +0000443 '-Wall',
djsollen@google.com44360bc2011-12-05 13:55:55 +0000444 '-fno-exceptions',
djsollen@google.comefbe8e92013-02-07 18:58:35 +0000445 '-fstrict-aliasing',
borenet@google.comde9ac142012-07-25 15:17:03 +0000446 '-fuse-ld=gold',
djsollen@google.com44360bc2011-12-05 13:55:55 +0000447 ],
reed@google.come52d2912013-05-15 20:01:07 +0000448 'cflags_cc': [
449 '-fno-rtti',
450 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000451 'conditions': [
djsollen@google.com52f02972013-06-03 12:10:19 +0000452 [ 'skia_shared_lib', {
453 'cflags': [
454 '-fPIC',
455 ],
456 'defines': [
457 'GR_DLL=1',
458 'GR_IMPLEMENTATION=1',
459 'SKIA_DLL',
460 'SKIA_IMPLEMENTATION=1',
461 ],
462 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000463 [ 'skia_profile_enabled == 1', {
464 'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'],
djsollen@google.com3839ca12011-11-03 17:31:41 +0000465 }],
chudy@google.combbad34d2012-08-13 14:26:36 +0000466 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000467 },
468 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000469
digit@google.com1771cbf2012-01-26 21:26:40 +0000470 # We can POD-style initialization of static mutexes to avoid generating
471 # static initializers if we're using a pthread-compatible thread interface.
472 [ 'skia_os != "win"', {
473 'defines': [
borenet@google.com7158e6a2012-11-01 17:43:44 +0000474 'SK_USE_POSIX_THREADS',
digit@google.com1771cbf2012-01-26 21:26:40 +0000475 ],
476 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000477 ], # end 'conditions'
caryclark@google.com4588ce82012-09-26 15:48:43 +0000478 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
479 'xcode_settings': {
480 'SYMROOT': '<(DEPTH)/xcodebuild',
481 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000482}
483
484# Local Variables:
485# tab-width:2
486# indent-tabs-mode:nil
487# End:
488# vim: set expandtab tabstop=2 shiftwidth=2: