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