scroggo | 3e56227 | 2015-03-25 10:22:41 -0700 | [diff] [blame] | 1 | # 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. |
mtklein | dee3df9 | 2015-03-26 05:30:44 -0700 | [diff] [blame] | 5 | |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 6 | # conditions used in both common.gypi and skia.gyp in chromium |
| 7 | # |
| 8 | { |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 9 | 'defines': [ |
| 10 | 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', |
mtklein@google.com | dad7070 | 2013-11-20 18:06:10 +0000 | [diff] [blame] | 11 | 'SK_SUPPORT_GPU=<(skia_gpu)', |
jvanverth | 4736e14 | 2014-11-07 07:12:46 -0800 | [diff] [blame] | 12 | 'SK_FORCE_DISTANCE_FIELD_TEXT=<(skia_force_distance_field_text)', |
mtklein | 8d7f5c3 | 2016-08-01 09:22:12 -0700 | [diff] [blame] | 13 | |
msarett | ad3a5c6 | 2016-05-06 07:21:26 -0700 | [diff] [blame] | 14 | # Indicate that all dependency libraries are present. Clients that |
| 15 | # are missing some of the required decoding libraries may choose |
| 16 | # not to define these. This will disable some decoder and encoder |
| 17 | # features. |
| 18 | 'SK_HAS_GIF_LIBRARY', |
| 19 | 'SK_HAS_JPEG_LIBRARY', |
| 20 | 'SK_HAS_PNG_LIBRARY', |
| 21 | 'SK_HAS_WEBP_LIBRARY', |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 22 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 23 | 'conditions' : [ |
bsalomon | ad514d0 | 2016-03-02 14:44:15 -0800 | [diff] [blame] | 24 | [ 'skia_is_bot', { |
| 25 | 'defines': [ 'SK_IS_BOT' ], |
| 26 | }], |
scroggo | 1497f9f | 2016-02-02 11:56:33 -0800 | [diff] [blame] | 27 | [ 'skia_codec_decodes_raw', { |
| 28 | 'defines': [ |
| 29 | 'SK_CODEC_DECODES_RAW', |
| 30 | ], |
| 31 | }], |
msarett | ff17403 | 2016-07-19 11:17:55 -0700 | [diff] [blame] | 32 | [ 'skia_android_framework == 0', { |
| 33 | 'defines': [ |
| 34 | # Temporarily test against the QCMS library. |
| 35 | 'SK_TEST_QCMS', |
| 36 | ], |
| 37 | }], |
scroggo | c0bc913 | 2014-07-22 12:09:30 -0700 | [diff] [blame] | 38 | ['skia_pic', { |
| 39 | 'cflags': [ |
| 40 | '-fPIC', |
| 41 | ], |
| 42 | 'conditions' : [ |
| 43 | # FIXME: The reason we don't do this on Android is due to the way |
| 44 | # we build the executables/skia_launcher on Android. See |
| 45 | # https://codereview.chromium.org/406613003/diff/1/gyp/common_conditions.gypi#newcode455 |
| 46 | ['skia_os != "android"', { |
| 47 | 'target_conditions': [ |
| 48 | [ '_type == "executable"', { |
| 49 | 'cflags': [ '-fPIE' ], |
| 50 | 'ldflags': [ '-pie' ], |
| 51 | }], |
| 52 | ], |
| 53 | }], |
| 54 | ], |
| 55 | }], |
commit-bot@chromium.org | 6f2d4d4 | 2014-04-02 15:03:56 +0000 | [diff] [blame] | 56 | |
commit-bot@chromium.org | 6a106ce | 2014-05-20 19:02:55 +0000 | [diff] [blame] | 57 | # As of M35, Chrome requires SSE2 on x86 (and SSSE3 on Mac). |
| 58 | [ 'skia_arch_type == "x86"', { |
| 59 | 'cflags': [ |
| 60 | '-msse2', |
| 61 | '-mfpmath=sse', |
| 62 | ], |
| 63 | }], |
| 64 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 65 | [ 'skia_os == "win"', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 66 | { |
| 67 | 'defines': [ |
| 68 | 'SK_BUILD_FOR_WIN32', |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 69 | '_CRT_SECURE_NO_WARNINGS', |
senorblanco@chromium.org | 5f47a39 | 2012-07-12 00:34:39 +0000 | [diff] [blame] | 70 | 'GR_GL_FUNCTION_TYPE=__stdcall', |
bungeman | b7069e9 | 2015-07-21 14:14:30 -0700 | [diff] [blame] | 71 | '_HAS_EXCEPTIONS=0', |
egdaniel | 5dfe7bb | 2016-06-10 06:42:45 -0700 | [diff] [blame] | 72 | 'WIN32_LEAN_AND_MEAN', |
| 73 | 'NOMINMAX', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 74 | ], |
commit-bot@chromium.org | 50ca12b | 2014-05-07 19:56:27 +0000 | [diff] [blame] | 75 | 'msvs_disabled_warnings': [ |
bungeman | f548444 | 2014-09-10 07:49:05 -0700 | [diff] [blame] | 76 | 4275, # An exported class was derived from a class that was not exported |
| 77 | 4345, # This is an FYI about a behavior change from long ago. Chrome stifles it too. |
| 78 | 4355, # 'this' used in base member initializer list. Off by default in newer compilers. |
commit-bot@chromium.org | 50ca12b | 2014-05-07 19:56:27 +0000 | [diff] [blame] | 79 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 80 | 'msvs_cygwin_shell': 0, |
| 81 | 'msvs_settings': { |
| 82 | 'VCCLCompilerTool': { |
bsalomon@google.com | b58a639 | 2013-03-21 20:29:05 +0000 | [diff] [blame] | 83 | 'WarningLevel': '3', |
| 84 | 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 85 | 'DebugInformationFormat': '3', |
bsalomon@google.com | b58a639 | 2013-03-21 20:29:05 +0000 | [diff] [blame] | 86 | 'ExceptionHandling': '0', |
| 87 | 'AdditionalOptions': [ '/MP', ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 88 | }, |
| 89 | 'VCLinkerTool': { |
commit-bot@chromium.org | 4521add | 2014-04-30 20:47:22 +0000 | [diff] [blame] | 90 | 'LargeAddressAware': 2, # 2 means "Yes, please let me use more RAM on 32-bit builds." |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 91 | 'AdditionalDependencies': [ |
| 92 | 'OpenGL32.lib', |
| 93 | 'usp10.lib', |
bungeman@google.com | f51e125 | 2013-06-05 18:35:22 +0000 | [diff] [blame] | 94 | |
| 95 | # Prior to gyp r1584, the following were included automatically. |
| 96 | 'kernel32.lib', |
| 97 | 'gdi32.lib', |
| 98 | 'winspool.lib', |
| 99 | 'comdlg32.lib', |
| 100 | 'advapi32.lib', |
| 101 | 'shell32.lib', |
| 102 | 'ole32.lib', |
| 103 | 'oleaut32.lib', |
| 104 | 'user32.lib', |
| 105 | 'uuid.lib', |
| 106 | 'odbc32.lib', |
| 107 | 'odbccp32.lib', |
bsalomon@google.com | bbba784 | 2013-06-06 18:34:13 +0000 | [diff] [blame] | 108 | 'DelayImp.lib', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 109 | ], |
| 110 | }, |
| 111 | }, |
| 112 | 'configurations': { |
| 113 | 'Debug': { |
| 114 | 'msvs_settings': { |
| 115 | 'VCCLCompilerTool': { |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 116 | 'DebugInformationFormat': '4', # editAndContiue (/ZI) |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 117 | 'Optimization': '0', # optimizeDisabled (/Od) |
| 118 | 'PreprocessorDefinitions': ['_DEBUG'], |
| 119 | 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd) |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 120 | 'RuntimeTypeInfo': 'false', # /GR- |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 121 | }, |
| 122 | 'VCLinkerTool': { |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 123 | 'GenerateDebugInformation': 'true', # /DEBUG |
| 124 | 'LinkIncremental': '2', # /INCREMENTAL |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 125 | }, |
| 126 | }, |
| 127 | }, |
| 128 | 'Release': { |
| 129 | 'msvs_settings': { |
| 130 | 'VCCLCompilerTool': { |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 131 | 'DebugInformationFormat': '3', # programDatabase (/Zi) |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 132 | 'Optimization': '<(skia_release_optimization_level)', |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 133 | # Changing the floating point model requires rebaseling gm images |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 134 | #'FloatingPointModel': '2', # fast (/fp:fast) |
| 135 | 'FavorSizeOrSpeed': '1', # speed (/Ot) |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 136 | 'PreprocessorDefinitions': ['NDEBUG'], |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 137 | 'RuntimeLibrary': '2', # rtMultiThreadedDLL (/MD) |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 138 | 'EnableEnhancedInstructionSet': '2',# /arch:SSE2 |
| 139 | 'RuntimeTypeInfo': 'false', # /GR- |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 140 | }, |
| 141 | 'VCLinkerTool': { |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 142 | 'GenerateDebugInformation': 'true', # /DEBUG |
bungeman@google.com | 983297e | 2011-10-03 19:36:51 +0000 | [diff] [blame] | 143 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 144 | }, |
| 145 | }, |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 146 | }, |
| 147 | 'conditions' : [ |
epoger@google.com | 58d69d8 | 2014-04-01 07:02:41 +0000 | [diff] [blame] | 148 | # Gyp's ninja generator depends on these specially named |
| 149 | # configurations to build 64-bit on Windows. |
halcanary | 6950de6 | 2015-11-07 05:29:00 -0800 | [diff] [blame] | 150 | # See https://bug.skia.org/2348 |
epoger@google.com | 58d69d8 | 2014-04-01 07:02:41 +0000 | [diff] [blame] | 151 | # |
| 152 | # We handle the 64- vs 32-bit variations elsewhere, so I think it's |
| 153 | # OK for us to just make these inherit non-archwidth-specific |
| 154 | # configurations without modification. |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 155 | # |
halcanary | 6950de6 | 2015-11-07 05:29:00 -0800 | [diff] [blame] | 156 | # See https://bug.skia.org/2442 : These targets cause problems in the |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 157 | # MSVS build, so only include them if gyp is generating a ninja build. |
| 158 | [ '"ninja" in "<!(echo %GYP_GENERATORS%)"', { |
| 159 | 'configurations': { |
| 160 | 'Debug_x64': { |
| 161 | 'inherit_from': ['Debug'], |
bsalomon | 6740feb | 2014-11-13 13:47:06 -0800 | [diff] [blame] | 162 | 'msvs_settings': { |
| 163 | 'VCCLCompilerTool': { |
| 164 | # /ZI is not supported on 64bit |
| 165 | 'DebugInformationFormat': '3', # programDatabase (/Zi) |
| 166 | }, |
| 167 | }, |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 168 | }, |
| 169 | 'Release_x64': { |
| 170 | 'inherit_from': ['Release'], |
bsalomon | 26bdfcb | 2014-11-19 08:59:58 -0800 | [diff] [blame] | 171 | 'msvs_settings': { |
| 172 | 'VCCLCompilerTool': { |
| 173 | # Don't specify /arch. SSE2 is implied by 64bit and specifying it warns. |
| 174 | 'EnableEnhancedInstructionSet': '0', # |
| 175 | }, |
| 176 | }, |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 177 | }, |
| 178 | 'Release_Developer_x64': { |
| 179 | 'inherit_from': ['Release_Developer'], |
bsalomon | 26bdfcb | 2014-11-19 08:59:58 -0800 | [diff] [blame] | 180 | 'msvs_settings': { |
| 181 | 'VCCLCompilerTool': { |
| 182 | # Don't specify /arch. SSE2 is implied by 64bit and specifying it warns. |
| 183 | 'EnableEnhancedInstructionSet': '0', # |
| 184 | }, |
| 185 | }, |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 186 | }, |
| 187 | }, |
| 188 | }], |
Brian Salomon | 4239fc2 | 2015-07-27 09:10:36 -0400 | [diff] [blame] | 189 | [ 'skia_arch_type == "x86_64"', { |
bsalomon@google.com | 1d03ba9 | 2013-01-08 20:40:22 +0000 | [diff] [blame] | 190 | 'msvs_configuration_platform': 'x64', |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 191 | }], |
Brian Salomon | 4239fc2 | 2015-07-27 09:10:36 -0400 | [diff] [blame] | 192 | [ 'skia_arch_type == "x86"', { |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 193 | 'msvs_configuration_platform': 'Win32', |
| 194 | }], |
| 195 | [ 'skia_warnings_as_errors', { |
bsalomon@google.com | 1d03ba9 | 2013-01-08 20:40:22 +0000 | [diff] [blame] | 196 | 'msvs_settings': { |
| 197 | 'VCCLCompilerTool': { |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 198 | 'WarnAsError': 'true', |
| 199 | 'AdditionalOptions': [ |
| 200 | '/we4189', # initialized but unused var warning |
bungeman | 918090c | 2016-02-09 09:14:28 -0800 | [diff] [blame] | 201 | '/we4238', # taking address of rvalue |
| 202 | '/we4239', # assigning rvalues to non-const lvalues |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 203 | ], |
bsalomon@google.com | 1d03ba9 | 2013-01-08 20:40:22 +0000 | [diff] [blame] | 204 | }, |
| 205 | }, |
borenet@google.com | b796119 | 2012-08-20 18:58:26 +0000 | [diff] [blame] | 206 | }], |
commit-bot@chromium.org | 5a6c2d8 | 2013-06-14 17:10:09 +0000 | [diff] [blame] | 207 | [ 'skia_win_exceptions', { |
| 208 | 'msvs_settings': { |
| 209 | 'VCCLCompilerTool': { |
| 210 | 'AdditionalOptions': [ |
| 211 | '/EHsc', |
| 212 | ], |
| 213 | }, |
| 214 | }, |
| 215 | }], |
bsalomon | da07a08 | 2014-06-26 12:56:28 -0700 | [diff] [blame] | 216 | [ 'skia_win_ltcg', { |
| 217 | 'configurations': { |
| 218 | 'Release': { |
| 219 | 'msvs_settings': { |
| 220 | 'VCCLCompilerTool': { |
| 221 | 'WholeProgramOptimization': 'true', #/GL |
| 222 | }, |
| 223 | 'VCLinkerTool': { |
| 224 | 'LinkTimeCodeGeneration': '1', # useLinkTimeCodeGeneration /LTCG |
| 225 | }, |
| 226 | 'VCLibrarianTool': { |
| 227 | 'LinkTimeCodeGeneration': 'true', # useLinkTimeCodeGeneration /LTCG |
| 228 | }, |
| 229 | }, |
| 230 | }, |
| 231 | }, |
| 232 | }], |
borenet@google.com | b796119 | 2012-08-20 18:58:26 +0000 | [diff] [blame] | 233 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 234 | }, |
| 235 | ], |
| 236 | |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 237 | # The following section is common to linux + derivatives and android |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 238 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"]', |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 239 | { |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 240 | 'cflags': [ |
mtklein@google.com | dad7070 | 2013-11-20 18:06:10 +0000 | [diff] [blame] | 241 | '-g', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 242 | '-fno-exceptions', |
| 243 | '-fstrict-aliasing', |
mtklein@google.com | dad7070 | 2013-11-20 18:06:10 +0000 | [diff] [blame] | 244 | |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 245 | '-Wall', |
| 246 | '-Wextra', |
| 247 | '-Winit-self', |
| 248 | '-Wpointer-arith', |
mtklein | a07b297 | 2015-01-23 07:01:26 -0800 | [diff] [blame] | 249 | '-Wsign-compare', |
dvonbeck | 115e925 | 2016-06-15 09:13:50 -0700 | [diff] [blame] | 250 | '-Wvla', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 251 | |
| 252 | '-Wno-unused-parameter', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 253 | ], |
| 254 | 'cflags_cc': [ |
mtklein | f3cdce7 | 2015-02-05 09:23:56 -0800 | [diff] [blame] | 255 | '-std=c++11', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 256 | '-fno-rtti', |
mtklein | 61a81e3 | 2015-09-09 10:46:20 -0700 | [diff] [blame] | 257 | '-fno-threadsafe-statics', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 258 | '-Wnon-virtual-dtor', |
| 259 | ], |
mtklein | 673748a | 2016-03-07 11:05:15 -0800 | [diff] [blame] | 260 | 'ldflags': [ '-rdynamic' ], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 261 | 'conditions': [ |
mtklein | dee3df9 | 2015-03-26 05:30:44 -0700 | [diff] [blame] | 262 | [ 'skia_fast', { 'cflags': [ '<@(skia_fast_flags)' ] }], |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 263 | [ 'skia_arch_type == "x86_64" and not skia_android_framework', { |
| 264 | 'cflags': [ |
| 265 | '-m64', |
| 266 | ], |
| 267 | 'ldflags': [ |
| 268 | '-m64', |
| 269 | ], |
| 270 | }], |
| 271 | [ 'skia_arch_type == "x86" and not skia_android_framework', { |
| 272 | 'cflags': [ |
| 273 | '-m32', |
| 274 | ], |
| 275 | 'ldflags': [ |
| 276 | '-m32', |
qiankun.miao | d312a04 | 2014-07-07 09:47:24 -0700 | [diff] [blame] | 277 | ], |
| 278 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 279 | [ 'skia_warnings_as_errors', { |
| 280 | 'cflags': [ |
| 281 | '-Werror', |
| 282 | ], |
| 283 | }], |
commit-bot@chromium.org | 35d4872 | 2014-02-13 18:36:36 +0000 | [diff] [blame] | 284 | # For profiling; reveals some costs, exaggerates others (e.g. trivial setters & getters). |
| 285 | [ 'skia_disable_inlining', { |
| 286 | 'cflags': [ |
| 287 | '-fno-inline', |
| 288 | '-fno-default-inline', |
| 289 | '-finline-limit=0', |
| 290 | '-fno-omit-frame-pointer', |
| 291 | ], |
| 292 | }], |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 293 | [ 'skia_arch_type == "arm" and arm_version >= 7', { |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 294 | 'cflags': [ |
| 295 | '-march=armv7-a', |
mtklein | 2d33a1d | 2015-04-02 10:47:57 -0700 | [diff] [blame] | 296 | '-mthumb', |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 297 | ], |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 298 | 'ldflags': [ |
| 299 | '-march=armv7-a', |
| 300 | ], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 301 | 'conditions': [ |
| 302 | [ 'arm_neon == 1', { |
| 303 | 'defines': [ |
djsollen | 21769c5 | 2014-08-01 05:32:32 -0700 | [diff] [blame] | 304 | 'SK_ARM_HAS_NEON', |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 305 | ], |
| 306 | 'cflags': [ |
| 307 | '-mfpu=neon', |
| 308 | ], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 309 | }], |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 310 | [ 'skia_os != "linux"', { |
borenet@google.com | e2b9037 | 2013-07-11 18:46:30 +0000 | [diff] [blame] | 311 | 'cflags': [ |
| 312 | '-mfloat-abi=softfp', |
| 313 | ], |
| 314 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 315 | ], |
| 316 | }], |
Brian Salomon | 4239fc2 | 2015-07-27 09:10:36 -0400 | [diff] [blame] | 317 | [ '"mips" in skia_arch_type', { |
milko.leporis | 401e77c | 2016-06-05 13:14:21 -0700 | [diff] [blame] | 318 | 'target_conditions': [ |
| 319 | [ '_toolset == "target"', { |
| 320 | 'cflags' : ['-EL'], |
| 321 | 'conditions' : [ |
| 322 | [ 'mips_arch_variant == "mips32r2"', { |
| 323 | 'cflags': [ '-march=mips32r2' ], |
| 324 | 'conditions': [ |
| 325 | [ 'mips_dsp == 1', { 'cflags': [ '-mdsp' ] }], |
| 326 | [ 'mips_dsp == 2', { 'cflags': [ '-mdspr2' ] }], |
| 327 | ], |
| 328 | }], |
djordje.pesut | aaf1df6 | 2014-06-06 14:09:12 -0700 | [diff] [blame] | 329 | ], |
| 330 | }], |
| 331 | ], |
| 332 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 333 | ], |
| 334 | }, |
| 335 | ], |
| 336 | |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 337 | ['skia_android_framework', { |
| 338 | 'cflags': [ |
| 339 | # Skia does not enforce this usage pattern so we disable it here to avoid |
| 340 | # unecessary log spew when building |
| 341 | '-Wno-unused-parameter', |
| 342 | |
| 343 | # Android's -D_FORTIFY_SOURCE=2 extensions are incompatibile with SkString. |
| 344 | # Revert to -D_FORTIFY_SOURCE=1 |
| 345 | '-U_FORTIFY_SOURCE', |
| 346 | '-D_FORTIFY_SOURCE=1', |
djsollen | f379ad3 | 2015-01-27 09:01:01 -0800 | [diff] [blame] | 347 | |
mtklein | 9a106ba | 2015-08-14 10:03:45 -0700 | [diff] [blame] | 348 | # We can't use the skia_shared_lib gyp setting because we need to |
djsollen | f379ad3 | 2015-01-27 09:01:01 -0800 | [diff] [blame] | 349 | # isolate this define to Skia sources. CFLAGS are local to Android.mk |
| 350 | # and ensures that this define is not exported to clients of the library |
| 351 | '-DSKIA_IMPLEMENTATION=1', |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 352 | ], |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 353 | # Remove flags which are either unnecessary or problematic for the |
| 354 | # Android framework build. Many of these flags are removed simply because |
| 355 | # they were not previously in the Android framework makefile, and we did |
| 356 | # did not intend to add them when generating the makefile. |
| 357 | # TODO (scroggo): Investigate whether any of these flags are actually |
| 358 | # needed/would be beneficial. |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 359 | 'cflags!': [ |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 360 | # Android has one makefile, used for both debugging (after manual |
| 361 | # modification) and release. Turn off debug info by default. |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 362 | '-g', |
| 363 | '-march=armv7-a', |
| 364 | '-mthumb', |
| 365 | '-mfpu=neon', |
| 366 | '-mfloat-abi=softfp', |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 367 | '-fno-exceptions', |
| 368 | '-fstrict-aliasing', |
| 369 | # Remove flags to turn on warnings, since most people building Android |
| 370 | # are not focused on Skia and do not need the extra warning info. |
| 371 | '-Wall', |
| 372 | '-Wextra', |
| 373 | '-Winit-self', |
| 374 | '-Wpointer-arith', |
mtklein | a07b297 | 2015-01-23 07:01:26 -0800 | [diff] [blame] | 375 | '-Wsign-compare', |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 376 | ], |
| 377 | 'cflags_cc!': [ |
| 378 | '-fno-rtti', |
| 379 | '-Wnon-virtual-dtor', |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 380 | ], |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 381 | 'defines': [ |
| 382 | 'DCT_IFAST_SUPPORTED', |
| 383 | # using freetype's embolden allows us to adjust fake bold settings at |
| 384 | # draw-time, at which point we know which SkTypeface is being drawn |
| 385 | 'SK_USE_FREETYPE_EMBOLDEN', |
commit-bot@chromium.org | ba0c5ea | 2014-03-28 15:59:04 +0000 | [diff] [blame] | 386 | 'SK_SFNTLY_SUBSETTER "sample/chromium/font_subsetter.h"', |
| 387 | # When built as part of the system image we can enable certian non-NDK |
| 388 | # compliant optimizations. |
| 389 | 'SK_BUILD_FOR_ANDROID_FRAMEWORK', |
commit-bot@chromium.org | ba0c5ea | 2014-03-28 15:59:04 +0000 | [diff] [blame] | 390 | # Optimizations for chromium (m30) |
| 391 | 'GR_GL_CUSTOM_SETUP_HEADER "gl/GrGLConfig_chrome.h"', |
commit-bot@chromium.org | ba0c5ea | 2014-03-28 15:59:04 +0000 | [diff] [blame] | 392 | 'SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024)', |
commit-bot@chromium.org | e3c400f | 2014-05-28 21:44:05 +0000 | [diff] [blame] | 393 | 'SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (512 * 1024)', |
krajcevski | 8c111f7 | 2014-06-02 13:51:34 -0700 | [diff] [blame] | 394 | 'SK_IGNORE_ETC1_SUPPORT', |
mtklein | 9a106ba | 2015-08-14 10:03:45 -0700 | [diff] [blame] | 395 | # We can't use the skia_shared_lib gyp setting because we need expose |
djsollen | f379ad3 | 2015-01-27 09:01:01 -0800 | [diff] [blame] | 396 | # this define globally and the the implemention define as a cflag. |
| 397 | 'SKIA_DLL', |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 398 | 'SK_PRINT_CODEC_MESSAGES', |
borenet | 243406e | 2015-07-22 13:29:25 -0700 | [diff] [blame] | 399 | ], |
| 400 | }], |
| 401 | |
| 402 | ['skia_use_android_framework_defines', { |
| 403 | # Add these defines when building for the Android framework, or when |
| 404 | # specifically requested. These should be temporary staging defines. Any |
| 405 | # permanent defines should be moved into the skia_android_framework block |
| 406 | # above. |
| 407 | 'includes' : [ |
| 408 | 'skia_for_android_framework_defines.gypi', |
| 409 | ], |
| 410 | 'defines': [ |
commit-bot@chromium.org | 22a1d96 | 2014-05-30 21:53:01 +0000 | [diff] [blame] | 411 | '<@(skia_for_android_framework_defines)', |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 412 | ], |
| 413 | }], |
mtklein | d7b25c7 | 2015-11-12 08:41:40 -0800 | [diff] [blame] | 414 | |
joshualitt | 47fdae9 | 2015-11-09 12:30:05 -0800 | [diff] [blame] | 415 | [ 'skia_use_sdl == 1', |
| 416 | { |
| 417 | 'defines': [ 'SK_USE_SDL' ], |
| 418 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 419 | |
joshualitt | f16f88b | 2015-12-02 13:00:37 -0800 | [diff] [blame] | 420 | [ 'skia_dump_stats == 1', |
| 421 | { |
| 422 | 'defines': [ 'SK_DUMP_STATS'], |
| 423 | }], |
| 424 | |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 425 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 426 | { |
| 427 | 'defines': [ |
| 428 | 'SK_SAMPLES_FOR_X', |
| 429 | 'SK_BUILD_FOR_UNIX', |
| 430 | ], |
| 431 | 'configurations': { |
mtklein@google.com | 1fb04e2 | 2013-09-13 19:32:43 +0000 | [diff] [blame] | 432 | 'Coverage': { |
borenet | 11271fe | 2015-07-06 07:43:58 -0700 | [diff] [blame] | 433 | 'conditions': [ |
| 434 | [ 'skia_clang_build', { |
| 435 | 'cflags': ['-fprofile-instr-generate', '-fcoverage-mapping'], |
| 436 | 'ldflags': ['-fprofile-instr-generate', '-fcoverage-mapping'], |
| 437 | }, { |
| 438 | 'cflags': ['--coverage'], |
| 439 | 'ldflags': ['--coverage'], |
| 440 | }], |
| 441 | ], |
mtklein@google.com | 1fb04e2 | 2013-09-13 19:32:43 +0000 | [diff] [blame] | 442 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 443 | 'Debug': { |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 444 | }, |
| 445 | 'Release': { |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 446 | 'cflags': [ |
| 447 | '-O<(skia_release_optimization_level)', |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 448 | ], |
senorblanco@chromium.org | 7288c49 | 2012-01-19 19:59:22 +0000 | [diff] [blame] | 449 | 'defines': [ 'NDEBUG' ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 450 | }, |
| 451 | }, |
borenet@google.com | a37a517 | 2012-08-09 20:44:32 +0000 | [diff] [blame] | 452 | 'conditions' : [ |
zachr@google.com | 28c27c8 | 2013-06-20 17:15:05 +0000 | [diff] [blame] | 453 | [ 'skia_shared_lib', { |
zachr@google.com | 28c27c8 | 2013-06-20 17:15:05 +0000 | [diff] [blame] | 454 | 'defines': [ |
zachr@google.com | 28c27c8 | 2013-06-20 17:15:05 +0000 | [diff] [blame] | 455 | 'SKIA_DLL', |
| 456 | 'SKIA_IMPLEMENTATION=1', |
| 457 | ], |
| 458 | }], |
mtklein@google.com | 9f3b0e4 | 2013-10-08 15:16:36 +0000 | [diff] [blame] | 459 | # Enable asan, tsan, etc. |
| 460 | [ 'skia_sanitizer', { |
mtklein | 632199e | 2015-12-09 12:39:01 -0800 | [diff] [blame] | 461 | 'cflags_cc!': [ '-fno-rtti' ], # vptr needs rtti |
borenet@google.com | 0d19309 | 2013-07-03 15:55:05 +0000 | [diff] [blame] | 462 | 'cflags': [ |
mtklein | bb5b77d | 2015-12-08 14:26:17 -0800 | [diff] [blame] | 463 | '-fsanitize=<(skia_sanitizer)', # Turn on sanitizers. |
| 464 | '-fno-sanitize-recover=<(skia_sanitizer)', # Make any failure fatal. |
| 465 | '-fsanitize-blacklist=<(skia_sanitizer_blacklist)', # Compile in our blacklist. |
| 466 | '-include <(skia_sanitizer_blacklist)', # Make every .cpp depend on it. |
borenet@google.com | 0d19309 | 2013-07-03 15:55:05 +0000 | [diff] [blame] | 467 | ], |
mtklein | 632199e | 2015-12-09 12:39:01 -0800 | [diff] [blame] | 468 | 'ldflags': [ '-fsanitize=<(skia_sanitizer)' ], |
mtklein@google.com | 3a19fb5 | 2013-10-09 16:12:23 +0000 | [diff] [blame] | 469 | 'conditions' : [ |
| 470 | [ 'skia_sanitizer == "thread"', { |
mtklein | 172b455 | 2015-03-12 05:27:46 -0700 | [diff] [blame] | 471 | 'defines': [ 'THREAD_SANITIZER' ], |
mtklein@google.com | 3a19fb5 | 2013-10-09 16:12:23 +0000 | [diff] [blame] | 472 | }], |
mtklein | e721a8e | 2016-02-06 19:12:23 -0800 | [diff] [blame] | 473 | [ 'skia_sanitizer == "memory"', { |
mtklein | a861c00 | 2016-02-07 09:12:29 -0800 | [diff] [blame] | 474 | 'cflags': [ |
| 475 | '-O1', |
| 476 | '-fsanitize-memory-track-origins', |
| 477 | ], |
mtklein | e721a8e | 2016-02-06 19:12:23 -0800 | [diff] [blame] | 478 | }], |
mtklein@google.com | 3a19fb5 | 2013-10-09 16:12:23 +0000 | [diff] [blame] | 479 | ], |
bungeman@google.com | 1435f9f | 2013-09-25 22:39:22 +0000 | [diff] [blame] | 480 | }], |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 481 | [ 'skia_clang_build', { |
mtklein | 170e00d | 2014-06-30 12:33:11 -0700 | [diff] [blame] | 482 | 'cflags_cc': [ |
mtklein | 170e00d | 2014-06-30 12:33:11 -0700 | [diff] [blame] | 483 | '-Wno-unknown-warning-option', # Allows unknown warnings. |
| 484 | '-Wno-deprecated', # From Qt, via debugger (older Clang). |
| 485 | '-Wno-deprecated-register', # From Qt, via debugger (newer Clang). |
| 486 | ], |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 487 | 'cflags': [ |
mtklein | 170e00d | 2014-06-30 12:33:11 -0700 | [diff] [blame] | 488 | # Extra warnings we like but that only Clang knows about. |
| 489 | '-Wstring-conversion', |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 490 | ], |
commit-bot@chromium.org | 815d360 | 2014-05-20 19:42:03 +0000 | [diff] [blame] | 491 | 'cflags!': [ |
| 492 | '-mfpmath=sse', # Clang doesn't need to be told this, and sometimes gets confused. |
| 493 | ], |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 494 | }], |
commit-bot@chromium.org | 5003bde | 2013-10-25 18:14:54 +0000 | [diff] [blame] | 495 | [ 'skia_keep_frame_pointer', { |
| 496 | 'cflags': [ '-fno-omit-frame-pointer' ], |
| 497 | }], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 498 | ], |
| 499 | }, |
| 500 | ], |
| 501 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 502 | [ 'skia_os == "mac"', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 503 | { |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 504 | 'defines': [ 'SK_BUILD_FOR_MAC' ], |
hendrikw | 9a74041 | 2015-10-28 08:42:29 -0700 | [diff] [blame] | 505 | 'conditions': [ |
| 506 | # ANGLE for mac hits -Wunneeded-internal-declaration if this isn't set. |
| 507 | [ 'skia_angle', { 'defines': [ 'YY_NO_INPUT' ], } ], |
| 508 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 509 | 'configurations': { |
commit-bot@chromium.org | 866f4e3 | 2013-11-21 17:04:29 +0000 | [diff] [blame] | 510 | 'Coverage': { |
| 511 | 'xcode_settings': { |
| 512 | 'GCC_OPTIMIZATION_LEVEL': '0', |
| 513 | 'GCC_GENERATE_TEST_COVERAGE_FILES': 'YES', |
| 514 | 'GCC_INSTRUMENT_PROGRAM_FLOW_ARCS' : 'YES', |
| 515 | }, |
| 516 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 517 | 'Debug': { |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 518 | 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '0' }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 519 | }, |
reed@google.com | e05cc8e | 2011-10-10 14:19:40 +0000 | [diff] [blame] | 520 | 'Release': { |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 521 | 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', }, |
senorblanco@chromium.org | 7288c49 | 2012-01-19 19:59:22 +0000 | [diff] [blame] | 522 | 'defines': [ 'NDEBUG' ], |
reed@google.com | e05cc8e | 2011-10-10 14:19:40 +0000 | [diff] [blame] | 523 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 524 | }, |
| 525 | 'xcode_settings': { |
senorblanco@chromium.org | 29f351a | 2014-01-20 16:14:02 +0000 | [diff] [blame] | 526 | 'conditions': [ |
mtklein | dee3df9 | 2015-03-26 05:30:44 -0700 | [diff] [blame] | 527 | [ 'skia_fast', { 'WARNING_CFLAGS': [ '<@(skia_fast_flags)' ] } ], |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 528 | [ 'skia_warnings_as_errors', { 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES' }], |
Brian Salomon | 4239fc2 | 2015-07-27 09:10:36 -0400 | [diff] [blame] | 529 | [ 'skia_arch_type == "x86"', { 'ARCHS': ['i386'] }], |
| 530 | [ 'skia_arch_type == "x86_64"', { 'ARCHS': ['x86_64'] }], |
senorblanco@chromium.org | 29f351a | 2014-01-20 16:14:02 +0000 | [diff] [blame] | 531 | [ 'skia_osx_deployment_target==""', { |
mtklein | d7b25c7 | 2015-11-12 08:41:40 -0800 | [diff] [blame] | 532 | 'MACOSX_DEPLOYMENT_TARGET': '10.7', # -mmacos-version-min, passed in env to ld. |
senorblanco@chromium.org | 29f351a | 2014-01-20 16:14:02 +0000 | [diff] [blame] | 533 | }, { |
| 534 | 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)', |
| 535 | }], |
mtklein | 632199e | 2015-12-09 12:39:01 -0800 | [diff] [blame] | 536 | [ 'skia_sanitizer', { |
bungeman | 1aeac30 | 2016-02-03 13:06:28 -0800 | [diff] [blame] | 537 | 'GCC_ENABLE_CPP_RTTI': 'YES', # vptr needs rtti |
mtklein | 632199e | 2015-12-09 12:39:01 -0800 | [diff] [blame] | 538 | 'OTHER_CFLAGS': [ |
| 539 | '-fsanitize=<(skia_sanitizer)', # Turn on sanitizers. |
| 540 | '-fno-sanitize-recover=<(skia_sanitizer)', # Make any failure fatal. |
| 541 | '-fsanitize-blacklist=<(skia_sanitizer_blacklist)', # Compile in our blacklist. |
| 542 | '-include <(skia_sanitizer_blacklist)', # Make every .cpp depend on it. |
| 543 | ], |
| 544 | # We want to pass -fsanitize=... to our final link call, |
| 545 | # but not to libtool. OTHER_LDFLAGS is passed to both. |
| 546 | # To trick GYP into doing what we want, we'll piggyback on |
| 547 | # LIBRARY_SEARCH_PATHS, producing "-L/usr/lib -fsanitize=...". |
| 548 | # The -L/usr/lib is redundant but innocuous: it's a default path. |
| 549 | 'LIBRARY_SEARCH_PATHS': [ '/usr/lib -fsanitize=<(skia_sanitizer)'], |
| 550 | }], |
senorblanco@chromium.org | 29f351a | 2014-01-20 16:14:02 +0000 | [diff] [blame] | 551 | ], |
mtklein | d7b25c7 | 2015-11-12 08:41:40 -0800 | [diff] [blame] | 552 | 'CLANG_CXX_LIBRARY': 'libc++', |
bungeman | 1aeac30 | 2016-02-03 13:06:28 -0800 | [diff] [blame] | 553 | 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', |
| 554 | 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions |
| 555 | 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti |
| 556 | 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics |
| 557 | 'GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS': 'YES', # -mssse3 |
mtklein | 02b2f19 | 2016-03-28 12:43:39 -0700 | [diff] [blame] | 558 | 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden |
| 559 | 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', # -fvisibility-inlines-hidden |
mtklein | 335a0ae | 2014-10-13 12:32:34 -0700 | [diff] [blame] | 560 | 'GCC_CW_ASM_SYNTAX': 'NO', # remove -fasm-blocks |
| 561 | 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # remove -mpascal-strings |
bungeman | 1aeac30 | 2016-02-03 13:06:28 -0800 | [diff] [blame] | 562 | 'WARNING_CFLAGS': [ |
| 563 | '-Wall', |
| 564 | '-Wextra', |
| 565 | '-Winit-self', |
| 566 | '-Wpointer-arith', |
| 567 | '-Wsign-compare', |
dvonbeck | 115e925 | 2016-06-15 09:13:50 -0700 | [diff] [blame] | 568 | '-Wvla', |
bungeman | 1aeac30 | 2016-02-03 13:06:28 -0800 | [diff] [blame] | 569 | |
| 570 | '-Wno-unused-parameter', |
bungeman@google.com | 43b4ed5 | 2012-10-02 15:42:21 +0000 | [diff] [blame] | 571 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 572 | }, |
| 573 | }, |
| 574 | ], |
| 575 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 576 | [ 'skia_os == "ios"', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 577 | { |
| 578 | 'defines': [ |
sdefresne | e3fa811 | 2016-06-01 07:08:56 -0700 | [diff] [blame] | 579 | # When targetting iOS and using gyp to generate the build files, it is |
| 580 | # not possible to select files to build depending on the architecture |
| 581 | # (i.e. it is not possible to use hand optimized assembly version). In |
| 582 | # that configuration, disable all optimisation. |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 583 | 'SK_BUILD_FOR_IOS', |
sdefresne | e3fa811 | 2016-06-01 07:08:56 -0700 | [diff] [blame] | 584 | 'SK_BUILD_NO_OPTS', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 585 | ], |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 586 | 'conditions' : [ |
| 587 | [ 'skia_warnings_as_errors', { |
| 588 | 'xcode_settings': { |
| 589 | 'OTHER_CPLUSPLUSFLAGS': [ |
| 590 | '-Werror', |
| 591 | ], |
| 592 | }, |
| 593 | }], |
| 594 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 595 | 'configurations': { |
| 596 | 'Debug': { |
| 597 | 'xcode_settings': { |
| 598 | 'GCC_OPTIMIZATION_LEVEL': '0', |
| 599 | }, |
| 600 | }, |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 601 | 'Release': { |
| 602 | 'xcode_settings': { |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 603 | 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 604 | }, |
| 605 | 'defines': [ 'NDEBUG' ], |
| 606 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 607 | }, |
| 608 | 'xcode_settings': { |
commit-bot@chromium.org | ae0054e | 2014-04-05 01:13:43 +0000 | [diff] [blame] | 609 | 'ARCHS': ['armv7'], |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 610 | 'CODE_SIGNING_REQUIRED': 'NO', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 611 | 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)', |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 612 | 'SDKROOT': 'iphoneos', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 613 | 'TARGETED_DEVICE_FAMILY': '1,2', |
mtklein | 1e5cbf2 | 2015-11-16 16:20:34 -0800 | [diff] [blame] | 614 | |
| 615 | 'CLANG_CXX_LIBRARY': 'libc++', |
| 616 | 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', |
| 617 | 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions |
| 618 | 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti |
| 619 | 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics |
mtklein | 02b2f19 | 2016-03-28 12:43:39 -0700 | [diff] [blame] | 620 | 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden |
| 621 | 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', # -fvisibility-inlines-hidden |
mtklein | 1e5cbf2 | 2015-11-16 16:20:34 -0800 | [diff] [blame] | 622 | |
| 623 | 'GCC_THUMB_SUPPORT': 'NO', # TODO(mtklein): why would we not want thumb? |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 624 | }, |
| 625 | }, |
| 626 | ], |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 627 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 628 | [ 'skia_os == "android"', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 629 | { |
| 630 | 'defines': [ |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 631 | 'SK_BUILD_FOR_ANDROID', |
djsollen@google.com | 968757e | 2014-04-11 13:09:21 +0000 | [diff] [blame] | 632 | |
mtklein | 8d7f5c3 | 2016-08-01 09:22:12 -0700 | [diff] [blame] | 633 | # Android defines a fixed text gamma exponent instead of using SRGB |
djsollen@google.com | 968757e | 2014-04-11 13:09:21 +0000 | [diff] [blame] | 634 | 'SK_GAMMA_EXPONENT=1.4', |
| 635 | 'SK_GAMMA_CONTRAST=0.0', |
| 636 | ], |
scroggo@google.com | eb62950 | 2014-02-04 16:08:48 +0000 | [diff] [blame] | 637 | 'configurations': { |
scroggo@google.com | eb62950 | 2014-02-04 16:08:48 +0000 | [diff] [blame] | 638 | 'Release': { |
| 639 | 'cflags': ['-O2'], |
djsollen | 460f405 | 2016-04-25 11:45:35 -0700 | [diff] [blame] | 640 | 'conditions': [ |
| 641 | [ 'skia_clang_build', { |
| 642 | 'cflags!': ['-g'], |
| 643 | 'cflags': [ '-gline-tables-only' ], |
| 644 | }], |
| 645 | ], |
scroggo@google.com | eb62950 | 2014-02-04 16:08:48 +0000 | [diff] [blame] | 646 | }, |
| 647 | }, |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 648 | 'libraries': [ |
djsollen@google.com | 318cf92 | 2011-11-08 19:03:43 +0000 | [diff] [blame] | 649 | '-llog', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 650 | ], |
djsollen@google.com | 44360bc | 2011-12-05 13:55:55 +0000 | [diff] [blame] | 651 | 'cflags': [ |
borenet@google.com | de9ac14 | 2012-07-25 15:17:03 +0000 | [diff] [blame] | 652 | '-fuse-ld=gold', |
djsollen@google.com | 44360bc | 2011-12-05 13:55:55 +0000 | [diff] [blame] | 653 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 654 | 'conditions': [ |
scroggo | df1c337 | 2015-02-12 10:48:25 -0800 | [diff] [blame] | 655 | [ '"x86" in skia_arch_type', { |
djsollen | bc89329 | 2014-07-24 13:53:56 -0700 | [diff] [blame] | 656 | 'cflags': [ |
| 657 | '-mssse3', |
| 658 | ], |
| 659 | }], |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 660 | [ 'skia_android_framework', { |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 661 | 'cflags!': [ |
| 662 | '-fuse-ld=gold', |
scroggo | 7cd3f64 | 2015-02-12 13:27:40 -0800 | [diff] [blame] | 663 | '-mssse3', |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 664 | ], |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 665 | }], |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 666 | [ 'skia_shared_lib', { |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 667 | 'defines': [ |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 668 | 'SKIA_DLL', |
| 669 | 'SKIA_IMPLEMENTATION=1', |
halcanary | 6950de6 | 2015-11-07 05:29:00 -0800 | [diff] [blame] | 670 | # Needed until we fix https://bug.skia.org/2440 . |
scroggo | ecce60b | 2014-07-09 07:26:40 -0700 | [diff] [blame] | 671 | 'SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG', |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 672 | ], |
| 673 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 674 | [ 'skia_profile_enabled == 1', { |
| 675 | 'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'], |
djsollen@google.com | 3839ca1 | 2011-11-03 17:31:41 +0000 | [diff] [blame] | 676 | }], |
djsollen | f9deeb6 | 2016-03-07 12:30:47 -0800 | [diff] [blame] | 677 | [ 'skia_clang_build', { |
| 678 | 'cflags': [ |
| 679 | '-Wno-unknown-warning-option', # Allows unknown warnings |
| 680 | # These flags that are on by default for only the android |
| 681 | # toolchain and no other platforms. |
| 682 | '-Wno-tautological-compare', |
| 683 | '-Wno-unused-command-line-argument', |
| 684 | ], |
| 685 | }], |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 686 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 687 | }, |
| 688 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 689 | |
commit-bot@chromium.org | 199cf69 | 2014-05-08 15:29:57 +0000 | [diff] [blame] | 690 | [ 'skia_moz2d', { |
| 691 | 'defines': [ |
reed | 6518eaa | 2014-06-18 14:05:22 -0700 | [diff] [blame] | 692 | # add flags here (e.g. SK_SUPPORT_LEGACY_...) needed by moz2d |
commit-bot@chromium.org | 199cf69 | 2014-05-08 15:29:57 +0000 | [diff] [blame] | 693 | ], |
| 694 | }], |
| 695 | |
hendrikw | 855dc93 | 2015-10-27 10:04:34 -0700 | [diff] [blame] | 696 | [ 'skia_command_buffer and skia_os == "linux"', { |
hendrikw | b1ac52f | 2015-10-01 18:29:34 -0700 | [diff] [blame] | 697 | 'ldflags': [ |
| 698 | '-Wl,-rpath,\$$ORIGIN/lib', |
| 699 | ], |
| 700 | }], |
| 701 | |
hendrikw | 855dc93 | 2015-10-27 10:04:34 -0700 | [diff] [blame] | 702 | [ 'skia_command_buffer and skia_os == "mac"', { |
| 703 | 'xcode_settings': { |
| 704 | 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'], |
| 705 | }, |
| 706 | }], |
| 707 | |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 708 | ], # end 'conditions' |
caryclark@google.com | 4588ce8 | 2012-09-26 15:48:43 +0000 | [diff] [blame] | 709 | # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details |
| 710 | 'xcode_settings': { |
| 711 | 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 712 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 713 | } |