blob: 92fb819f08e37c74b30e06a7de8941032b8edd17 [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)',
mtklein@google.comdad70702013-11-20 18:06:10 +00006 'SK_SUPPORT_GPU=<(skia_gpu)',
7 'SK_SUPPORT_OPENCL=<(skia_opencl)',
commit-bot@chromium.orgae796122014-03-12 17:05:46 +00008 'SK_FORCE_DISTANCEFIELD_FONTS=<(skia_force_distancefield_fonts)',
chudy@google.combbad34d2012-08-13 14:26:36 +00009 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000010 'conditions' : [
commit-bot@chromium.org6f2d4d42014-04-02 15:03:56 +000011 [ 'skia_arch_type == "arm64"', {
12 'cflags': [
13 '-ffp-contract=off',
14 ],
15 }],
16
borenet@google.coma72aef82013-03-22 13:16:06 +000017 [ 'skia_os == "win"',
seanpaul@google.com1134f982011-09-15 14:24:33 +000018 {
19 'defines': [
20 'SK_BUILD_FOR_WIN32',
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000021 '_CRT_SECURE_NO_WARNINGS',
senorblanco@chromium.org5f47a392012-07-12 00:34:39 +000022 'GR_GL_FUNCTION_TYPE=__stdcall',
seanpaul@google.com1134f982011-09-15 14:24:33 +000023 ],
24 'msvs_cygwin_shell': 0,
25 'msvs_settings': {
26 'VCCLCompilerTool': {
bsalomon@google.comb58a6392013-03-21 20:29:05 +000027 'WarningLevel': '3',
28 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb',
seanpaul@google.com1134f982011-09-15 14:24:33 +000029 'DebugInformationFormat': '3',
bsalomon@google.comb58a6392013-03-21 20:29:05 +000030 'ExceptionHandling': '0',
31 'AdditionalOptions': [ '/MP', ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000032 },
33 'VCLinkerTool': {
34 'AdditionalDependencies': [
35 'OpenGL32.lib',
36 'usp10.lib',
bungeman@google.comf51e1252013-06-05 18:35:22 +000037
38 # Prior to gyp r1584, the following were included automatically.
39 'kernel32.lib',
40 'gdi32.lib',
41 'winspool.lib',
42 'comdlg32.lib',
43 'advapi32.lib',
44 'shell32.lib',
45 'ole32.lib',
46 'oleaut32.lib',
47 'user32.lib',
48 'uuid.lib',
49 'odbc32.lib',
50 'odbccp32.lib',
bsalomon@google.combbba7842013-06-06 18:34:13 +000051 'DelayImp.lib',
seanpaul@google.com1134f982011-09-15 14:24:33 +000052 ],
53 },
54 },
55 'configurations': {
56 'Debug': {
57 'msvs_settings': {
58 'VCCLCompilerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000059 'DebugInformationFormat': '4', # editAndContiue (/ZI)
seanpaul@google.com1134f982011-09-15 14:24:33 +000060 'Optimization': '0', # optimizeDisabled (/Od)
61 'PreprocessorDefinitions': ['_DEBUG'],
62 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd)
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000063 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +000064 },
65 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000066 'GenerateDebugInformation': 'true', # /DEBUG
67 'LinkIncremental': '2', # /INCREMENTAL
seanpaul@google.com1134f982011-09-15 14:24:33 +000068 },
69 },
70 },
71 'Release': {
72 'msvs_settings': {
73 'VCCLCompilerTool': {
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000074 'DebugInformationFormat': '3', # programDatabase (/Zi)
commit-bot@chromium.org06b38642013-06-20 20:28:54 +000075 'Optimization': '<(skia_release_optimization_level)',
bsalomon@google.comd9718692013-04-22 14:56:50 +000076 'WholeProgramOptimization': 'true', #/GL
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000077 # Changing the floating point model requires rebaseling gm images
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000078 #'FloatingPointModel': '2', # fast (/fp:fast)
79 'FavorSizeOrSpeed': '1', # speed (/Ot)
seanpaul@google.com1134f982011-09-15 14:24:33 +000080 'PreprocessorDefinitions': ['NDEBUG'],
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000081 'RuntimeLibrary': '2', # rtMultiThreadedDLL (/MD)
bsalomon@google.com9aabfc72012-05-31 14:12:46 +000082 'EnableEnhancedInstructionSet': '2',# /arch:SSE2
83 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +000084 },
85 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000086 'GenerateDebugInformation': 'true', # /DEBUG
bsalomon@google.comd9718692013-04-22 14:56:50 +000087 'LinkTimeCodeGeneration': '1', # useLinkTimeCodeGeneration /LTCG
seanpaul@google.com1134f982011-09-15 14:24:33 +000088 },
bungeman@google.com983297e2011-10-03 19:36:51 +000089 'VCLibrarianTool': {
bsalomon@google.comd9718692013-04-22 14:56:50 +000090 'LinkTimeCodeGeneration': 'true', # useLinkTimeCodeGeneration /LTCG
bungeman@google.com983297e2011-10-03 19:36:51 +000091 },
seanpaul@google.com1134f982011-09-15 14:24:33 +000092 },
93 },
epoger@google.com58d69d82014-04-01 07:02:41 +000094 # Gyp's ninja generator depends on these specially named
95 # configurations to build 64-bit on Windows.
96 # See http://skbug.com/2348
97 #
98 # We handle the 64- vs 32-bit variations elsewhere, so I think it's
99 # OK for us to just make these inherit non-archwidth-specific
100 # configurations without modification.
101 'Debug_x64': {
102 'inherit_from': ['Debug'],
103 },
104 'Release_x64': {
105 'inherit_from': ['Release'],
106 },
107 'Release_Developer_x64': {
108 'inherit_from': ['Release_Developer'],
109 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000110 },
borenet@google.comb7961192012-08-20 18:58:26 +0000111 'conditions' : [
borenet@google.coma72aef82013-03-22 13:16:06 +0000112 [ 'skia_arch_width == 64', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000113 'msvs_configuration_platform': 'x64',
borenet@google.coma72aef82013-03-22 13:16:06 +0000114 }],
115 [ 'skia_arch_width == 32', {
116 'msvs_configuration_platform': 'Win32',
117 }],
118 [ 'skia_warnings_as_errors', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000119 'msvs_settings': {
120 'VCCLCompilerTool': {
borenet@google.coma72aef82013-03-22 13:16:06 +0000121 'WarnAsError': 'true',
122 'AdditionalOptions': [
123 '/we4189', # initialized but unused var warning
124 ],
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000125 },
126 },
borenet@google.comb7961192012-08-20 18:58:26 +0000127 }],
commit-bot@chromium.org5a6c2d82013-06-14 17:10:09 +0000128 [ 'skia_win_exceptions', {
129 'msvs_settings': {
130 'VCCLCompilerTool': {
131 'AdditionalOptions': [
132 '/EHsc',
133 ],
134 },
135 },
136 }],
borenet@google.comb7961192012-08-20 18:58:26 +0000137 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000138 },
139 ],
140
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000141 # The following section is common to linux + derivatives and android
142 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos", "android"]',
143 {
mtklein@google.comf1077f92013-11-20 15:13:49 +0000144 'cflags': [
mtklein@google.comdad70702013-11-20 18:06:10 +0000145 '-g',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000146 '-fno-exceptions',
147 '-fstrict-aliasing',
mtklein@google.comdad70702013-11-20 18:06:10 +0000148
mtklein@google.comf1077f92013-11-20 15:13:49 +0000149 '-Wall',
150 '-Wextra',
151 '-Winit-self',
152 '-Wpointer-arith',
153
154 '-Wno-unused-parameter',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000155 ],
156 'cflags_cc': [
157 '-fno-rtti',
158 '-Wnon-virtual-dtor',
159 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000160 'conditions': [
commit-bot@chromium.org93f5e512014-02-17 15:22:26 +0000161 [ 'skia_android_framework==0', {
162 'cflags': [
163 # This flag is not supported by Android build system.
164 '-Wno-c++11-extensions',
165 ],
166 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000167 [ 'skia_warnings_as_errors', {
168 'cflags': [
169 '-Werror',
170 ],
171 }],
commit-bot@chromium.org35d48722014-02-13 18:36:36 +0000172 # For profiling; reveals some costs, exaggerates others (e.g. trivial setters & getters).
173 [ 'skia_disable_inlining', {
174 'cflags': [
175 '-fno-inline',
176 '-fno-default-inline',
177 '-finline-limit=0',
178 '-fno-omit-frame-pointer',
179 ],
180 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000181 [ 'skia_arch_type == "arm" and arm_thumb == 1', {
182 'cflags': [
183 '-mthumb',
184 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000185 # The --fix-cortex-a8 switch enables a link-time workaround for
186 # an erratum in certain Cortex-A8 processors. The workaround is
187 # enabled by default if you target the ARM v7-A arch profile.
188 # It can be enabled otherwise by specifying --fix-cortex-a8, or
189 # disabled unconditionally by specifying --no-fix-cortex-a8.
190 #
191 # The erratum only affects Thumb-2 code.
192 'conditions': [
193 [ 'arm_version < 7', {
194 'ldflags': [
195 '-Wl,--fix-cortex-a8',
196 ],
197 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000198 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000199 }],
200 [ 'skia_arch_type == "arm" and arm_version >= 7', {
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000201 'cflags': [
202 '-march=armv7-a',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000203 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000204 'ldflags': [
205 '-march=armv7-a',
206 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000207 'conditions': [
208 [ 'arm_neon == 1', {
209 'defines': [
210 '__ARM_HAVE_NEON',
211 ],
212 'cflags': [
213 '-mfpu=neon',
214 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000215 }],
216 [ 'arm_neon_optional == 1', {
217 'defines': [
218 '__ARM_HAVE_OPTIONAL_NEON_SUPPORT',
219 ],
220 }],
borenet@google.come2b90372013-07-11 18:46:30 +0000221 [ 'skia_os != "chromeos"', {
222 'cflags': [
223 '-mfloat-abi=softfp',
224 ],
225 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000226 ],
227 }],
228 ],
229 },
230 ],
231
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000232 ['skia_android_framework', {
233 'cflags': [
234 # Skia does not enforce this usage pattern so we disable it here to avoid
235 # unecessary log spew when building
236 '-Wno-unused-parameter',
237
238 # Android's -D_FORTIFY_SOURCE=2 extensions are incompatibile with SkString.
239 # Revert to -D_FORTIFY_SOURCE=1
240 '-U_FORTIFY_SOURCE',
241 '-D_FORTIFY_SOURCE=1',
242 ],
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000243 # Remove flags which are either unnecessary or problematic for the
244 # Android framework build. Many of these flags are removed simply because
245 # they were not previously in the Android framework makefile, and we did
246 # did not intend to add them when generating the makefile.
247 # TODO (scroggo): Investigate whether any of these flags are actually
248 # needed/would be beneficial.
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000249 'cflags!': [
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000250 # Android has one makefile, used for both debugging (after manual
251 # modification) and release. Turn off debug info by default.
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000252 '-g',
253 '-march=armv7-a',
254 '-mthumb',
255 '-mfpu=neon',
256 '-mfloat-abi=softfp',
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000257 # This flag is not supported by Android build system.
258 '-Wno-c++11-extensions',
259 '-fno-exceptions',
260 '-fstrict-aliasing',
261 # Remove flags to turn on warnings, since most people building Android
262 # are not focused on Skia and do not need the extra warning info.
263 '-Wall',
264 '-Wextra',
265 '-Winit-self',
266 '-Wpointer-arith',
267 ],
268 'cflags_cc!': [
269 '-fno-rtti',
270 '-Wnon-virtual-dtor',
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000271 ],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000272 'defines': [
273 'DCT_IFAST_SUPPORTED',
274 # using freetype's embolden allows us to adjust fake bold settings at
275 # draw-time, at which point we know which SkTypeface is being drawn
276 'SK_USE_FREETYPE_EMBOLDEN',
277 # Android provides at least FreeType 2.4.0 at runtime.
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000278 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION 0x020400',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000279 # Skia should not use dlopen on Android.
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000280 'SK_CAN_USE_DLOPEN 0',
281 'SK_SFNTLY_SUBSETTER "sample/chromium/font_subsetter.h"',
282 # When built as part of the system image we can enable certian non-NDK
283 # compliant optimizations.
284 'SK_BUILD_FOR_ANDROID_FRAMEWORK',
285 # Android Text Tuning
286 'SK_GAMMA_APPLY_TO_A8',
287 'SK_GAMMA_EXPONENT 1.4',
288 'SK_GAMMA_CONTRAST 0.0',
289 # Optimizations for chromium (m30)
290 'GR_GL_CUSTOM_SETUP_HEADER "gl/GrGLConfig_chrome.h"',
291 'IGNORE_ROT_AA_RECT_OPT',
292 # Disable this check because it is too strict for some chromium-specific
293 # subclasses of SkPixelRef. See bug: crbug.com/171776.
294 'SK_DISABLE_PIXELREF_LOCKCOUNT_BALANCE_CHECK',
295 'SkLONGLONG int64_t',
296 'SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024)',
297 'SK_ATOMICS_PLATFORM_H "../../src/ports/SkAtomics_android.h"',
298 'SK_MUTEX_PLATFORM_H "../../src/ports/SkMutex_pthread.h"',
commit-bot@chromium.org848fdb02014-04-04 21:19:53 +0000299 # FIXME: b/13729784: Need to rework LayerRasterizer.cpp
300 'SK_SUPPORT_LEGACY_LAYERRASTERIZER_API',
301 # Temporary until https:#googleplex-android-review.git.corp.google.com/#/c/442220/
302 # lands.
303 'SK_SUPPORT_LEGACY_GETTOTALCLIP',
commit-bot@chromium.org149e9a12014-04-09 20:45:29 +0000304 # Still need to switch Android to the new name for N32.
305 'kNative_8888_SkColorType kN32_SkColorType',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000306 ],
307 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000308
borenet@google.com05d550e2013-06-11 15:52:19 +0000309 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos"]',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000310 {
311 'defines': [
312 'SK_SAMPLES_FOR_X',
313 'SK_BUILD_FOR_UNIX',
314 ],
315 'configurations': {
mtklein@google.com1fb04e22013-09-13 19:32:43 +0000316 'Coverage': {
mtklein@google.comdad70702013-11-20 18:06:10 +0000317 'cflags': ['--coverage'],
mtklein@google.com1fb04e22013-09-13 19:32:43 +0000318 'ldflags': ['--coverage'],
319 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000320 'Debug': {
seanpaul@google.com1134f982011-09-15 14:24:33 +0000321 },
322 'Release': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000323 'cflags': [
324 '-O<(skia_release_optimization_level)',
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000325 ],
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000326 'defines': [ 'NDEBUG' ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000327 },
328 },
borenet@google.coma37a5172012-08-09 20:44:32 +0000329 'conditions' : [
zachr@google.com28c27c82013-06-20 17:15:05 +0000330 [ 'skia_shared_lib', {
331 'cflags': [
332 '-fPIC',
333 ],
334 'defines': [
zachr@google.com28c27c82013-06-20 17:15:05 +0000335 'SKIA_DLL',
336 'SKIA_IMPLEMENTATION=1',
337 ],
338 }],
borenet@google.com7158e6a2012-11-01 17:43:44 +0000339 [ 'skia_os == "nacl"', {
340 'defines': [
341 'SK_BUILD_FOR_NACL',
342 ],
commit-bot@chromium.orgfe424102014-02-21 00:40:16 +0000343 'variables': {
commit-bot@chromium.org25595ed2014-04-04 18:16:04 +0000344 'nacl_sdk_root': '<!(echo ${NACL_SDK_ROOT})',
commit-bot@chromium.orgfe424102014-02-21 00:40:16 +0000345 },
borenet@google.com7158e6a2012-11-01 17:43:44 +0000346 'link_settings': {
347 'libraries': [
348 '-lppapi',
349 '-lppapi_cpp',
350 '-lnosys',
351 '-pthread',
352 ],
commit-bot@chromium.orgfe424102014-02-21 00:40:16 +0000353 'ldflags': [
354 '-L<(nacl_sdk_root)/lib/newlib_x86_<(skia_arch_width)/Release',
355 '-L<(nacl_sdk_root)/ports/lib/newlib_x86_<(skia_arch_width)/Release',
356 ],
borenet@google.com7158e6a2012-11-01 17:43:44 +0000357 },
borenet@google.comcb9445d2013-08-19 18:26:04 +0000358 }, { # skia_os != "nacl"
359 'link_settings': {
360 'ldflags': [
361 '-lstdc++',
362 '-lm',
363 ],
364 },
borenet@google.com7158e6a2012-11-01 17:43:44 +0000365 }],
borenet@google.comcb9445d2013-08-19 18:26:04 +0000366 [ 'skia_os != "chromeos"', {
borenet@google.com05d550e2013-06-11 15:52:19 +0000367 'conditions': [
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000368 [ 'skia_arch_width == 64 and skia_arch_type == "x86"', {
borenet@google.com05d550e2013-06-11 15:52:19 +0000369 'cflags': [
370 '-m64',
371 ],
372 'ldflags': [
373 '-m64',
374 ],
375 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000376 [ 'skia_arch_width == 32 and skia_arch_type == "x86"', {
borenet@google.com05d550e2013-06-11 15:52:19 +0000377 'cflags': [
378 '-m32',
379 ],
380 'ldflags': [
381 '-m32',
382 ],
383 }],
384 ],
385 }],
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000386 # Enable asan, tsan, etc.
387 [ 'skia_sanitizer', {
borenet@google.com0d193092013-07-03 15:55:05 +0000388 'cflags': [
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000389 '-fsanitize=<(skia_sanitizer)',
borenet@google.com0d193092013-07-03 15:55:05 +0000390 ],
391 'ldflags': [
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000392 '-fsanitize=<(skia_sanitizer)',
bungeman@google.com1435f9f2013-09-25 22:39:22 +0000393 ],
mtklein@google.com3a19fb52013-10-09 16:12:23 +0000394 'conditions' : [
395 [ 'skia_sanitizer == "thread"', {
396 'defines': [ 'DYNAMIC_ANNOTATIONS_ENABLED=1' ],
bungeman@google.com0fbe01f2013-10-10 17:24:17 +0000397 'cflags': [ '-fPIC' ],
bungeman@google.com27d4ffe2013-10-10 17:09:49 +0000398 'target_conditions': [
399 [ '_type == "executable"', {
400 'cflags': [ '-fPIE' ],
401 'ldflags': [ '-pie' ],
402 }],
403 ],
mtklein@google.com3a19fb52013-10-09 16:12:23 +0000404 }],
405 ],
bungeman@google.com1435f9f2013-09-25 22:39:22 +0000406 }],
borenet@google.com47ae4b02013-08-21 18:02:50 +0000407 [ 'skia_clang_build', {
408 'cflags': [
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000409 # Extra warnings we like but that only Clang knows about.
borenet@google.com47ae4b02013-08-21 18:02:50 +0000410 '-Wstring-conversion',
411 ],
412 }],
commit-bot@chromium.org5003bde2013-10-25 18:14:54 +0000413 [ 'skia_keep_frame_pointer', {
414 'cflags': [ '-fno-omit-frame-pointer' ],
415 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000416 ],
417 },
418 ],
419
borenet@google.coma72aef82013-03-22 13:16:06 +0000420 [ 'skia_os == "mac"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000421 {
422 'defines': [
423 'SK_BUILD_FOR_MAC',
424 ],
djsollen@google.come341cb32012-06-28 16:08:05 +0000425 'conditions' : [
borenet@google.coma72aef82013-03-22 13:16:06 +0000426 [ 'skia_arch_width == 64', {
djsollen@google.come341cb32012-06-28 16:08:05 +0000427 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000428 'ARCHS': ['x86_64'],
djsollen@google.come341cb32012-06-28 16:08:05 +0000429 },
430 }],
borenet@google.coma72aef82013-03-22 13:16:06 +0000431 [ 'skia_arch_width == 32', {
djsollen@google.come341cb32012-06-28 16:08:05 +0000432 'xcode_settings': {
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000433 'ARCHS': ['i386'],
borenet@google.coma72aef82013-03-22 13:16:06 +0000434 },
435 }],
436 [ 'skia_warnings_as_errors', {
437 'xcode_settings': {
humper@google.comfe0d6802013-01-07 20:28:16 +0000438 'OTHER_CPLUSPLUSFLAGS': [
439 '-Werror',
commit-bot@chromium.orgfaa5ae42013-07-23 11:13:56 +0000440 '-Wall',
441 '-Wextra',
442 '-Wno-unused-parameter',
commit-bot@chromium.org6a180792014-01-15 21:39:18 +0000443 '-Wno-uninitialized', # Disabled because we think GCC 4.2 is bad at this.
mtklein@google.com8d725b22013-07-24 16:20:05 +0000444 ],
445 },
446 }],
djsollen@google.come341cb32012-06-28 16:08:05 +0000447 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000448 'configurations': {
commit-bot@chromium.org866f4e32013-11-21 17:04:29 +0000449 'Coverage': {
450 'xcode_settings': {
451 'GCC_OPTIMIZATION_LEVEL': '0',
452 'GCC_GENERATE_TEST_COVERAGE_FILES': 'YES',
453 'GCC_INSTRUMENT_PROGRAM_FLOW_ARCS' : 'YES',
454 },
455 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000456 'Debug': {
457 'xcode_settings': {
458 'GCC_OPTIMIZATION_LEVEL': '0',
459 },
460 },
reed@google.come05cc8e2011-10-10 14:19:40 +0000461 'Release': {
462 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000463 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
reed@google.come05cc8e2011-10-10 14:19:40 +0000464 },
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000465 'defines': [ 'NDEBUG' ],
reed@google.come05cc8e2011-10-10 14:19:40 +0000466 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000467 },
468 'xcode_settings': {
robertphillips@google.com02297652012-04-05 19:29:04 +0000469 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000470 'conditions': [
471 [ 'skia_osx_deployment_target==""', {
472 'MACOSX_DEPLOYMENT_TARGET': '10.6', # -mmacos-version-min, passed in environment to ld.
473 }, {
474 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)',
475 }],
476 ],
reed@google.com0069aa52011-11-17 15:35:47 +0000477# trying to get this to work, but it needs clang I think...
478# 'WARNING_CFLAGS': '-Wexit-time-destructors',
mike@reedtribe.orge51755f2011-12-10 19:36:56 +0000479 'CLANG_WARN_CXX0X_EXTENSIONS': 'NO',
caryclark@google.comb462a422012-06-06 12:12:28 +0000480 'GCC_WARN_64_TO_32_BIT_CONVERSION': 'YES',
481 'GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS': 'YES',
482 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'YES',
483 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
484 'GCC_WARN_ABOUT_MISSING_PROTOTYPES': 'YES',
485 'GCC_WARN_ABOUT_POINTER_SIGNEDNESS': 'YES',
486 'GCC_WARN_ABOUT_RETURN_TYPE': 'YES',
487 'GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL': 'YES',
488 'GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED': 'YES',
489 'GCC_WARN_MISSING_PARENTHESES': 'YES',
490 'GCC_WARN_PROTOTYPE_CONVERSION': 'YES',
491 'GCC_WARN_SIGN_COMPARE': 'YES',
492 'GCC_WARN_TYPECHECK_CALLS_TO_PRINTF': 'YES',
493 'GCC_WARN_UNKNOWN_PRAGMAS': 'YES',
494 'GCC_WARN_UNUSED_FUNCTION': 'YES',
495 'GCC_WARN_UNUSED_LABEL': 'YES',
496 'GCC_WARN_UNUSED_VALUE': 'YES',
497 'GCC_WARN_UNUSED_VARIABLE': 'YES',
bungeman@google.com43b4ed52012-10-02 15:42:21 +0000498 'OTHER_CPLUSPLUSFLAGS': [
499 '-mssse3',
500 '-fvisibility=hidden',
501 '-fvisibility-inlines-hidden',
502 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000503 },
504 },
505 ],
506
borenet@google.coma72aef82013-03-22 13:16:06 +0000507 [ 'skia_os == "ios"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000508 {
509 'defines': [
510 'SK_BUILD_FOR_IOS',
511 ],
borenet@google.coma72aef82013-03-22 13:16:06 +0000512 'conditions' : [
513 [ 'skia_warnings_as_errors', {
514 'xcode_settings': {
515 'OTHER_CPLUSPLUSFLAGS': [
516 '-Werror',
517 ],
518 },
519 }],
520 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000521 'configurations': {
522 'Debug': {
523 'xcode_settings': {
524 'GCC_OPTIMIZATION_LEVEL': '0',
525 },
526 },
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000527 'Release': {
528 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000529 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000530 },
531 'defines': [ 'NDEBUG' ],
532 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000533 },
534 'xcode_settings': {
commit-bot@chromium.orgae0054e2014-04-05 01:13:43 +0000535 'ARCHS': ['armv7'],
caryclark@google.com867cbd82012-09-20 15:45:41 +0000536 'CODE_SIGNING_REQUIRED': 'NO',
537 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000538 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)',
caryclark@google.com867cbd82012-09-20 15:45:41 +0000539 'SDKROOT': 'iphoneos',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000540 'TARGETED_DEVICE_FAMILY': '1,2',
borenet@google.coma72aef82013-03-22 13:16:06 +0000541 'OTHER_CPLUSPLUSFLAGS': [
542 '-fvisibility=hidden',
543 '-fvisibility-inlines-hidden',
544 ],
bsalomon@google.com89dec582012-09-28 18:33:11 +0000545 'GCC_THUMB_SUPPORT': 'NO',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000546 },
547 },
548 ],
chudy@google.combbad34d2012-08-13 14:26:36 +0000549
borenet@google.coma72aef82013-03-22 13:16:06 +0000550 [ 'skia_os == "android"',
djsollen@google.com58629292011-11-03 13:08:29 +0000551 {
552 'defines': [
djsollen@google.com58629292011-11-03 13:08:29 +0000553 'SK_BUILD_FOR_ANDROID',
bungeman@google.com451b5962013-11-11 18:36:46 +0000554 'SK_FONTHOST_DOES_NOT_USE_FONTMGR',
djsollen@google.com58629292011-11-03 13:08:29 +0000555 ],
scroggo@google.comeb629502014-02-04 16:08:48 +0000556 'configurations': {
557 'Debug': {
558 'cflags': ['-g']
559 },
560 'Release': {
561 'cflags': ['-O2'],
562 'defines': [ 'NDEBUG' ],
563 },
564 },
djsollen@google.com58629292011-11-03 13:08:29 +0000565 'libraries': [
scroggo@google.comeb629502014-02-04 16:08:48 +0000566 '-lstdc++',
567 '-lm',
djsollen@google.com318cf922011-11-08 19:03:43 +0000568 '-llog',
djsollen@google.com58629292011-11-03 13:08:29 +0000569 ],
djsollen@google.com44360bc2011-12-05 13:55:55 +0000570 'cflags': [
borenet@google.comde9ac142012-07-25 15:17:03 +0000571 '-fuse-ld=gold',
djsollen@google.com44360bc2011-12-05 13:55:55 +0000572 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000573 'conditions': [
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000574 [ 'skia_android_framework', {
575 'libraries!': [
576 '-lstdc++',
577 '-lm',
578 ],
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000579 'cflags!': [
580 '-fuse-ld=gold',
581 ],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000582 }],
djsollen@google.com52f02972013-06-03 12:10:19 +0000583 [ 'skia_shared_lib', {
584 'cflags': [
585 '-fPIC',
586 ],
587 'defines': [
djsollen@google.com52f02972013-06-03 12:10:19 +0000588 'SKIA_DLL',
589 'SKIA_IMPLEMENTATION=1',
590 ],
591 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000592 [ 'skia_profile_enabled == 1', {
593 'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'],
djsollen@google.com3839ca12011-11-03 17:31:41 +0000594 }],
chudy@google.combbad34d2012-08-13 14:26:36 +0000595 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000596 },
597 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000598
digit@google.com1771cbf2012-01-26 21:26:40 +0000599 # We can POD-style initialization of static mutexes to avoid generating
600 # static initializers if we're using a pthread-compatible thread interface.
601 [ 'skia_os != "win"', {
602 'defines': [
borenet@google.com7158e6a2012-11-01 17:43:44 +0000603 'SK_USE_POSIX_THREADS',
digit@google.com1771cbf2012-01-26 21:26:40 +0000604 ],
605 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000606 ], # end 'conditions'
caryclark@google.com4588ce82012-09-26 15:48:43 +0000607 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
608 'xcode_settings': {
609 'SYMROOT': '<(DEPTH)/xcodebuild',
610 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000611}