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