seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 1 | # conditions used in both common.gypi and skia.gyp in chromium |
| 2 | # |
| 3 | { |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 4 | 'defines': [ |
| 5 | 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', |
mtklein@google.com | dad7070 | 2013-11-20 18:06:10 +0000 | [diff] [blame] | 6 | 'SK_SUPPORT_GPU=<(skia_gpu)', |
| 7 | 'SK_SUPPORT_OPENCL=<(skia_opencl)', |
commit-bot@chromium.org | ae79612 | 2014-03-12 17:05:46 +0000 | [diff] [blame] | 8 | 'SK_FORCE_DISTANCEFIELD_FONTS=<(skia_force_distancefield_fonts)', |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 9 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 10 | 'conditions' : [ |
scroggo | c0bc913 | 2014-07-22 12:09:30 -0700 | [diff] [blame] | 11 | ['skia_pic', { |
| 12 | 'cflags': [ |
| 13 | '-fPIC', |
| 14 | ], |
| 15 | 'conditions' : [ |
| 16 | # FIXME: The reason we don't do this on Android is due to the way |
| 17 | # we build the executables/skia_launcher on Android. See |
| 18 | # https://codereview.chromium.org/406613003/diff/1/gyp/common_conditions.gypi#newcode455 |
| 19 | ['skia_os != "android"', { |
| 20 | 'target_conditions': [ |
| 21 | [ '_type == "executable"', { |
| 22 | 'cflags': [ '-fPIE' ], |
| 23 | 'ldflags': [ '-pie' ], |
| 24 | }], |
| 25 | ], |
| 26 | }], |
| 27 | ], |
| 28 | }], |
commit-bot@chromium.org | 6f2d4d4 | 2014-04-02 15:03:56 +0000 | [diff] [blame] | 29 | |
commit-bot@chromium.org | 6a106ce | 2014-05-20 19:02:55 +0000 | [diff] [blame] | 30 | # As of M35, Chrome requires SSE2 on x86 (and SSSE3 on Mac). |
| 31 | [ 'skia_arch_type == "x86"', { |
| 32 | 'cflags': [ |
| 33 | '-msse2', |
| 34 | '-mfpmath=sse', |
| 35 | ], |
| 36 | }], |
| 37 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 38 | [ 'skia_os == "win"', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 39 | { |
| 40 | 'defines': [ |
| 41 | 'SK_BUILD_FOR_WIN32', |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 42 | '_CRT_SECURE_NO_WARNINGS', |
senorblanco@chromium.org | 5f47a39 | 2012-07-12 00:34:39 +0000 | [diff] [blame] | 43 | 'GR_GL_FUNCTION_TYPE=__stdcall', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 44 | ], |
commit-bot@chromium.org | 50ca12b | 2014-05-07 19:56:27 +0000 | [diff] [blame] | 45 | 'msvs_disabled_warnings': [ |
bungeman | f548444 | 2014-09-10 07:49:05 -0700 | [diff] [blame] | 46 | 4275, # An exported class was derived from a class that was not exported |
| 47 | 4345, # This is an FYI about a behavior change from long ago. Chrome stifles it too. |
| 48 | 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] | 49 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 50 | 'msvs_cygwin_shell': 0, |
| 51 | 'msvs_settings': { |
| 52 | 'VCCLCompilerTool': { |
bsalomon@google.com | b58a639 | 2013-03-21 20:29:05 +0000 | [diff] [blame] | 53 | 'WarningLevel': '3', |
| 54 | 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 55 | 'DebugInformationFormat': '3', |
bsalomon@google.com | b58a639 | 2013-03-21 20:29:05 +0000 | [diff] [blame] | 56 | 'ExceptionHandling': '0', |
| 57 | 'AdditionalOptions': [ '/MP', ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 58 | }, |
| 59 | 'VCLinkerTool': { |
commit-bot@chromium.org | 4521add | 2014-04-30 20:47:22 +0000 | [diff] [blame] | 60 | '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] | 61 | 'AdditionalDependencies': [ |
| 62 | 'OpenGL32.lib', |
| 63 | 'usp10.lib', |
bungeman@google.com | f51e125 | 2013-06-05 18:35:22 +0000 | [diff] [blame] | 64 | |
| 65 | # Prior to gyp r1584, the following were included automatically. |
| 66 | 'kernel32.lib', |
| 67 | 'gdi32.lib', |
| 68 | 'winspool.lib', |
| 69 | 'comdlg32.lib', |
| 70 | 'advapi32.lib', |
| 71 | 'shell32.lib', |
| 72 | 'ole32.lib', |
| 73 | 'oleaut32.lib', |
| 74 | 'user32.lib', |
| 75 | 'uuid.lib', |
| 76 | 'odbc32.lib', |
| 77 | 'odbccp32.lib', |
bsalomon@google.com | bbba784 | 2013-06-06 18:34:13 +0000 | [diff] [blame] | 78 | 'DelayImp.lib', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 79 | ], |
| 80 | }, |
| 81 | }, |
| 82 | 'configurations': { |
| 83 | 'Debug': { |
| 84 | 'msvs_settings': { |
| 85 | 'VCCLCompilerTool': { |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 86 | 'DebugInformationFormat': '4', # editAndContiue (/ZI) |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 87 | 'Optimization': '0', # optimizeDisabled (/Od) |
| 88 | 'PreprocessorDefinitions': ['_DEBUG'], |
| 89 | 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd) |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 90 | 'RuntimeTypeInfo': 'false', # /GR- |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 91 | }, |
| 92 | 'VCLinkerTool': { |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 93 | 'GenerateDebugInformation': 'true', # /DEBUG |
| 94 | 'LinkIncremental': '2', # /INCREMENTAL |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 95 | }, |
| 96 | }, |
| 97 | }, |
| 98 | 'Release': { |
| 99 | 'msvs_settings': { |
| 100 | 'VCCLCompilerTool': { |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 101 | 'DebugInformationFormat': '3', # programDatabase (/Zi) |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 102 | 'Optimization': '<(skia_release_optimization_level)', |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 103 | # Changing the floating point model requires rebaseling gm images |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 104 | #'FloatingPointModel': '2', # fast (/fp:fast) |
| 105 | 'FavorSizeOrSpeed': '1', # speed (/Ot) |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 106 | 'PreprocessorDefinitions': ['NDEBUG'], |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 107 | 'RuntimeLibrary': '2', # rtMultiThreadedDLL (/MD) |
bsalomon@google.com | 9aabfc7 | 2012-05-31 14:12:46 +0000 | [diff] [blame] | 108 | 'EnableEnhancedInstructionSet': '2',# /arch:SSE2 |
| 109 | 'RuntimeTypeInfo': 'false', # /GR- |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 110 | }, |
| 111 | 'VCLinkerTool': { |
bsalomon@google.com | 8b5abec | 2011-09-28 14:32:01 +0000 | [diff] [blame] | 112 | 'GenerateDebugInformation': 'true', # /DEBUG |
bungeman@google.com | 983297e | 2011-10-03 19:36:51 +0000 | [diff] [blame] | 113 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 114 | }, |
| 115 | }, |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 116 | }, |
| 117 | 'conditions' : [ |
epoger@google.com | 58d69d8 | 2014-04-01 07:02:41 +0000 | [diff] [blame] | 118 | # Gyp's ninja generator depends on these specially named |
| 119 | # configurations to build 64-bit on Windows. |
| 120 | # See http://skbug.com/2348 |
| 121 | # |
| 122 | # We handle the 64- vs 32-bit variations elsewhere, so I think it's |
| 123 | # OK for us to just make these inherit non-archwidth-specific |
| 124 | # configurations without modification. |
commit-bot@chromium.org | d10ec40 | 2014-04-22 20:05:35 +0000 | [diff] [blame] | 125 | # |
| 126 | # See http://skbug.com/2442 : These targets cause problems in the |
| 127 | # MSVS build, so only include them if gyp is generating a ninja build. |
| 128 | [ '"ninja" in "<!(echo %GYP_GENERATORS%)"', { |
| 129 | 'configurations': { |
| 130 | 'Debug_x64': { |
| 131 | 'inherit_from': ['Debug'], |
| 132 | }, |
| 133 | 'Release_x64': { |
| 134 | 'inherit_from': ['Release'], |
| 135 | }, |
| 136 | 'Release_Developer_x64': { |
| 137 | 'inherit_from': ['Release_Developer'], |
| 138 | }, |
| 139 | }, |
| 140 | }], |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 141 | [ 'skia_arch_width == 64', { |
bsalomon@google.com | 1d03ba9 | 2013-01-08 20:40:22 +0000 | [diff] [blame] | 142 | 'msvs_configuration_platform': 'x64', |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 143 | }], |
| 144 | [ 'skia_arch_width == 32', { |
| 145 | 'msvs_configuration_platform': 'Win32', |
| 146 | }], |
| 147 | [ 'skia_warnings_as_errors', { |
bsalomon@google.com | 1d03ba9 | 2013-01-08 20:40:22 +0000 | [diff] [blame] | 148 | 'msvs_settings': { |
| 149 | 'VCCLCompilerTool': { |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 150 | 'WarnAsError': 'true', |
| 151 | 'AdditionalOptions': [ |
| 152 | '/we4189', # initialized but unused var warning |
| 153 | ], |
bsalomon@google.com | 1d03ba9 | 2013-01-08 20:40:22 +0000 | [diff] [blame] | 154 | }, |
| 155 | }, |
borenet@google.com | b796119 | 2012-08-20 18:58:26 +0000 | [diff] [blame] | 156 | }], |
commit-bot@chromium.org | 5a6c2d8 | 2013-06-14 17:10:09 +0000 | [diff] [blame] | 157 | [ 'skia_win_exceptions', { |
| 158 | 'msvs_settings': { |
| 159 | 'VCCLCompilerTool': { |
| 160 | 'AdditionalOptions': [ |
| 161 | '/EHsc', |
| 162 | ], |
| 163 | }, |
| 164 | }, |
| 165 | }], |
bsalomon | da07a08 | 2014-06-26 12:56:28 -0700 | [diff] [blame] | 166 | [ 'skia_win_ltcg', { |
| 167 | 'configurations': { |
| 168 | 'Release': { |
| 169 | 'msvs_settings': { |
| 170 | 'VCCLCompilerTool': { |
| 171 | 'WholeProgramOptimization': 'true', #/GL |
| 172 | }, |
| 173 | 'VCLinkerTool': { |
| 174 | 'LinkTimeCodeGeneration': '1', # useLinkTimeCodeGeneration /LTCG |
| 175 | }, |
| 176 | 'VCLibrarianTool': { |
| 177 | 'LinkTimeCodeGeneration': 'true', # useLinkTimeCodeGeneration /LTCG |
| 178 | }, |
| 179 | }, |
| 180 | }, |
| 181 | }, |
| 182 | }], |
borenet@google.com | b796119 | 2012-08-20 18:58:26 +0000 | [diff] [blame] | 183 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 184 | }, |
| 185 | ], |
| 186 | |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 187 | # The following section is common to linux + derivatives and android |
| 188 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos", "android"]', |
| 189 | { |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 190 | 'cflags': [ |
mtklein@google.com | dad7070 | 2013-11-20 18:06:10 +0000 | [diff] [blame] | 191 | '-g', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 192 | '-fno-exceptions', |
| 193 | '-fstrict-aliasing', |
mtklein@google.com | dad7070 | 2013-11-20 18:06:10 +0000 | [diff] [blame] | 194 | |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 195 | '-Wall', |
| 196 | '-Wextra', |
| 197 | '-Winit-self', |
| 198 | '-Wpointer-arith', |
| 199 | |
Derek Sollenberger | 122f9ec | 2014-07-16 15:20:01 -0400 | [diff] [blame] | 200 | '-Wno-c++11-extensions', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 201 | '-Wno-unused-parameter', |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 202 | ], |
| 203 | 'cflags_cc': [ |
| 204 | '-fno-rtti', |
| 205 | '-Wnon-virtual-dtor', |
mtklein | 24ad096 | 2014-06-17 11:47:40 -0700 | [diff] [blame] | 206 | '-Wno-invalid-offsetof', # GCC <4.6 is old-school strict about what is POD. |
mtklein@google.com | f1077f9 | 2013-11-20 15:13:49 +0000 | [diff] [blame] | 207 | ], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 208 | 'conditions': [ |
qiankun.miao | d312a04 | 2014-07-07 09:47:24 -0700 | [diff] [blame] | 209 | [ 'skia_os != "chromeos"', { |
| 210 | 'conditions': [ |
| 211 | [ 'skia_arch_width == 64 and skia_arch_type == "x86"', { |
| 212 | 'cflags': [ |
| 213 | '-m64', |
| 214 | ], |
| 215 | 'ldflags': [ |
| 216 | '-m64', |
| 217 | ], |
| 218 | }], |
| 219 | [ 'skia_arch_width == 32 and skia_arch_type == "x86"', { |
| 220 | 'cflags': [ |
| 221 | '-m32', |
| 222 | ], |
| 223 | 'ldflags': [ |
| 224 | '-m32', |
| 225 | ], |
| 226 | }], |
| 227 | ], |
| 228 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 229 | [ 'skia_warnings_as_errors', { |
| 230 | 'cflags': [ |
| 231 | '-Werror', |
| 232 | ], |
| 233 | }], |
commit-bot@chromium.org | 35d4872 | 2014-02-13 18:36:36 +0000 | [diff] [blame] | 234 | # For profiling; reveals some costs, exaggerates others (e.g. trivial setters & getters). |
| 235 | [ 'skia_disable_inlining', { |
| 236 | 'cflags': [ |
| 237 | '-fno-inline', |
| 238 | '-fno-default-inline', |
| 239 | '-finline-limit=0', |
| 240 | '-fno-omit-frame-pointer', |
| 241 | ], |
| 242 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 243 | [ 'skia_arch_type == "arm" and arm_thumb == 1', { |
| 244 | 'cflags': [ |
| 245 | '-mthumb', |
| 246 | ], |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 247 | # The --fix-cortex-a8 switch enables a link-time workaround for |
| 248 | # an erratum in certain Cortex-A8 processors. The workaround is |
| 249 | # enabled by default if you target the ARM v7-A arch profile. |
| 250 | # It can be enabled otherwise by specifying --fix-cortex-a8, or |
| 251 | # disabled unconditionally by specifying --no-fix-cortex-a8. |
| 252 | # |
| 253 | # The erratum only affects Thumb-2 code. |
| 254 | 'conditions': [ |
| 255 | [ 'arm_version < 7', { |
| 256 | 'ldflags': [ |
| 257 | '-Wl,--fix-cortex-a8', |
| 258 | ], |
| 259 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 260 | ], |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 261 | }], |
| 262 | [ 'skia_arch_type == "arm" and arm_version >= 7', { |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 263 | 'cflags': [ |
| 264 | '-march=armv7-a', |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 265 | ], |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 266 | 'ldflags': [ |
| 267 | '-march=armv7-a', |
| 268 | ], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 269 | 'conditions': [ |
| 270 | [ 'arm_neon == 1', { |
| 271 | 'defines': [ |
djsollen | 21769c5 | 2014-08-01 05:32:32 -0700 | [diff] [blame] | 272 | 'SK_ARM_HAS_NEON', |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 273 | ], |
| 274 | 'cflags': [ |
| 275 | '-mfpu=neon', |
| 276 | ], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 277 | }], |
| 278 | [ 'arm_neon_optional == 1', { |
| 279 | 'defines': [ |
djsollen | 21769c5 | 2014-08-01 05:32:32 -0700 | [diff] [blame] | 280 | 'SK_ARM_HAS_OPTIONAL_NEON', |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 281 | ], |
| 282 | }], |
borenet@google.com | e2b9037 | 2013-07-11 18:46:30 +0000 | [diff] [blame] | 283 | [ 'skia_os != "chromeos"', { |
| 284 | 'cflags': [ |
| 285 | '-mfloat-abi=softfp', |
| 286 | ], |
| 287 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 288 | ], |
| 289 | }], |
djordje.pesut | aaf1df6 | 2014-06-06 14:09:12 -0700 | [diff] [blame] | 290 | [ 'skia_arch_type == "mips"', { |
| 291 | 'cflags': [ |
| 292 | '-EL', |
| 293 | ], |
| 294 | 'conditions': [ |
| 295 | [ 'mips_arch_variant == "mips32r2"', { |
| 296 | 'cflags': [ |
| 297 | '-march=mips32r2', |
| 298 | ], |
| 299 | 'conditions': [ |
| 300 | [ 'mips_dsp == 1', { |
| 301 | 'cflags': [ |
| 302 | '-mdsp', |
| 303 | ], |
djordje.pesut | 6336f7c | 2014-07-14 07:48:11 -0700 | [diff] [blame] | 304 | 'defines': [ |
| 305 | 'SK_MIPS_HAS_DSP', |
| 306 | ], |
djordje.pesut | aaf1df6 | 2014-06-06 14:09:12 -0700 | [diff] [blame] | 307 | }], |
| 308 | [ 'mips_dsp == 2', { |
| 309 | 'cflags': [ |
| 310 | '-mdspr2', |
| 311 | ], |
djordje.pesut | 632a454 | 2014-06-11 06:56:10 -0700 | [diff] [blame] | 312 | 'defines': [ |
djordje.pesut | 6336f7c | 2014-07-14 07:48:11 -0700 | [diff] [blame] | 313 | 'SK_MIPS_HAS_DSP', |
| 314 | 'SK_MIPS_HAS_DSPR2', |
djordje.pesut | 632a454 | 2014-06-11 06:56:10 -0700 | [diff] [blame] | 315 | ], |
djordje.pesut | aaf1df6 | 2014-06-06 14:09:12 -0700 | [diff] [blame] | 316 | }], |
| 317 | ], |
| 318 | }], |
| 319 | ], |
| 320 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 321 | ], |
| 322 | }, |
| 323 | ], |
| 324 | |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 325 | ['skia_android_framework', { |
commit-bot@chromium.org | 22a1d96 | 2014-05-30 21:53:01 +0000 | [diff] [blame] | 326 | 'includes' : [ |
| 327 | 'skia_for_android_framework_defines.gypi', |
| 328 | ], |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 329 | 'cflags': [ |
| 330 | # Skia does not enforce this usage pattern so we disable it here to avoid |
| 331 | # unecessary log spew when building |
| 332 | '-Wno-unused-parameter', |
| 333 | |
| 334 | # Android's -D_FORTIFY_SOURCE=2 extensions are incompatibile with SkString. |
| 335 | # Revert to -D_FORTIFY_SOURCE=1 |
| 336 | '-U_FORTIFY_SOURCE', |
| 337 | '-D_FORTIFY_SOURCE=1', |
| 338 | ], |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 339 | # Remove flags which are either unnecessary or problematic for the |
| 340 | # Android framework build. Many of these flags are removed simply because |
| 341 | # they were not previously in the Android framework makefile, and we did |
| 342 | # did not intend to add them when generating the makefile. |
| 343 | # TODO (scroggo): Investigate whether any of these flags are actually |
| 344 | # needed/would be beneficial. |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 345 | 'cflags!': [ |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 346 | # Android has one makefile, used for both debugging (after manual |
| 347 | # modification) and release. Turn off debug info by default. |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 348 | '-g', |
| 349 | '-march=armv7-a', |
| 350 | '-mthumb', |
| 351 | '-mfpu=neon', |
| 352 | '-mfloat-abi=softfp', |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 353 | '-fno-exceptions', |
| 354 | '-fstrict-aliasing', |
| 355 | # Remove flags to turn on warnings, since most people building Android |
| 356 | # are not focused on Skia and do not need the extra warning info. |
| 357 | '-Wall', |
| 358 | '-Wextra', |
| 359 | '-Winit-self', |
| 360 | '-Wpointer-arith', |
| 361 | ], |
| 362 | 'cflags_cc!': [ |
| 363 | '-fno-rtti', |
| 364 | '-Wnon-virtual-dtor', |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 365 | ], |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 366 | 'defines': [ |
| 367 | 'DCT_IFAST_SUPPORTED', |
| 368 | # using freetype's embolden allows us to adjust fake bold settings at |
| 369 | # draw-time, at which point we know which SkTypeface is being drawn |
| 370 | 'SK_USE_FREETYPE_EMBOLDEN', |
commit-bot@chromium.org | ba0c5ea | 2014-03-28 15:59:04 +0000 | [diff] [blame] | 371 | 'SK_SFNTLY_SUBSETTER "sample/chromium/font_subsetter.h"', |
| 372 | # When built as part of the system image we can enable certian non-NDK |
| 373 | # compliant optimizations. |
| 374 | 'SK_BUILD_FOR_ANDROID_FRAMEWORK', |
commit-bot@chromium.org | ba0c5ea | 2014-03-28 15:59:04 +0000 | [diff] [blame] | 375 | # Optimizations for chromium (m30) |
| 376 | 'GR_GL_CUSTOM_SETUP_HEADER "gl/GrGLConfig_chrome.h"', |
| 377 | 'IGNORE_ROT_AA_RECT_OPT', |
commit-bot@chromium.org | ba0c5ea | 2014-03-28 15:59:04 +0000 | [diff] [blame] | 378 | 'SkLONGLONG int64_t', |
| 379 | 'SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024)', |
robertphillips | a2551ff | 2014-06-02 12:09:29 -0700 | [diff] [blame] | 380 | # Transitional, for deprecated SkCanvas::SaveFlags methods. |
| 381 | 'SK_ATTR_DEPRECATED=SK_NOTHING_ARG1', |
commit-bot@chromium.org | e3c400f | 2014-05-28 21:44:05 +0000 | [diff] [blame] | 382 | 'SK_DEFAULT_GLOBAL_DISCARDABLE_MEMORY_POOL_SIZE (512 * 1024)', |
krajcevski | 8c111f7 | 2014-06-02 13:51:34 -0700 | [diff] [blame] | 383 | 'SK_IGNORE_ETC1_SUPPORT', |
commit-bot@chromium.org | 22a1d96 | 2014-05-30 21:53:01 +0000 | [diff] [blame] | 384 | # Defines from skia_for_android_framework_defines.gypi |
| 385 | '<@(skia_for_android_framework_defines)', |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 386 | ], |
| 387 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 388 | |
borenet@google.com | 05d550e | 2013-06-11 15:52:19 +0000 | [diff] [blame] | 389 | [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos"]', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 390 | { |
| 391 | 'defines': [ |
| 392 | 'SK_SAMPLES_FOR_X', |
| 393 | 'SK_BUILD_FOR_UNIX', |
| 394 | ], |
| 395 | 'configurations': { |
mtklein@google.com | 1fb04e2 | 2013-09-13 19:32:43 +0000 | [diff] [blame] | 396 | 'Coverage': { |
mtklein@google.com | dad7070 | 2013-11-20 18:06:10 +0000 | [diff] [blame] | 397 | 'cflags': ['--coverage'], |
mtklein@google.com | 1fb04e2 | 2013-09-13 19:32:43 +0000 | [diff] [blame] | 398 | 'ldflags': ['--coverage'], |
| 399 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 400 | 'Debug': { |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 401 | }, |
| 402 | 'Release': { |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 403 | 'cflags': [ |
| 404 | '-O<(skia_release_optimization_level)', |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 405 | ], |
senorblanco@chromium.org | 7288c49 | 2012-01-19 19:59:22 +0000 | [diff] [blame] | 406 | 'defines': [ 'NDEBUG' ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 407 | }, |
| 408 | }, |
borenet@google.com | a37a517 | 2012-08-09 20:44:32 +0000 | [diff] [blame] | 409 | 'conditions' : [ |
zachr@google.com | 28c27c8 | 2013-06-20 17:15:05 +0000 | [diff] [blame] | 410 | [ 'skia_shared_lib', { |
zachr@google.com | 28c27c8 | 2013-06-20 17:15:05 +0000 | [diff] [blame] | 411 | 'defines': [ |
zachr@google.com | 28c27c8 | 2013-06-20 17:15:05 +0000 | [diff] [blame] | 412 | 'SKIA_DLL', |
| 413 | 'SKIA_IMPLEMENTATION=1', |
| 414 | ], |
| 415 | }], |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 416 | [ 'skia_os == "nacl"', { |
| 417 | 'defines': [ |
| 418 | 'SK_BUILD_FOR_NACL', |
| 419 | ], |
commit-bot@chromium.org | fe42410 | 2014-02-21 00:40:16 +0000 | [diff] [blame] | 420 | 'variables': { |
commit-bot@chromium.org | 25595ed | 2014-04-04 18:16:04 +0000 | [diff] [blame] | 421 | 'nacl_sdk_root': '<!(echo ${NACL_SDK_ROOT})', |
commit-bot@chromium.org | fe42410 | 2014-02-21 00:40:16 +0000 | [diff] [blame] | 422 | }, |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 423 | 'link_settings': { |
| 424 | 'libraries': [ |
| 425 | '-lppapi', |
| 426 | '-lppapi_cpp', |
| 427 | '-lnosys', |
| 428 | '-pthread', |
| 429 | ], |
commit-bot@chromium.org | fe42410 | 2014-02-21 00:40:16 +0000 | [diff] [blame] | 430 | 'ldflags': [ |
| 431 | '-L<(nacl_sdk_root)/lib/newlib_x86_<(skia_arch_width)/Release', |
| 432 | '-L<(nacl_sdk_root)/ports/lib/newlib_x86_<(skia_arch_width)/Release', |
| 433 | ], |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 434 | }, |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 435 | }], |
mtklein@google.com | 9f3b0e4 | 2013-10-08 15:16:36 +0000 | [diff] [blame] | 436 | # Enable asan, tsan, etc. |
| 437 | [ 'skia_sanitizer', { |
borenet@google.com | 0d19309 | 2013-07-03 15:55:05 +0000 | [diff] [blame] | 438 | 'cflags': [ |
mtklein@google.com | 9f3b0e4 | 2013-10-08 15:16:36 +0000 | [diff] [blame] | 439 | '-fsanitize=<(skia_sanitizer)', |
borenet@google.com | 0d19309 | 2013-07-03 15:55:05 +0000 | [diff] [blame] | 440 | ], |
| 441 | 'ldflags': [ |
mtklein@google.com | 9f3b0e4 | 2013-10-08 15:16:36 +0000 | [diff] [blame] | 442 | '-fsanitize=<(skia_sanitizer)', |
bungeman@google.com | 1435f9f | 2013-09-25 22:39:22 +0000 | [diff] [blame] | 443 | ], |
mtklein@google.com | 3a19fb5 | 2013-10-09 16:12:23 +0000 | [diff] [blame] | 444 | 'conditions' : [ |
| 445 | [ 'skia_sanitizer == "thread"', { |
mtklein | 0b544ae | 2014-07-08 19:37:47 -0700 | [diff] [blame] | 446 | 'defines': [ 'SK_DYNAMIC_ANNOTATIONS_ENABLED=1' ], |
mtklein@google.com | 3a19fb5 | 2013-10-09 16:12:23 +0000 | [diff] [blame] | 447 | }], |
commit-bot@chromium.org | 05b1b53 | 2014-05-01 19:29:46 +0000 | [diff] [blame] | 448 | [ 'skia_sanitizer == "undefined"', { |
commit-bot@chromium.org | 05b1b53 | 2014-05-01 19:29:46 +0000 | [diff] [blame] | 449 | 'cflags_cc!': ['-fno-rtti'], |
commit-bot@chromium.org | 05b1b53 | 2014-05-01 19:29:46 +0000 | [diff] [blame] | 450 | }], |
mtklein@google.com | 3a19fb5 | 2013-10-09 16:12:23 +0000 | [diff] [blame] | 451 | ], |
bungeman@google.com | 1435f9f | 2013-09-25 22:39:22 +0000 | [diff] [blame] | 452 | }], |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 453 | [ 'skia_clang_build', { |
mtklein | 170e00d | 2014-06-30 12:33:11 -0700 | [diff] [blame] | 454 | 'cflags_cc': [ |
mtklein | 94c4151 | 2014-09-12 17:07:34 -0700 | [diff] [blame] | 455 | # Build in C++11 mode to make sure we'll have an easy time switching. |
| 456 | '-std=c++11', |
mtklein | 170e00d | 2014-06-30 12:33:11 -0700 | [diff] [blame] | 457 | '-Wno-unknown-warning-option', # Allows unknown warnings. |
| 458 | '-Wno-deprecated', # From Qt, via debugger (older Clang). |
| 459 | '-Wno-deprecated-register', # From Qt, via debugger (newer Clang). |
| 460 | ], |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 461 | 'cflags': [ |
mtklein | 170e00d | 2014-06-30 12:33:11 -0700 | [diff] [blame] | 462 | # Extra warnings we like but that only Clang knows about. |
| 463 | '-Wstring-conversion', |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 464 | ], |
commit-bot@chromium.org | 815d360 | 2014-05-20 19:42:03 +0000 | [diff] [blame] | 465 | 'cflags!': [ |
| 466 | '-mfpmath=sse', # Clang doesn't need to be told this, and sometimes gets confused. |
| 467 | ], |
borenet@google.com | 47ae4b0 | 2013-08-21 18:02:50 +0000 | [diff] [blame] | 468 | }], |
commit-bot@chromium.org | 5003bde | 2013-10-25 18:14:54 +0000 | [diff] [blame] | 469 | [ 'skia_keep_frame_pointer', { |
| 470 | 'cflags': [ '-fno-omit-frame-pointer' ], |
| 471 | }], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 472 | ], |
| 473 | }, |
| 474 | ], |
| 475 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 476 | [ 'skia_os == "mac"', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 477 | { |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 478 | 'defines': [ 'SK_BUILD_FOR_MAC' ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 479 | 'configurations': { |
commit-bot@chromium.org | 866f4e3 | 2013-11-21 17:04:29 +0000 | [diff] [blame] | 480 | '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.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 487 | 'Debug': { |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 488 | 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '0' }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 489 | }, |
reed@google.com | e05cc8e | 2011-10-10 14:19:40 +0000 | [diff] [blame] | 490 | 'Release': { |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 491 | 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', }, |
senorblanco@chromium.org | 7288c49 | 2012-01-19 19:59:22 +0000 | [diff] [blame] | 492 | 'defines': [ 'NDEBUG' ], |
reed@google.com | e05cc8e | 2011-10-10 14:19:40 +0000 | [diff] [blame] | 493 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 494 | }, |
| 495 | 'xcode_settings': { |
senorblanco@chromium.org | 29f351a | 2014-01-20 16:14:02 +0000 | [diff] [blame] | 496 | 'conditions': [ |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 497 | [ 'skia_warnings_as_errors', { 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES' }], |
| 498 | [ 'skia_arch_width == 32', { 'ARCHS': ['i386'] }], |
| 499 | [ 'skia_arch_width == 64', { 'ARCHS': ['x86_64'] }], |
senorblanco@chromium.org | 29f351a | 2014-01-20 16:14:02 +0000 | [diff] [blame] | 500 | [ 'skia_osx_deployment_target==""', { |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 501 | 'MACOSX_DEPLOYMENT_TARGET': '10.6', # -mmacos-version-min, passed in env to ld. |
senorblanco@chromium.org | 29f351a | 2014-01-20 16:14:02 +0000 | [diff] [blame] | 502 | }, { |
| 503 | 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)', |
| 504 | }], |
| 505 | ], |
mtklein | 94c4151 | 2014-09-12 17:07:34 -0700 | [diff] [blame] | 506 | 'GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS': 'YES', # -mssse3 |
| 507 | 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', # -fvisibility=hidden |
| 508 | 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'NO', # -fvisibility-inlines-hidden |
mtklein | 335a0ae | 2014-10-13 12:32:34 -0700 | [diff] [blame] | 509 | 'GCC_CW_ASM_SYNTAX': 'NO', # remove -fasm-blocks |
| 510 | 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # remove -mpascal-strings |
| 511 | 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'NO', # -Wno-invalid-offsetof |
mtklein | a34633f | 2014-08-19 13:32:59 -0700 | [diff] [blame] | 512 | 'WARNING_CFLAGS': [ |
| 513 | '-Wall', |
| 514 | '-Wextra', |
| 515 | '-Wno-unused-parameter', |
| 516 | '-Wno-uninitialized', # Disabled because we think GCC 4.2 is bad at this. |
bungeman@google.com | 43b4ed5 | 2012-10-02 15:42:21 +0000 | [diff] [blame] | 517 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 518 | }, |
| 519 | }, |
| 520 | ], |
| 521 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 522 | [ 'skia_os == "ios"', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 523 | { |
| 524 | 'defines': [ |
| 525 | 'SK_BUILD_FOR_IOS', |
| 526 | ], |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 527 | 'conditions' : [ |
| 528 | [ 'skia_warnings_as_errors', { |
| 529 | 'xcode_settings': { |
| 530 | 'OTHER_CPLUSPLUSFLAGS': [ |
| 531 | '-Werror', |
| 532 | ], |
| 533 | }, |
| 534 | }], |
| 535 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 536 | 'configurations': { |
| 537 | 'Debug': { |
| 538 | 'xcode_settings': { |
| 539 | 'GCC_OPTIMIZATION_LEVEL': '0', |
| 540 | }, |
| 541 | }, |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 542 | 'Release': { |
| 543 | 'xcode_settings': { |
commit-bot@chromium.org | 06b3864 | 2013-06-20 20:28:54 +0000 | [diff] [blame] | 544 | 'GCC_OPTIMIZATION_LEVEL': '<(skia_release_optimization_level)', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 545 | }, |
| 546 | 'defines': [ 'NDEBUG' ], |
| 547 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 548 | }, |
| 549 | 'xcode_settings': { |
commit-bot@chromium.org | ae0054e | 2014-04-05 01:13:43 +0000 | [diff] [blame] | 550 | 'ARCHS': ['armv7'], |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 551 | 'CODE_SIGNING_REQUIRED': 'NO', |
| 552 | 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 553 | 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_sdk_version)', |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 554 | 'SDKROOT': 'iphoneos', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 555 | 'TARGETED_DEVICE_FAMILY': '1,2', |
mtklein | 335a0ae | 2014-10-13 12:32:34 -0700 | [diff] [blame] | 556 | 'GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO': 'NO', # -Wno-invalid-offsetof |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 557 | 'OTHER_CPLUSPLUSFLAGS': [ |
| 558 | '-fvisibility=hidden', |
| 559 | '-fvisibility-inlines-hidden', |
| 560 | ], |
bsalomon@google.com | 89dec58 | 2012-09-28 18:33:11 +0000 | [diff] [blame] | 561 | 'GCC_THUMB_SUPPORT': 'NO', |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 562 | }, |
| 563 | }, |
| 564 | ], |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 565 | |
borenet@google.com | a72aef8 | 2013-03-22 13:16:06 +0000 | [diff] [blame] | 566 | [ 'skia_os == "android"', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 567 | { |
| 568 | 'defines': [ |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 569 | 'SK_BUILD_FOR_ANDROID', |
djsollen@google.com | 968757e | 2014-04-11 13:09:21 +0000 | [diff] [blame] | 570 | |
| 571 | # Android Text Tuning |
| 572 | 'SK_GAMMA_EXPONENT=1.4', |
| 573 | 'SK_GAMMA_CONTRAST=0.0', |
| 574 | ], |
| 575 | # Android defines a fixed gamma exponent instead of using SRGB |
| 576 | 'defines!': [ |
| 577 | 'SK_GAMMA_SRGB', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 578 | ], |
scroggo@google.com | eb62950 | 2014-02-04 16:08:48 +0000 | [diff] [blame] | 579 | 'configurations': { |
| 580 | 'Debug': { |
| 581 | 'cflags': ['-g'] |
| 582 | }, |
| 583 | 'Release': { |
| 584 | 'cflags': ['-O2'], |
scroggo@google.com | eb62950 | 2014-02-04 16:08:48 +0000 | [diff] [blame] | 585 | }, |
| 586 | }, |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 587 | 'libraries': [ |
djsollen@google.com | 318cf92 | 2011-11-08 19:03:43 +0000 | [diff] [blame] | 588 | '-llog', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 589 | ], |
djsollen@google.com | 44360bc | 2011-12-05 13:55:55 +0000 | [diff] [blame] | 590 | 'cflags': [ |
borenet@google.com | de9ac14 | 2012-07-25 15:17:03 +0000 | [diff] [blame] | 591 | '-fuse-ld=gold', |
djsollen@google.com | 44360bc | 2011-12-05 13:55:55 +0000 | [diff] [blame] | 592 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 593 | 'conditions': [ |
djsollen | bc89329 | 2014-07-24 13:53:56 -0700 | [diff] [blame] | 594 | [ 'skia_arch_type == "x86"', { |
| 595 | 'cflags': [ |
| 596 | '-mssse3', |
| 597 | ], |
| 598 | }], |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 599 | [ 'skia_android_framework', { |
commit-bot@chromium.org | 2fe641b | 2014-03-25 15:14:18 +0000 | [diff] [blame] | 600 | 'cflags!': [ |
| 601 | '-fuse-ld=gold', |
| 602 | ], |
scroggo@google.com | d4adfa3 | 2014-02-05 16:35:12 +0000 | [diff] [blame] | 603 | }], |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 604 | [ 'skia_shared_lib', { |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 605 | 'defines': [ |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 606 | 'SKIA_DLL', |
| 607 | 'SKIA_IMPLEMENTATION=1', |
scroggo | ecce60b | 2014-07-09 07:26:40 -0700 | [diff] [blame] | 608 | # Needed until we fix skbug.com/2440. |
| 609 | 'SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG', |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 610 | ], |
| 611 | }], |
commit-bot@chromium.org | 183f7f5 | 2013-07-11 12:48:14 +0000 | [diff] [blame] | 612 | [ 'skia_profile_enabled == 1', { |
| 613 | 'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'], |
djsollen@google.com | 3839ca1 | 2011-11-03 17:31:41 +0000 | [diff] [blame] | 614 | }], |
chudy@google.com | bbad34d | 2012-08-13 14:26:36 +0000 | [diff] [blame] | 615 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 616 | }, |
| 617 | ], |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 618 | |
digit@google.com | 1771cbf | 2012-01-26 21:26:40 +0000 | [diff] [blame] | 619 | # We can POD-style initialization of static mutexes to avoid generating |
| 620 | # static initializers if we're using a pthread-compatible thread interface. |
| 621 | [ 'skia_os != "win"', { |
| 622 | 'defines': [ |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 623 | 'SK_USE_POSIX_THREADS', |
digit@google.com | 1771cbf | 2012-01-26 21:26:40 +0000 | [diff] [blame] | 624 | ], |
| 625 | }], |
commit-bot@chromium.org | 199cf69 | 2014-05-08 15:29:57 +0000 | [diff] [blame] | 626 | |
| 627 | [ 'skia_moz2d', { |
| 628 | 'defines': [ |
reed | 6518eaa | 2014-06-18 14:05:22 -0700 | [diff] [blame] | 629 | # 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] | 630 | ], |
| 631 | }], |
| 632 | |
mtklein | a7e930f | 2014-08-06 10:08:42 -0700 | [diff] [blame] | 633 | [ 'skia_is_bot', { |
mtklein | 4d1605a | 2014-07-10 14:16:04 -0700 | [diff] [blame] | 634 | 'defines': [ 'SK_CRASH_HANDLER' ], |
| 635 | }], |
| 636 | |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 637 | ], # end 'conditions' |
caryclark@google.com | 4588ce8 | 2012-09-26 15:48:43 +0000 | [diff] [blame] | 638 | # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details |
| 639 | 'xcode_settings': { |
| 640 | 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 641 | }, |
seanpaul@google.com | 1134f98 | 2011-09-15 14:24:33 +0000 | [diff] [blame] | 642 | } |