blob: 8221c94680a645a68b91927d83276065b042fb69 [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)',
jvanverth4736e142014-11-07 07:12:46 -080012 'SK_FORCE_DISTANCE_FIELD_TEXT=<(skia_force_distance_field_text)',
chudy@google.combbad34d2012-08-13 14:26:36 +000013 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000014 'conditions' : [
scroggoc0bc9132014-07-22 12:09:30 -070015 ['skia_pic', {
16 'cflags': [
17 '-fPIC',
18 ],
19 'conditions' : [
20 # FIXME: The reason we don't do this on Android is due to the way
21 # we build the executables/skia_launcher on Android. See
22 # https://codereview.chromium.org/406613003/diff/1/gyp/common_conditions.gypi#newcode455
23 ['skia_os != "android"', {
24 'target_conditions': [
25 [ '_type == "executable"', {
26 'cflags': [ '-fPIE' ],
27 'ldflags': [ '-pie' ],
28 }],
29 ],
30 }],
31 ],
32 }],
commit-bot@chromium.org6f2d4d42014-04-02 15:03:56 +000033
commit-bot@chromium.org6a106ce2014-05-20 19:02:55 +000034 # As of M35, Chrome requires SSE2 on x86 (and SSSE3 on Mac).
35 [ 'skia_arch_type == "x86"', {
36 'cflags': [
37 '-msse2',
38 '-mfpmath=sse',
39 ],
40 }],
41
borenet@google.coma72aef82013-03-22 13:16:06 +000042 [ 'skia_os == "win"',
seanpaul@google.com1134f982011-09-15 14:24:33 +000043 {
44 'defines': [
45 'SK_BUILD_FOR_WIN32',
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000046 '_CRT_SECURE_NO_WARNINGS',
senorblanco@chromium.org5f47a392012-07-12 00:34:39 +000047 'GR_GL_FUNCTION_TYPE=__stdcall',
bungemanb7069e92015-07-21 14:14:30 -070048 '_HAS_EXCEPTIONS=0',
seanpaul@google.com1134f982011-09-15 14:24:33 +000049 ],
commit-bot@chromium.org50ca12b2014-05-07 19:56:27 +000050 'msvs_disabled_warnings': [
bungemanf5484442014-09-10 07:49:05 -070051 4275, # An exported class was derived from a class that was not exported
52 4345, # This is an FYI about a behavior change from long ago. Chrome stifles it too.
53 4355, # 'this' used in base member initializer list. Off by default in newer compilers.
commit-bot@chromium.org50ca12b2014-05-07 19:56:27 +000054 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000055 'msvs_cygwin_shell': 0,
56 'msvs_settings': {
57 'VCCLCompilerTool': {
bsalomon@google.comb58a6392013-03-21 20:29:05 +000058 'WarningLevel': '3',
59 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb',
seanpaul@google.com1134f982011-09-15 14:24:33 +000060 'DebugInformationFormat': '3',
bsalomon@google.comb58a6392013-03-21 20:29:05 +000061 'ExceptionHandling': '0',
62 'AdditionalOptions': [ '/MP', ],
seanpaul@google.com1134f982011-09-15 14:24:33 +000063 },
64 'VCLinkerTool': {
commit-bot@chromium.org4521add2014-04-30 20:47:22 +000065 'LargeAddressAware': 2, # 2 means "Yes, please let me use more RAM on 32-bit builds."
seanpaul@google.com1134f982011-09-15 14:24:33 +000066 'AdditionalDependencies': [
67 'OpenGL32.lib',
68 'usp10.lib',
bungeman@google.comf51e1252013-06-05 18:35:22 +000069
70 # Prior to gyp r1584, the following were included automatically.
71 'kernel32.lib',
72 'gdi32.lib',
73 'winspool.lib',
74 'comdlg32.lib',
75 'advapi32.lib',
76 'shell32.lib',
77 'ole32.lib',
78 'oleaut32.lib',
79 'user32.lib',
80 'uuid.lib',
81 'odbc32.lib',
82 'odbccp32.lib',
bsalomon@google.combbba7842013-06-06 18:34:13 +000083 'DelayImp.lib',
seanpaul@google.com1134f982011-09-15 14:24:33 +000084 ],
85 },
86 },
87 'configurations': {
88 'Debug': {
89 'msvs_settings': {
90 'VCCLCompilerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000091 'DebugInformationFormat': '4', # editAndContiue (/ZI)
seanpaul@google.com1134f982011-09-15 14:24:33 +000092 'Optimization': '0', # optimizeDisabled (/Od)
93 'PreprocessorDefinitions': ['_DEBUG'],
94 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd)
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000095 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +000096 },
97 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +000098 'GenerateDebugInformation': 'true', # /DEBUG
99 'LinkIncremental': '2', # /INCREMENTAL
seanpaul@google.com1134f982011-09-15 14:24:33 +0000100 },
101 },
102 },
103 'Release': {
104 'msvs_settings': {
105 'VCCLCompilerTool': {
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000106 'DebugInformationFormat': '3', # programDatabase (/Zi)
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000107 'Optimization': '<(skia_release_optimization_level)',
bsalomon@google.com8b5abec2011-09-28 14:32:01 +0000108 # Changing the floating point model requires rebaseling gm images
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000109 #'FloatingPointModel': '2', # fast (/fp:fast)
110 'FavorSizeOrSpeed': '1', # speed (/Ot)
seanpaul@google.com1134f982011-09-15 14:24:33 +0000111 'PreprocessorDefinitions': ['NDEBUG'],
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000112 'RuntimeLibrary': '2', # rtMultiThreadedDLL (/MD)
bsalomon@google.com9aabfc72012-05-31 14:12:46 +0000113 'EnableEnhancedInstructionSet': '2',# /arch:SSE2
114 'RuntimeTypeInfo': 'false', # /GR-
seanpaul@google.com1134f982011-09-15 14:24:33 +0000115 },
116 'VCLinkerTool': {
bsalomon@google.com8b5abec2011-09-28 14:32:01 +0000117 'GenerateDebugInformation': 'true', # /DEBUG
bungeman@google.com983297e2011-10-03 19:36:51 +0000118 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000119 },
120 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000121 },
122 'conditions' : [
epoger@google.com58d69d82014-04-01 07:02:41 +0000123 # Gyp's ninja generator depends on these specially named
124 # configurations to build 64-bit on Windows.
halcanary6950de62015-11-07 05:29:00 -0800125 # See https://bug.skia.org/2348
epoger@google.com58d69d82014-04-01 07:02:41 +0000126 #
127 # We handle the 64- vs 32-bit variations elsewhere, so I think it's
128 # OK for us to just make these inherit non-archwidth-specific
129 # configurations without modification.
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000130 #
halcanary6950de62015-11-07 05:29:00 -0800131 # See https://bug.skia.org/2442 : These targets cause problems in the
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000132 # MSVS build, so only include them if gyp is generating a ninja build.
133 [ '"ninja" in "<!(echo %GYP_GENERATORS%)"', {
134 'configurations': {
135 'Debug_x64': {
136 'inherit_from': ['Debug'],
bsalomon6740feb2014-11-13 13:47:06 -0800137 'msvs_settings': {
138 'VCCLCompilerTool': {
139 # /ZI is not supported on 64bit
140 'DebugInformationFormat': '3', # programDatabase (/Zi)
141 },
142 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000143 },
144 'Release_x64': {
145 'inherit_from': ['Release'],
bsalomon26bdfcb2014-11-19 08:59:58 -0800146 'msvs_settings': {
147 'VCCLCompilerTool': {
148 # Don't specify /arch. SSE2 is implied by 64bit and specifying it warns.
149 'EnableEnhancedInstructionSet': '0', #
150 },
151 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000152 },
153 'Release_Developer_x64': {
154 'inherit_from': ['Release_Developer'],
bsalomon26bdfcb2014-11-19 08:59:58 -0800155 'msvs_settings': {
156 'VCCLCompilerTool': {
157 # Don't specify /arch. SSE2 is implied by 64bit and specifying it warns.
158 'EnableEnhancedInstructionSet': '0', #
159 },
160 },
commit-bot@chromium.orgd10ec402014-04-22 20:05:35 +0000161 },
162 },
163 }],
Brian Salomon4239fc22015-07-27 09:10:36 -0400164 [ 'skia_arch_type == "x86_64"', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000165 'msvs_configuration_platform': 'x64',
borenet@google.coma72aef82013-03-22 13:16:06 +0000166 }],
Brian Salomon4239fc22015-07-27 09:10:36 -0400167 [ 'skia_arch_type == "x86"', {
borenet@google.coma72aef82013-03-22 13:16:06 +0000168 'msvs_configuration_platform': 'Win32',
169 }],
170 [ 'skia_warnings_as_errors', {
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000171 'msvs_settings': {
172 'VCCLCompilerTool': {
borenet@google.coma72aef82013-03-22 13:16:06 +0000173 'WarnAsError': 'true',
174 'AdditionalOptions': [
175 '/we4189', # initialized but unused var warning
176 ],
bsalomon@google.com1d03ba92013-01-08 20:40:22 +0000177 },
178 },
borenet@google.comb7961192012-08-20 18:58:26 +0000179 }],
commit-bot@chromium.org5a6c2d82013-06-14 17:10:09 +0000180 [ 'skia_win_exceptions', {
181 'msvs_settings': {
182 'VCCLCompilerTool': {
183 'AdditionalOptions': [
184 '/EHsc',
185 ],
186 },
187 },
188 }],
bsalomonda07a082014-06-26 12:56:28 -0700189 [ 'skia_win_ltcg', {
190 'configurations': {
191 'Release': {
192 'msvs_settings': {
193 'VCCLCompilerTool': {
194 'WholeProgramOptimization': 'true', #/GL
195 },
196 'VCLinkerTool': {
197 'LinkTimeCodeGeneration': '1', # useLinkTimeCodeGeneration /LTCG
198 },
199 'VCLibrarianTool': {
200 'LinkTimeCodeGeneration': 'true', # useLinkTimeCodeGeneration /LTCG
201 },
202 },
203 },
204 },
205 }],
borenet@google.comb7961192012-08-20 18:58:26 +0000206 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000207 },
208 ],
209
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000210 # The following section is common to linux + derivatives and android
borenet48087572015-04-02 12:16:36 -0700211 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "android"]',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000212 {
mtklein@google.comf1077f92013-11-20 15:13:49 +0000213 'cflags': [
mtklein@google.comdad70702013-11-20 18:06:10 +0000214 '-g',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000215 '-fno-exceptions',
216 '-fstrict-aliasing',
mtklein@google.comdad70702013-11-20 18:06:10 +0000217
mtklein@google.comf1077f92013-11-20 15:13:49 +0000218 '-Wall',
219 '-Wextra',
220 '-Winit-self',
221 '-Wpointer-arith',
mtkleina07b2972015-01-23 07:01:26 -0800222 '-Wsign-compare',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000223
224 '-Wno-unused-parameter',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000225 ],
226 'cflags_cc': [
mtkleinf3cdce72015-02-05 09:23:56 -0800227 '-std=c++11',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000228 '-fno-rtti',
mtklein61a81e32015-09-09 10:46:20 -0700229 '-fno-threadsafe-statics',
mtklein@google.comf1077f92013-11-20 15:13:49 +0000230 '-Wnon-virtual-dtor',
231 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000232 'conditions': [
mtkleindee3df92015-03-26 05:30:44 -0700233 [ 'skia_fast', { 'cflags': [ '<@(skia_fast_flags)' ] }],
qiankun.miaod312a042014-07-07 09:47:24 -0700234 [ 'skia_os != "chromeos"', {
235 'conditions': [
scroggo7cd3f642015-02-12 13:27:40 -0800236 [ 'skia_arch_type == "x86_64" and not skia_android_framework', {
qiankun.miaod312a042014-07-07 09:47:24 -0700237 'cflags': [
238 '-m64',
239 ],
240 'ldflags': [
241 '-m64',
242 ],
243 }],
scroggo7cd3f642015-02-12 13:27:40 -0800244 [ 'skia_arch_type == "x86" and not skia_android_framework', {
qiankun.miaod312a042014-07-07 09:47:24 -0700245 'cflags': [
246 '-m32',
247 ],
248 'ldflags': [
249 '-m32',
250 ],
251 }],
252 ],
253 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000254 [ 'skia_warnings_as_errors', {
255 'cflags': [
256 '-Werror',
257 ],
258 }],
commit-bot@chromium.org35d48722014-02-13 18:36:36 +0000259 # For profiling; reveals some costs, exaggerates others (e.g. trivial setters & getters).
260 [ 'skia_disable_inlining', {
261 'cflags': [
262 '-fno-inline',
263 '-fno-default-inline',
264 '-finline-limit=0',
265 '-fno-omit-frame-pointer',
266 ],
267 }],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000268 [ 'skia_arch_type == "arm" and arm_version >= 7', {
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000269 'cflags': [
270 '-march=armv7-a',
mtklein2d33a1d2015-04-02 10:47:57 -0700271 '-mthumb',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000272 ],
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000273 'ldflags': [
274 '-march=armv7-a',
275 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000276 'conditions': [
277 [ 'arm_neon == 1', {
278 'defines': [
djsollen21769c52014-08-01 05:32:32 -0700279 'SK_ARM_HAS_NEON',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000280 ],
281 'cflags': [
282 '-mfpu=neon',
283 ],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000284 }],
285 [ 'arm_neon_optional == 1', {
286 'defines': [
djsollen21769c52014-08-01 05:32:32 -0700287 'SK_ARM_HAS_OPTIONAL_NEON',
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000288 ],
289 }],
mtklein19996ed2014-11-21 06:48:43 -0800290 [ 'skia_os != "chromeos" and skia_os != "linux"', {
borenet@google.come2b90372013-07-11 18:46:30 +0000291 'cflags': [
292 '-mfloat-abi=softfp',
293 ],
294 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000295 ],
296 }],
Brian Salomon4239fc22015-07-27 09:10:36 -0400297 [ '"mips" in skia_arch_type', {
mtkleinf62833d2015-08-05 14:17:32 -0700298 'cflags': [ '-EL' ],
djordje.pesutaaf1df62014-06-06 14:09:12 -0700299 'conditions': [
300 [ 'mips_arch_variant == "mips32r2"', {
mtkleinf62833d2015-08-05 14:17:32 -0700301 'cflags': [ '-march=mips32r2' ],
djordje.pesutaaf1df62014-06-06 14:09:12 -0700302 'conditions': [
mtkleinf62833d2015-08-05 14:17:32 -0700303 [ 'mips_dsp == 1', { 'cflags': [ '-mdsp' ] }],
304 [ 'mips_dsp == 2', { 'cflags': [ '-mdspr2' ] }],
djordje.pesutaaf1df62014-06-06 14:09:12 -0700305 ],
306 }],
307 ],
308 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000309 ],
310 },
311 ],
312
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000313 ['skia_android_framework', {
314 'cflags': [
315 # Skia does not enforce this usage pattern so we disable it here to avoid
316 # unecessary log spew when building
317 '-Wno-unused-parameter',
318
319 # Android's -D_FORTIFY_SOURCE=2 extensions are incompatibile with SkString.
320 # Revert to -D_FORTIFY_SOURCE=1
321 '-U_FORTIFY_SOURCE',
322 '-D_FORTIFY_SOURCE=1',
djsollenf379ad32015-01-27 09:01:01 -0800323
mtklein9a106ba2015-08-14 10:03:45 -0700324 # We can't use the skia_shared_lib gyp setting because we need to
djsollenf379ad32015-01-27 09:01:01 -0800325 # isolate this define to Skia sources. CFLAGS are local to Android.mk
326 # and ensures that this define is not exported to clients of the library
327 '-DSKIA_IMPLEMENTATION=1',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000328 ],
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000329 # Remove flags which are either unnecessary or problematic for the
330 # Android framework build. Many of these flags are removed simply because
331 # they were not previously in the Android framework makefile, and we did
332 # did not intend to add them when generating the makefile.
333 # TODO (scroggo): Investigate whether any of these flags are actually
334 # needed/would be beneficial.
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000335 'cflags!': [
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000336 # Android has one makefile, used for both debugging (after manual
337 # modification) and release. Turn off debug info by default.
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000338 '-g',
339 '-march=armv7-a',
340 '-mthumb',
341 '-mfpu=neon',
342 '-mfloat-abi=softfp',
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000343 '-fno-exceptions',
344 '-fstrict-aliasing',
345 # Remove flags to turn on warnings, since most people building Android
346 # are not focused on Skia and do not need the extra warning info.
347 '-Wall',
348 '-Wextra',
349 '-Winit-self',
350 '-Wpointer-arith',
mtkleina07b2972015-01-23 07:01:26 -0800351 '-Wsign-compare',
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000352 ],
353 'cflags_cc!': [
354 '-fno-rtti',
355 '-Wnon-virtual-dtor',
commit-bot@chromium.orge72a4082014-02-28 16:07:39 +0000356 ],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000357 'defines': [
358 'DCT_IFAST_SUPPORTED',
359 # using freetype's embolden allows us to adjust fake bold settings at
360 # draw-time, at which point we know which SkTypeface is being drawn
361 'SK_USE_FREETYPE_EMBOLDEN',
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000362 'SK_SFNTLY_SUBSETTER "sample/chromium/font_subsetter.h"',
363 # When built as part of the system image we can enable certian non-NDK
364 # compliant optimizations.
365 'SK_BUILD_FOR_ANDROID_FRAMEWORK',
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000366 # Optimizations for chromium (m30)
367 'GR_GL_CUSTOM_SETUP_HEADER "gl/GrGLConfig_chrome.h"',
commit-bot@chromium.orgba0c5ea2014-03-28 15:59:04 +0000368 'SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024)',
commit-bot@chromium.orge3c400f2014-05-28 21:44:05 +0000369 'SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (512 * 1024)',
krajcevski8c111f72014-06-02 13:51:34 -0700370 'SK_IGNORE_ETC1_SUPPORT',
mtklein9a106ba2015-08-14 10:03:45 -0700371 # We can't use the skia_shared_lib gyp setting because we need expose
djsollenf379ad32015-01-27 09:01:01 -0800372 # this define globally and the the implemention define as a cflag.
373 'SKIA_DLL',
scroggo230d4ac2015-03-26 07:15:55 -0700374 'SK_PRINT_CODEC_MESSAGES',
borenet243406e2015-07-22 13:29:25 -0700375 ],
376 }],
377
378 ['skia_use_android_framework_defines', {
379 # Add these defines when building for the Android framework, or when
380 # specifically requested. These should be temporary staging defines. Any
381 # permanent defines should be moved into the skia_android_framework block
382 # above.
383 'includes' : [
384 'skia_for_android_framework_defines.gypi',
385 ],
386 'defines': [
commit-bot@chromium.org22a1d962014-05-30 21:53:01 +0000387 '<@(skia_for_android_framework_defines)',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000388 ],
389 }],
mtkleind7b25c72015-11-12 08:41:40 -0800390
joshualitt47fdae92015-11-09 12:30:05 -0800391 [ 'skia_use_sdl == 1',
392 {
393 'defines': [ 'SK_USE_SDL' ],
394 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000395
joshualittf16f88b2015-12-02 13:00:37 -0800396 [ 'skia_dump_stats == 1',
397 {
398 'defines': [ 'SK_DUMP_STATS'],
399 }],
400
borenet48087572015-04-02 12:16:36 -0700401 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000402 {
403 'defines': [
404 'SK_SAMPLES_FOR_X',
405 'SK_BUILD_FOR_UNIX',
406 ],
407 'configurations': {
mtklein@google.com1fb04e22013-09-13 19:32:43 +0000408 'Coverage': {
borenet11271fe2015-07-06 07:43:58 -0700409 'conditions': [
410 [ 'skia_clang_build', {
411 'cflags': ['-fprofile-instr-generate', '-fcoverage-mapping'],
412 'ldflags': ['-fprofile-instr-generate', '-fcoverage-mapping'],
413 }, {
414 'cflags': ['--coverage'],
415 'ldflags': ['--coverage'],
416 }],
417 ],
mtklein@google.com1fb04e22013-09-13 19:32:43 +0000418 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000419 'Debug': {
seanpaul@google.com1134f982011-09-15 14:24:33 +0000420 },
421 'Release': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000422 'cflags': [
423 '-O<(skia_release_optimization_level)',
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000424 ],
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000425 'defines': [ 'NDEBUG' ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000426 },
427 },
borenet@google.coma37a5172012-08-09 20:44:32 +0000428 'conditions' : [
zachr@google.com28c27c82013-06-20 17:15:05 +0000429 [ 'skia_shared_lib', {
zachr@google.com28c27c82013-06-20 17:15:05 +0000430 'defines': [
zachr@google.com28c27c82013-06-20 17:15:05 +0000431 'SKIA_DLL',
432 'SKIA_IMPLEMENTATION=1',
433 ],
434 }],
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000435 # Enable asan, tsan, etc.
436 [ 'skia_sanitizer', {
mtklein632199e2015-12-09 12:39:01 -0800437 'cflags_cc!': [ '-fno-rtti' ], # vptr needs rtti
borenet@google.com0d193092013-07-03 15:55:05 +0000438 'cflags': [
mtkleinbb5b77d2015-12-08 14:26:17 -0800439 '-fsanitize=<(skia_sanitizer)', # Turn on sanitizers.
440 '-fno-sanitize-recover=<(skia_sanitizer)', # Make any failure fatal.
441 '-fsanitize-blacklist=<(skia_sanitizer_blacklist)', # Compile in our blacklist.
442 '-include <(skia_sanitizer_blacklist)', # Make every .cpp depend on it.
borenet@google.com0d193092013-07-03 15:55:05 +0000443 ],
mtklein632199e2015-12-09 12:39:01 -0800444 'ldflags': [ '-fsanitize=<(skia_sanitizer)' ],
mtklein@google.com3a19fb52013-10-09 16:12:23 +0000445 'conditions' : [
446 [ 'skia_sanitizer == "thread"', {
mtklein172b4552015-03-12 05:27:46 -0700447 'defines': [ 'THREAD_SANITIZER' ],
mtklein@google.com3a19fb52013-10-09 16:12:23 +0000448 }],
449 ],
bungeman@google.com1435f9f2013-09-25 22:39:22 +0000450 }],
borenet@google.com47ae4b02013-08-21 18:02:50 +0000451 [ 'skia_clang_build', {
mtklein170e00d2014-06-30 12:33:11 -0700452 'cflags_cc': [
mtklein170e00d2014-06-30 12:33:11 -0700453 '-Wno-unknown-warning-option', # Allows unknown warnings.
454 '-Wno-deprecated', # From Qt, via debugger (older Clang).
455 '-Wno-deprecated-register', # From Qt, via debugger (newer Clang).
456 ],
borenet@google.com47ae4b02013-08-21 18:02:50 +0000457 'cflags': [
mtklein170e00d2014-06-30 12:33:11 -0700458 # Extra warnings we like but that only Clang knows about.
459 '-Wstring-conversion',
borenet@google.com47ae4b02013-08-21 18:02:50 +0000460 ],
commit-bot@chromium.org815d3602014-05-20 19:42:03 +0000461 'cflags!': [
462 '-mfpmath=sse', # Clang doesn't need to be told this, and sometimes gets confused.
463 ],
borenet@google.com47ae4b02013-08-21 18:02:50 +0000464 }],
commit-bot@chromium.org5003bde2013-10-25 18:14:54 +0000465 [ 'skia_keep_frame_pointer', {
466 'cflags': [ '-fno-omit-frame-pointer' ],
467 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000468 ],
469 },
470 ],
471
borenet@google.coma72aef82013-03-22 13:16:06 +0000472 [ 'skia_os == "mac"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000473 {
mtkleina34633f2014-08-19 13:32:59 -0700474 'defines': [ 'SK_BUILD_FOR_MAC' ],
hendrikw9a740412015-10-28 08:42:29 -0700475 'conditions': [
476 # ANGLE for mac hits -Wunneeded-internal-declaration if this isn't set.
477 [ 'skia_angle', { 'defines': [ 'YY_NO_INPUT' ], } ],
478 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000479 'configurations': {
commit-bot@chromium.org866f4e32013-11-21 17:04:29 +0000480 'Coverage': {
481 'xcode_settings': {
482 'GCC_OPTIMIZATION_LEVEL': '0',
483 'GCC_GENERATE_TEST_COVERAGE_FILES': 'YES',
484 'GCC_INSTRUMENT_PROGRAM_FLOW_ARCS' : 'YES',
485 },
486 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000487 'Debug': {
mtkleina34633f2014-08-19 13:32:59 -0700488 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '0' },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000489 },
reed@google.come05cc8e2011-10-10 14:19:40 +0000490 'Release': {
mtkleina34633f2014-08-19 13:32:59 -0700491 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', },
senorblanco@chromium.org7288c492012-01-19 19:59:22 +0000492 'defines': [ 'NDEBUG' ],
reed@google.come05cc8e2011-10-10 14:19:40 +0000493 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000494 },
495 'xcode_settings': {
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000496 'conditions': [
mtkleindee3df92015-03-26 05:30:44 -0700497 [ 'skia_fast', { 'WARNING_CFLAGS': [ '<@(skia_fast_flags)' ] } ],
mtkleina34633f2014-08-19 13:32:59 -0700498 [ 'skia_warnings_as_errors', { 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES' }],
Brian Salomon4239fc22015-07-27 09:10:36 -0400499 [ 'skia_arch_type == "x86"', { 'ARCHS': ['i386'] }],
500 [ 'skia_arch_type == "x86_64"', { 'ARCHS': ['x86_64'] }],
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000501 [ 'skia_osx_deployment_target==""', {
mtkleind7b25c72015-11-12 08:41:40 -0800502 'MACOSX_DEPLOYMENT_TARGET': '10.7', # -mmacos-version-min, passed in env to ld.
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000503 }, {
504 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)',
505 }],
mtklein632199e2015-12-09 12:39:01 -0800506 [ 'skia_sanitizer', {
507 'GCC_ENABLE_CPP_RTTI': 'YES', # vptr needs rtti
508 'OTHER_CFLAGS': [
509 '-fsanitize=<(skia_sanitizer)', # Turn on sanitizers.
510 '-fno-sanitize-recover=<(skia_sanitizer)', # Make any failure fatal.
511 '-fsanitize-blacklist=<(skia_sanitizer_blacklist)', # Compile in our blacklist.
512 '-include <(skia_sanitizer_blacklist)', # Make every .cpp depend on it.
513 ],
514 # We want to pass -fsanitize=... to our final link call,
515 # but not to libtool. OTHER_LDFLAGS is passed to both.
516 # To trick GYP into doing what we want, we'll piggyback on
517 # LIBRARY_SEARCH_PATHS, producing "-L/usr/lib -fsanitize=...".
518 # The -L/usr/lib is redundant but innocuous: it's a default path.
519 'LIBRARY_SEARCH_PATHS': [ '/usr/lib -fsanitize=<(skia_sanitizer)'],
520 }],
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000521 ],
mtkleind7b25c72015-11-12 08:41:40 -0800522 'CLANG_CXX_LIBRARY': 'libc++',
mtklein65fd5992015-02-03 13:24:36 -0800523 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
mtklein61a81e32015-09-09 10:46:20 -0700524 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
525 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
526 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
mtklein94c41512014-09-12 17:07:34 -0700527 'GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS': 'YES', # -mssse3
528 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', # -fvisibility=hidden
529 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'NO', # -fvisibility-inlines-hidden
mtklein335a0ae2014-10-13 12:32:34 -0700530 'GCC_CW_ASM_SYNTAX': 'NO', # remove -fasm-blocks
531 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # remove -mpascal-strings
mtkleina34633f2014-08-19 13:32:59 -0700532 'WARNING_CFLAGS': [
533 '-Wall',
534 '-Wextra',
mtkleina07b2972015-01-23 07:01:26 -0800535 '-Winit-self',
536 '-Wpointer-arith',
537 '-Wsign-compare',
538
mtkleina34633f2014-08-19 13:32:59 -0700539 '-Wno-unused-parameter',
bungeman@google.com43b4ed52012-10-02 15:42:21 +0000540 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000541 },
542 },
543 ],
544
borenet@google.coma72aef82013-03-22 13:16:06 +0000545 [ 'skia_os == "ios"',
seanpaul@google.com1134f982011-09-15 14:24:33 +0000546 {
547 'defines': [
548 'SK_BUILD_FOR_IOS',
549 ],
borenet@google.coma72aef82013-03-22 13:16:06 +0000550 'conditions' : [
551 [ 'skia_warnings_as_errors', {
552 'xcode_settings': {
553 'OTHER_CPLUSPLUSFLAGS': [
554 '-Werror',
555 ],
556 },
557 }],
558 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000559 'configurations': {
560 'Debug': {
561 'xcode_settings': {
562 'GCC_OPTIMIZATION_LEVEL': '0',
563 },
564 },
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000565 'Release': {
566 'xcode_settings': {
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000567 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000568 },
569 'defines': [ 'NDEBUG' ],
570 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000571 },
572 'xcode_settings': {
commit-bot@chromium.orgae0054e2014-04-05 01:13:43 +0000573 'ARCHS': ['armv7'],
caryclark@google.com867cbd82012-09-20 15:45:41 +0000574 'CODE_SIGNING_REQUIRED': 'NO',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000575 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)',
caryclark@google.com867cbd82012-09-20 15:45:41 +0000576 'SDKROOT': 'iphoneos',
caryclark@google.com594dd3c2012-09-24 19:33:57 +0000577 'TARGETED_DEVICE_FAMILY': '1,2',
mtklein1e5cbf22015-11-16 16:20:34 -0800578
579 'CLANG_CXX_LIBRARY': 'libc++',
580 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
581 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
582 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
583 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
584 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', # -fvisibility=hidden
585 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'NO', # -fvisibility-inlines-hidden
586
587 'GCC_THUMB_SUPPORT': 'NO', # TODO(mtklein): why would we not want thumb?
seanpaul@google.com1134f982011-09-15 14:24:33 +0000588 },
589 },
590 ],
chudy@google.combbad34d2012-08-13 14:26:36 +0000591
borenet@google.coma72aef82013-03-22 13:16:06 +0000592 [ 'skia_os == "android"',
djsollen@google.com58629292011-11-03 13:08:29 +0000593 {
594 'defines': [
djsollen@google.com58629292011-11-03 13:08:29 +0000595 'SK_BUILD_FOR_ANDROID',
djsollen@google.com968757e2014-04-11 13:09:21 +0000596
597 # Android Text Tuning
598 'SK_GAMMA_EXPONENT=1.4',
599 'SK_GAMMA_CONTRAST=0.0',
600 ],
601 # Android defines a fixed gamma exponent instead of using SRGB
602 'defines!': [
603 'SK_GAMMA_SRGB',
djsollen@google.com58629292011-11-03 13:08:29 +0000604 ],
scroggo@google.comeb629502014-02-04 16:08:48 +0000605 'configurations': {
606 'Debug': {
mtkleinc0591ca2014-11-21 14:42:35 -0800607 'cflags': ['-g']
scroggo@google.comeb629502014-02-04 16:08:48 +0000608 },
609 'Release': {
610 'cflags': ['-O2'],
scroggo@google.comeb629502014-02-04 16:08:48 +0000611 },
612 },
djsollen@google.com58629292011-11-03 13:08:29 +0000613 'libraries': [
djsollen@google.com318cf922011-11-08 19:03:43 +0000614 '-llog',
djsollen@google.com58629292011-11-03 13:08:29 +0000615 ],
djsollen@google.com44360bc2011-12-05 13:55:55 +0000616 'cflags': [
borenet@google.comde9ac142012-07-25 15:17:03 +0000617 '-fuse-ld=gold',
djsollen@google.com44360bc2011-12-05 13:55:55 +0000618 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000619 'conditions': [
scroggodf1c3372015-02-12 10:48:25 -0800620 [ '"x86" in skia_arch_type', {
djsollenbc893292014-07-24 13:53:56 -0700621 'cflags': [
622 '-mssse3',
623 ],
624 }],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000625 [ 'skia_android_framework', {
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000626 'cflags!': [
627 '-fuse-ld=gold',
scroggo7cd3f642015-02-12 13:27:40 -0800628 '-mssse3',
commit-bot@chromium.org2fe641b2014-03-25 15:14:18 +0000629 ],
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000630 }],
djsollen@google.com52f02972013-06-03 12:10:19 +0000631 [ 'skia_shared_lib', {
djsollen@google.com52f02972013-06-03 12:10:19 +0000632 'defines': [
djsollen@google.com52f02972013-06-03 12:10:19 +0000633 'SKIA_DLL',
634 'SKIA_IMPLEMENTATION=1',
halcanary6950de62015-11-07 05:29:00 -0800635 # Needed until we fix https://bug.skia.org/2440 .
scroggoecce60b2014-07-09 07:26:40 -0700636 'SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG',
djsollen@google.com52f02972013-06-03 12:10:19 +0000637 ],
638 }],
commit-bot@chromium.org183f7f52013-07-11 12:48:14 +0000639 [ 'skia_profile_enabled == 1', {
640 'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'],
djsollen@google.com3839ca12011-11-03 17:31:41 +0000641 }],
chudy@google.combbad34d2012-08-13 14:26:36 +0000642 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000643 },
644 ],
seanpaul@google.com1134f982011-09-15 14:24:33 +0000645
commit-bot@chromium.org199cf692014-05-08 15:29:57 +0000646 [ 'skia_moz2d', {
647 'defines': [
reed6518eaa2014-06-18 14:05:22 -0700648 # add flags here (e.g. SK_SUPPORT_LEGACY_...) needed by moz2d
commit-bot@chromium.org199cf692014-05-08 15:29:57 +0000649 ],
650 }],
651
hendrikw855dc932015-10-27 10:04:34 -0700652 [ 'skia_command_buffer and skia_os == "linux"', {
hendrikwb1ac52f2015-10-01 18:29:34 -0700653 'ldflags': [
654 '-Wl,-rpath,\$$ORIGIN/lib',
655 ],
656 }],
657
hendrikw855dc932015-10-27 10:04:34 -0700658 [ 'skia_command_buffer and skia_os == "mac"', {
659 'xcode_settings': {
660 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'],
661 },
662 }],
663
seanpaul@google.com1134f982011-09-15 14:24:33 +0000664 ], # end 'conditions'
caryclark@google.com4588ce82012-09-26 15:48:43 +0000665 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
666 'xcode_settings': {
667 'SYMROOT': '<(DEPTH)/xcodebuild',
668 },
seanpaul@google.com1134f982011-09-15 14:24:33 +0000669}