blob: 2c88a973f9c738f42eb32e54e074e5c1ef13b822 [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# Copyright 2015 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
mtkleindee3df92015-03-26 05:30:44 -07005
seanpaul@google.com1134f982011-09-15 14:24:33 +00006# conditions used in both common.gypi and skia.gyp in chromium
7#
8{
chudy@google.combbad34d2012-08-13 14:26:36 +00009 'defines': [
10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)',
mtklein@google.comdad70702013-11-20 18:06:10 +000011 'SK_SUPPORT_GPU=<(skia_gpu)',
12 'SK_SUPPORT_OPENCL=<(skia_opencl)',
jvanverth4736e142014-11-07 07:12:46 -080013 'SK_FORCE_DISTANCE_FIELD_TEXT=<(skia_force_distance_field_text)',
chudy@google.combbad34d2012-08-13 14:26:36 +000014 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000015 'conditions' : [
scroggoc0bc9132014-07-22 12:09:30 -070016 ['skia_pic', {
17 'cflags': [
18 '-fPIC',
19 ],
20 'conditions' : [
21 # FIXME: The reason we don't do this on Android is due to the way
22 # we build the executables/skia_launcher on Android. See
23 # https://codereview.chromium.org/406613003/diff/1/gyp/common_conditions.gypi#newcode455
24 ['skia_os != "android"', {
25 'target_conditions': [
26 [ '_type == "executable"', {
27 'cflags': [ '-fPIE' ],
28 'ldflags': [ '-pie' ],
29 }],
30 ],
31 }],
32 ],
33 }],
commit-bot@chromium.org6f2d4d42014-04-02 15:03:56 +000034
commit-bot@chromium.org6a106ce2014-05-20 19:02:55 +000035 # As of M35, Chrome requires SSE2 on x86 (and SSSE3 on Mac).
36 [ 'skia_arch_type == "x86"', {
37 'cflags': [
38 '-msse2',
39 '-mfpmath=sse',
40 ],
41 }],
42
borenet@google.coma72aef82013-03-22 13:16:06 +000043 [ 'skia_os == "win"',
seanpaul@google.com1134f982011-09-15 14:24:33 +000044 {
45 'defines': [
46 'SK_BUILD_FOR_WIN32',
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000047 '_CRT_SECURE_NO_WARNINGS',
senorblanco@chromium.org5f47a392012-07-12 00:34:39 +000048 'GR_GL_FUNCTION_TYPE=__stdcall',
bungemanb7069e92015-07-21 14:14:30 -070049 '_HAS_EXCEPTIONS=0',
seanpaul@google.com1134f982011-09-15 14:24:33 +000050 ],
commit-bot@chromium.org50ca12b2014-05-07 19:56:27 +000051 'msvs_disabled_warnings': [
bungemanf5484442014-09-10 07:49:05 -070052 4275, # An exported class was derived from a class that was not exported
53 4345, # This is an FYI about a behavior change from long ago. Chrome stifles it too.
54 4355, # 'this' used in base member initializer list. Off by default in newer compilers.
commit-bot@chromium.org50ca12b2014-05-07 19:56:27 +000055 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000056 'msvs_cygwin_shell': 0,
57 'msvs_settings': {
58 'VCCLCompilerTool': {
bsalomon@google.comb58a6392013-03-21 20:29:05 +000059 'WarningLevel': '3',
60 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb',
seanpaul@google.com1134f982011-09-15 14:24:33 +000061 'DebugInformationFormat': '3',
bsalomon@google.comb58a6392013-03-21 20:29:05 +000062 'ExceptionHandling': '0',
63 'AdditionalOptions': [ '/MP', ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000064 },
65 'VCLinkerTool': {
commit-bot@chromium.org4521add2014-04-30 20:47:22 +000066 'LargeAddressAware': 2, # 2 means "Yes, please let me use more RAM on 32-bit builds."
seanpaul@google.com1134f982011-09-15 14:24:33 +000067 'AdditionalDependencies': [
68 'OpenGL32.lib',
69 'usp10.lib',
bungeman@google.comf51e1252013-06-05 18:35:22 +000070
71 # Prior to gyp r1584, the following were included automatically.
72 'kernel32.lib',
73 'gdi32.lib',
74 'winspool.lib',
75 'comdlg32.lib',
76 'advapi32.lib',
77 'shell32.lib',
78 'ole32.lib',
79 'oleaut32.lib',
80 'user32.lib',
81 'uuid.lib',
82 'odbc32.lib',
83 'odbccp32.lib',
bsalomon@google.combbba7842013-06-06 18:34:13 +000084 'DelayImp.lib',
seanpaul@google.com1134f982011-09-15 14:24:33 +000085 ],
86 },
87 },
88 'configurations': {
89 'Debug': {
90 'msvs_settings': {
91 'VCCLCompilerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000092 'DebugInformationFormat': '4', # editAndContiue (/ZI)
seanpaul@google.com1134f982011-09-15 14:24:33 +000093 'Optimization': '0', # optimizeDisabled (/Od)
94 'PreprocessorDefinitions': ['_DEBUG'],
95 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd)
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000096 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +000097 },
98 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000099 'GenerateDebugInformation': 'true', # /DEBUG
100 'LinkIncremental': '2', # /INCREMENTAL
seanpaul@google.com1134f982011-09-15 14:24:33 +0000101 },
102 },
103 },
104 'Release': {
105 'msvs_settings': {
106 'VCCLCompilerTool': {
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000107 'DebugInformationFormat': '3', # programDatabase (/Zi)
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000108 'Optimization': '<(skia_release_optimization_level)',
bsalomon@google.com8b5abec2011-09-28 14:32:01 +0000109 # Changing the floating point model requires rebaseling gm images
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000110 #'FloatingPointModel': '2', # fast (/fp:fast)
111 'FavorSizeOrSpeed': '1', # speed (/Ot)
seanpaul@google.com1134f982011-09-15 14:24:33 +0000112 'PreprocessorDefinitions': ['NDEBUG'],
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000113 'RuntimeLibrary': '2', # rtMultiThreadedDLL (/MD)
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000114 'EnableEnhancedInstructionSet': '2',# /arch:SSE2
115 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +0000116 },
117 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +0000118 'GenerateDebugInformation': 'true', # /DEBUG
bungeman@google.com983297e2011-10-03 19:36:51 +0000119 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000120 },
121 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000122 },
123 'conditions' : [
epoger@google.com58d69d82014-04-01 07:02:41 +0000124 # Gyp's ninja generator depends on these specially named
125 # configurations to build 64-bit on Windows.
126 # See http://skbug.com/2348
127 #
128 # We handle the 64- vs 32-bit variations elsewhere, so I think it's
129 # OK for us to just make these inherit non-archwidth-specific
130 # configurations without modification.
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000131 #
132 # See http://skbug.com/2442 : These targets cause problems in the
133 # MSVS build, so only include them if gyp is generating a ninja build.
134 [ '"ninja" in "<!(echo %GYP_GENERATORS%)"', {
135 'configurations': {
136 'Debug_x64': {
137 'inherit_from': ['Debug'],
bsalomon6740feb2014-11-13 13:47:06 -0800138 'msvs_settings': {
139 'VCCLCompilerTool': {
140 # /ZI is not supported on 64bit
141 'DebugInformationFormat': '3', # programDatabase (/Zi)
142 },
143 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000144 },
145 'Release_x64': {
146 'inherit_from': ['Release'],
bsalomon26bdfcb2014-11-19 08:59:58 -0800147 'msvs_settings': {
148 'VCCLCompilerTool': {
149 # Don't specify /arch. SSE2 is implied by 64bit and specifying it warns.
150 'EnableEnhancedInstructionSet': '0', #
151 },
152 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000153 },
154 'Release_Developer_x64': {
155 'inherit_from': ['Release_Developer'],
bsalomon26bdfcb2014-11-19 08:59:58 -0800156 'msvs_settings': {
157 'VCCLCompilerTool': {
158 # Don't specify /arch. SSE2 is implied by 64bit and specifying it warns.
159 'EnableEnhancedInstructionSet': '0', #
160 },
161 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000162 },
163 },
164 }],
borenet@google.coma72aef82013-03-22 13:16:06 +0000165 [ 'skia_arch_width == 64', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000166 'msvs_configuration_platform': 'x64',
borenet@google.coma72aef82013-03-22 13:16:06 +0000167 }],
168 [ 'skia_arch_width == 32', {
169 'msvs_configuration_platform': 'Win32',
170 }],
171 [ 'skia_warnings_as_errors', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000172 'msvs_settings': {
173 'VCCLCompilerTool': {
borenet@google.coma72aef82013-03-22 13:16:06 +0000174 'WarnAsError': 'true',
175 'AdditionalOptions': [
176 '/we4189', # initialized but unused var warning
177 ],
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000178 },
179 },
borenet@google.comb7961192012-08-20 18:58:26 +0000180 }],
commit-bot@chromium.org5a6c2d82013-06-14 17:10:09 +0000181 [ 'skia_win_exceptions', {
182 'msvs_settings': {
183 'VCCLCompilerTool': {
184 'AdditionalOptions': [
185 '/EHsc',
186 ],
187 },
188 },
189 }],
bsalomonda07a082014-06-26 12:56:28 -0700190 [ 'skia_win_ltcg', {
191 'configurations': {
192 'Release': {
193 'msvs_settings': {
194 'VCCLCompilerTool': {
195 'WholeProgramOptimization': 'true', #/GL
196 },
197 'VCLinkerTool': {
198 'LinkTimeCodeGeneration': '1', # useLinkTimeCodeGeneration /LTCG
199 },
200 'VCLibrarianTool': {
201 'LinkTimeCodeGeneration': 'true', # useLinkTimeCodeGeneration /LTCG
202 },
203 },
204 },
205 },
206 }],
borenet@google.comb7961192012-08-20 18:58:26 +0000207 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000208 },
209 ],
210
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000211 # The following section is common to linux + derivatives and android
borenet48087572015-04-02 12:16:36 -0700212 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "android"]',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000213 {
mtklein@google.comf1077f92013-11-20 15:13:49 +0000214 'cflags': [
mtklein@google.comdad70702013-11-20 18:06:10 +0000215 '-g',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000216 '-fno-exceptions',
217 '-fstrict-aliasing',
mtklein@google.comdad70702013-11-20 18:06:10 +0000218
mtklein@google.comf1077f92013-11-20 15:13:49 +0000219 '-Wall',
220 '-Wextra',
221 '-Winit-self',
222 '-Wpointer-arith',
mtkleina07b2972015-01-23 07:01:26 -0800223 '-Wsign-compare',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000224
225 '-Wno-unused-parameter',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000226 ],
227 'cflags_cc': [
mtkleinf3cdce72015-02-05 09:23:56 -0800228 '-std=c++11',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000229 '-fno-rtti',
230 '-Wnon-virtual-dtor',
mtklein24ad0962014-06-17 11:47:40 -0700231 '-Wno-invalid-offsetof', # GCC <4.6 is old-school strict about what is POD.
mtklein@google.comf1077f92013-11-20 15:13:49 +0000232 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000233 'conditions': [
mtkleindee3df92015-03-26 05:30:44 -0700234 [ 'skia_fast', { 'cflags': [ '<@(skia_fast_flags)' ] }],
qiankun.miaod312a042014-07-07 09:47:24 -0700235 [ 'skia_os != "chromeos"', {
236 'conditions': [
scroggo7cd3f642015-02-12 13:27:40 -0800237 [ 'skia_arch_type == "x86_64" and not skia_android_framework', {
qiankun.miaod312a042014-07-07 09:47:24 -0700238 'cflags': [
239 '-m64',
240 ],
241 'ldflags': [
242 '-m64',
243 ],
244 }],
scroggo7cd3f642015-02-12 13:27:40 -0800245 [ 'skia_arch_type == "x86" and not skia_android_framework', {
qiankun.miaod312a042014-07-07 09:47:24 -0700246 'cflags': [
247 '-m32',
248 ],
249 'ldflags': [
250 '-m32',
251 ],
252 }],
253 ],
254 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000255 [ 'skia_warnings_as_errors', {
256 'cflags': [
257 '-Werror',
258 ],
259 }],
commit-bot@chromium.org35d48722014-02-13 18:36:36 +0000260 # For profiling; reveals some costs, exaggerates others (e.g. trivial setters & getters).
261 [ 'skia_disable_inlining', {
262 'cflags': [
263 '-fno-inline',
264 '-fno-default-inline',
265 '-finline-limit=0',
266 '-fno-omit-frame-pointer',
267 ],
268 }],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000269 [ 'skia_arch_type == "arm" and arm_version >= 7', {
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000270 'cflags': [
271 '-march=armv7-a',
mtklein2d33a1d2015-04-02 10:47:57 -0700272 '-mthumb',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000273 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000274 'ldflags': [
275 '-march=armv7-a',
276 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000277 'conditions': [
278 [ 'arm_neon == 1', {
279 'defines': [
djsollen21769c52014-08-01 05:32:32 -0700280 'SK_ARM_HAS_NEON',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000281 ],
282 'cflags': [
283 '-mfpu=neon',
284 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000285 }],
286 [ 'arm_neon_optional == 1', {
287 'defines': [
djsollen21769c52014-08-01 05:32:32 -0700288 'SK_ARM_HAS_OPTIONAL_NEON',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000289 ],
290 }],
mtklein19996ed2014-11-21 06:48:43 -0800291 [ 'skia_os != "chromeos" and skia_os != "linux"', {
borenet@google.come2b90372013-07-11 18:46:30 +0000292 'cflags': [
293 '-mfloat-abi=softfp',
294 ],
295 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000296 ],
297 }],
djordje.pesutaaf1df62014-06-06 14:09:12 -0700298 [ 'skia_arch_type == "mips"', {
299 'cflags': [
300 '-EL',
301 ],
302 'conditions': [
303 [ 'mips_arch_variant == "mips32r2"', {
304 'cflags': [
305 '-march=mips32r2',
306 ],
307 'conditions': [
308 [ 'mips_dsp == 1', {
309 'cflags': [
310 '-mdsp',
311 ],
djordje.pesut6336f7c2014-07-14 07:48:11 -0700312 'defines': [
313 'SK_MIPS_HAS_DSP',
314 ],
djordje.pesutaaf1df62014-06-06 14:09:12 -0700315 }],
316 [ 'mips_dsp == 2', {
317 'cflags': [
318 '-mdspr2',
319 ],
djordje.pesut632a4542014-06-11 06:56:10 -0700320 'defines': [
djordje.pesut6336f7c2014-07-14 07:48:11 -0700321 'SK_MIPS_HAS_DSP',
322 'SK_MIPS_HAS_DSPR2',
djordje.pesut632a4542014-06-11 06:56:10 -0700323 ],
djordje.pesutaaf1df62014-06-06 14:09:12 -0700324 }],
325 ],
326 }],
327 ],
328 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000329 ],
330 },
331 ],
332
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000333 ['skia_android_framework', {
334 'cflags': [
335 # Skia does not enforce this usage pattern so we disable it here to avoid
336 # unecessary log spew when building
337 '-Wno-unused-parameter',
338
339 # Android's -D_FORTIFY_SOURCE=2 extensions are incompatibile with SkString.
340 # Revert to -D_FORTIFY_SOURCE=1
341 '-U_FORTIFY_SOURCE',
342 '-D_FORTIFY_SOURCE=1',
djsollenf379ad32015-01-27 09:01:01 -0800343
344 # We can't use the skia_shared_library gyp setting because we need to
345 # isolate this define to Skia sources. CFLAGS are local to Android.mk
346 # and ensures that this define is not exported to clients of the library
347 '-DSKIA_IMPLEMENTATION=1',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000348 ],
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000349 # Remove flags which are either unnecessary or problematic for the
350 # Android framework build. Many of these flags are removed simply because
351 # they were not previously in the Android framework makefile, and we did
352 # did not intend to add them when generating the makefile.
353 # TODO (scroggo): Investigate whether any of these flags are actually
354 # needed/would be beneficial.
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000355 'cflags!': [
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000356 # Android has one makefile, used for both debugging (after manual
357 # modification) and release. Turn off debug info by default.
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000358 '-g',
359 '-march=armv7-a',
360 '-mthumb',
361 '-mfpu=neon',
362 '-mfloat-abi=softfp',
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000363 '-fno-exceptions',
364 '-fstrict-aliasing',
365 # Remove flags to turn on warnings, since most people building Android
366 # are not focused on Skia and do not need the extra warning info.
367 '-Wall',
368 '-Wextra',
369 '-Winit-self',
370 '-Wpointer-arith',
mtkleina07b2972015-01-23 07:01:26 -0800371 '-Wsign-compare',
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000372 ],
373 'cflags_cc!': [
374 '-fno-rtti',
375 '-Wnon-virtual-dtor',
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000376 ],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000377 'defines': [
378 'DCT_IFAST_SUPPORTED',
379 # using freetype's embolden allows us to adjust fake bold settings at
380 # draw-time, at which point we know which SkTypeface is being drawn
381 'SK_USE_FREETYPE_EMBOLDEN',
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000382 'SK_SFNTLY_SUBSETTER "sample/chromium/font_subsetter.h"',
383 # When built as part of the system image we can enable certian non-NDK
384 # compliant optimizations.
385 'SK_BUILD_FOR_ANDROID_FRAMEWORK',
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000386 # Optimizations for chromium (m30)
387 'GR_GL_CUSTOM_SETUP_HEADER "gl/GrGLConfig_chrome.h"',
388 'IGNORE_ROT_AA_RECT_OPT',
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000389 'SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024)',
commit-bot@chromium.orge3c400f2014-05-28 21:44:05 +0000390 'SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (512 * 1024)',
krajcevski8c111f72014-06-02 13:51:34 -0700391 'SK_IGNORE_ETC1_SUPPORT',
djsollenf379ad32015-01-27 09:01:01 -0800392 # We can't use the skia_shared_library gyp setting because we need expose
393 # this define globally and the the implemention define as a cflag.
394 'SKIA_DLL',
scroggo230d4ac2015-03-26 07:15:55 -0700395 'SK_PRINT_CODEC_MESSAGES',
borenet243406e2015-07-22 13:29:25 -0700396 ],
397 }],
398
399 ['skia_use_android_framework_defines', {
400 # Add these defines when building for the Android framework, or when
401 # specifically requested. These should be temporary staging defines. Any
402 # permanent defines should be moved into the skia_android_framework block
403 # above.
404 'includes' : [
405 'skia_for_android_framework_defines.gypi',
406 ],
407 'defines': [
commit-bot@chromium.org22a1d962014-05-30 21:53:01 +0000408 '<@(skia_for_android_framework_defines)',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000409 ],
410 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000411
borenet48087572015-04-02 12:16:36 -0700412 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000413 {
414 'defines': [
415 'SK_SAMPLES_FOR_X',
416 'SK_BUILD_FOR_UNIX',
417 ],
418 'configurations': {
mtklein@google.com1fb04e22013-09-13 19:32:43 +0000419 'Coverage': {
borenet11271fe2015-07-06 07:43:58 -0700420 'conditions': [
421 [ 'skia_clang_build', {
422 'cflags': ['-fprofile-instr-generate', '-fcoverage-mapping'],
423 'ldflags': ['-fprofile-instr-generate', '-fcoverage-mapping'],
424 }, {
425 'cflags': ['--coverage'],
426 'ldflags': ['--coverage'],
427 }],
428 ],
mtklein@google.com1fb04e22013-09-13 19:32:43 +0000429 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000430 'Debug': {
seanpaul@google.com1134f982011-09-15 14:24:33 +0000431 },
432 'Release': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000433 'cflags': [
434 '-O<(skia_release_optimization_level)',
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000435 ],
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000436 'defines': [ 'NDEBUG' ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000437 },
438 },
borenet@google.coma37a5172012-08-09 20:44:32 +0000439 'conditions' : [
zachr@google.com28c27c82013-06-20 17:15:05 +0000440 [ 'skia_shared_lib', {
zachr@google.com28c27c82013-06-20 17:15:05 +0000441 'defines': [
zachr@google.com28c27c82013-06-20 17:15:05 +0000442 'SKIA_DLL',
443 'SKIA_IMPLEMENTATION=1',
444 ],
445 }],
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000446 # Enable asan, tsan, etc.
447 [ 'skia_sanitizer', {
borenet@google.com0d193092013-07-03 15:55:05 +0000448 'cflags': [
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000449 '-fsanitize=<(skia_sanitizer)',
borenet@google.com0d193092013-07-03 15:55:05 +0000450 ],
451 'ldflags': [
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000452 '-fsanitize=<(skia_sanitizer)',
bungeman@google.com1435f9f2013-09-25 22:39:22 +0000453 ],
mtklein@google.com3a19fb52013-10-09 16:12:23 +0000454 'conditions' : [
455 [ 'skia_sanitizer == "thread"', {
mtklein172b4552015-03-12 05:27:46 -0700456 'defines': [ 'THREAD_SANITIZER' ],
mtklein@google.com3a19fb52013-10-09 16:12:23 +0000457 }],
commit-bot@chromium.org05b1b532014-05-01 19:29:46 +0000458 [ 'skia_sanitizer == "undefined"', {
commit-bot@chromium.org05b1b532014-05-01 19:29:46 +0000459 'cflags_cc!': ['-fno-rtti'],
commit-bot@chromium.org05b1b532014-05-01 19:29:46 +0000460 }],
mtklein@google.com3a19fb52013-10-09 16:12:23 +0000461 ],
bungeman@google.com1435f9f2013-09-25 22:39:22 +0000462 }],
borenet@google.com47ae4b02013-08-21 18:02:50 +0000463 [ 'skia_clang_build', {
mtklein170e00d2014-06-30 12:33:11 -0700464 'cflags_cc': [
mtklein170e00d2014-06-30 12:33:11 -0700465 '-Wno-unknown-warning-option', # Allows unknown warnings.
466 '-Wno-deprecated', # From Qt, via debugger (older Clang).
467 '-Wno-deprecated-register', # From Qt, via debugger (newer Clang).
468 ],
borenet@google.com47ae4b02013-08-21 18:02:50 +0000469 'cflags': [
mtklein170e00d2014-06-30 12:33:11 -0700470 # Extra warnings we like but that only Clang knows about.
471 '-Wstring-conversion',
borenet@google.com47ae4b02013-08-21 18:02:50 +0000472 ],
commit-bot@chromium.org815d3602014-05-20 19:42:03 +0000473 'cflags!': [
474 '-mfpmath=sse', # Clang doesn't need to be told this, and sometimes gets confused.
475 ],
borenet@google.com47ae4b02013-08-21 18:02:50 +0000476 }],
commit-bot@chromium.org5003bde2013-10-25 18:14:54 +0000477 [ 'skia_keep_frame_pointer', {
478 'cflags': [ '-fno-omit-frame-pointer' ],
479 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000480 ],
481 },
482 ],
483
borenet@google.coma72aef82013-03-22 13:16:06 +0000484 [ 'skia_os == "mac"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000485 {
mtkleina34633f2014-08-19 13:32:59 -0700486 'defines': [ 'SK_BUILD_FOR_MAC' ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000487 'configurations': {
commit-bot@chromium.org866f4e32013-11-21 17:04:29 +0000488 'Coverage': {
489 'xcode_settings': {
490 'GCC_OPTIMIZATION_LEVEL': '0',
491 'GCC_GENERATE_TEST_COVERAGE_FILES': 'YES',
492 'GCC_INSTRUMENT_PROGRAM_FLOW_ARCS' : 'YES',
493 },
494 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000495 'Debug': {
mtkleina34633f2014-08-19 13:32:59 -0700496 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '0' },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000497 },
reed@google.come05cc8e2011-10-10 14:19:40 +0000498 'Release': {
mtkleina34633f2014-08-19 13:32:59 -0700499 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', },
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000500 'defines': [ 'NDEBUG' ],
reed@google.come05cc8e2011-10-10 14:19:40 +0000501 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000502 },
503 'xcode_settings': {
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000504 'conditions': [
mtkleindee3df92015-03-26 05:30:44 -0700505 [ 'skia_fast', { 'WARNING_CFLAGS': [ '<@(skia_fast_flags)' ] } ],
mtkleina34633f2014-08-19 13:32:59 -0700506 [ 'skia_warnings_as_errors', { 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES' }],
507 [ 'skia_arch_width == 32', { 'ARCHS': ['i386'] }],
508 [ 'skia_arch_width == 64', { 'ARCHS': ['x86_64'] }],
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000509 [ 'skia_osx_deployment_target==""', {
mtkleina34633f2014-08-19 13:32:59 -0700510 'MACOSX_DEPLOYMENT_TARGET': '10.6', # -mmacos-version-min, passed in env to ld.
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000511 }, {
512 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)',
513 }],
514 ],
mtklein65fd5992015-02-03 13:24:36 -0800515 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
mtklein94c41512014-09-12 17:07:34 -0700516 'GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS': 'YES', # -mssse3
517 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', # -fvisibility=hidden
518 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'NO', # -fvisibility-inlines-hidden
mtklein335a0ae2014-10-13 12:32:34 -0700519 'GCC_CW_ASM_SYNTAX': 'NO', # remove -fasm-blocks
520 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # remove -mpascal-strings
521 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'NO', # -Wno-invalid-offsetof
mtkleina34633f2014-08-19 13:32:59 -0700522 'WARNING_CFLAGS': [
523 '-Wall',
524 '-Wextra',
mtkleina07b2972015-01-23 07:01:26 -0800525 '-Winit-self',
526 '-Wpointer-arith',
527 '-Wsign-compare',
528
mtkleina34633f2014-08-19 13:32:59 -0700529 '-Wno-unused-parameter',
bungeman@google.com43b4ed52012-10-02 15:42:21 +0000530 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000531 },
532 },
533 ],
534
borenet@google.coma72aef82013-03-22 13:16:06 +0000535 [ 'skia_os == "ios"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000536 {
537 'defines': [
538 'SK_BUILD_FOR_IOS',
539 ],
borenet@google.coma72aef82013-03-22 13:16:06 +0000540 'conditions' : [
541 [ 'skia_warnings_as_errors', {
542 'xcode_settings': {
543 'OTHER_CPLUSPLUSFLAGS': [
544 '-Werror',
545 ],
546 },
547 }],
548 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000549 'configurations': {
550 'Debug': {
551 'xcode_settings': {
552 'GCC_OPTIMIZATION_LEVEL': '0',
553 },
554 },
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000555 'Release': {
556 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000557 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000558 },
559 'defines': [ 'NDEBUG' ],
560 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000561 },
562 'xcode_settings': {
commit-bot@chromium.orgae0054e2014-04-05 01:13:43 +0000563 'ARCHS': ['armv7'],
caryclark@google.com867cbd82012-09-20 15:45:41 +0000564 'CODE_SIGNING_REQUIRED': 'NO',
mtkleinea6075e2015-04-16 13:29:58 -0700565 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer: Google Development (3F4Y5873JF)',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000566 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)',
caryclark@google.com867cbd82012-09-20 15:45:41 +0000567 'SDKROOT': 'iphoneos',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000568 'TARGETED_DEVICE_FAMILY': '1,2',
mtklein335a0ae2014-10-13 12:32:34 -0700569 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'NO', # -Wno-invalid-offsetof
borenet@google.coma72aef82013-03-22 13:16:06 +0000570 'OTHER_CPLUSPLUSFLAGS': [
mtkleinf3cdce72015-02-05 09:23:56 -0800571 '-std=c++0x',
borenet@google.coma72aef82013-03-22 13:16:06 +0000572 '-fvisibility=hidden',
573 '-fvisibility-inlines-hidden',
574 ],
bsalomon@google.com89dec582012-09-28 18:33:11 +0000575 'GCC_THUMB_SUPPORT': 'NO',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000576 },
577 },
578 ],
chudy@google.combbad34d2012-08-13 14:26:36 +0000579
borenet@google.coma72aef82013-03-22 13:16:06 +0000580 [ 'skia_os == "android"',
djsollen@google.com58629292011-11-03 13:08:29 +0000581 {
582 'defines': [
djsollen@google.com58629292011-11-03 13:08:29 +0000583 'SK_BUILD_FOR_ANDROID',
djsollen@google.com968757e2014-04-11 13:09:21 +0000584
585 # Android Text Tuning
586 'SK_GAMMA_EXPONENT=1.4',
587 'SK_GAMMA_CONTRAST=0.0',
588 ],
589 # Android defines a fixed gamma exponent instead of using SRGB
590 'defines!': [
591 'SK_GAMMA_SRGB',
djsollen@google.com58629292011-11-03 13:08:29 +0000592 ],
scroggo@google.comeb629502014-02-04 16:08:48 +0000593 'configurations': {
594 'Debug': {
mtkleinc0591ca2014-11-21 14:42:35 -0800595 'cflags': ['-g']
scroggo@google.comeb629502014-02-04 16:08:48 +0000596 },
597 'Release': {
598 'cflags': ['-O2'],
scroggo@google.comeb629502014-02-04 16:08:48 +0000599 },
600 },
djsollen@google.com58629292011-11-03 13:08:29 +0000601 'libraries': [
djsollen@google.com318cf922011-11-08 19:03:43 +0000602 '-llog',
djsollen@google.com58629292011-11-03 13:08:29 +0000603 ],
djsollen@google.com44360bc2011-12-05 13:55:55 +0000604 'cflags': [
borenet@google.comde9ac142012-07-25 15:17:03 +0000605 '-fuse-ld=gold',
djsollen@google.com44360bc2011-12-05 13:55:55 +0000606 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000607 'conditions': [
scroggodf1c3372015-02-12 10:48:25 -0800608 [ '"x86" in skia_arch_type', {
djsollenbc893292014-07-24 13:53:56 -0700609 'cflags': [
610 '-mssse3',
611 ],
612 }],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000613 [ 'skia_android_framework', {
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000614 'cflags!': [
615 '-fuse-ld=gold',
scroggo7cd3f642015-02-12 13:27:40 -0800616 '-mssse3',
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000617 ],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000618 }],
djsollen@google.com52f02972013-06-03 12:10:19 +0000619 [ 'skia_shared_lib', {
djsollen@google.com52f02972013-06-03 12:10:19 +0000620 'defines': [
djsollen@google.com52f02972013-06-03 12:10:19 +0000621 'SKIA_DLL',
622 'SKIA_IMPLEMENTATION=1',
scroggoecce60b2014-07-09 07:26:40 -0700623 # Needed until we fix skbug.com/2440.
624 'SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG',
djsollen@google.com52f02972013-06-03 12:10:19 +0000625 ],
626 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000627 [ 'skia_profile_enabled == 1', {
628 'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'],
djsollen@google.com3839ca12011-11-03 17:31:41 +0000629 }],
chudy@google.combbad34d2012-08-13 14:26:36 +0000630 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000631 },
632 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000633
commit-bot@chromium.org199cf692014-05-08 15:29:57 +0000634 [ 'skia_moz2d', {
635 'defines': [
reed6518eaa2014-06-18 14:05:22 -0700636 # add flags here (e.g. SK_SUPPORT_LEGACY_...) needed by moz2d
commit-bot@chromium.org199cf692014-05-08 15:29:57 +0000637 ],
638 }],
639
mtklein4abc1862015-07-14 05:52:52 -0700640 [ 'sknx_no_simd', {
641 'defines': [ 'SKNX_NO_SIMD' ],
642 }],
643
seanpaul@google.com1134f982011-09-15 14:24:33 +0000644 ], # end 'conditions'
caryclark@google.com4588ce82012-09-26 15:48:43 +0000645 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
646 'xcode_settings': {
647 'SYMROOT': '<(DEPTH)/xcodebuild',
648 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000649}