Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / build / common.gypi
blobb0dbfb8ac9fe134b1df5cba55e5a703e85eb3feb
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion.
9   # Variables expected to be overriden on the GYP command line (-D) or by
10   # ~/.gyp/include.gypi.
11   'variables': {
12     # Putting a variables dict inside another variables dict looks kind of
13     # weird.  This is done so that 'host_arch', 'chromeos', etc are defined as
14     # variables within the outer variables dict here.  This is necessary
15     # to get these variables defined for the conditions within this variables
16     # dict that operate on these variables.
17     'variables': {
18       'variables': {
19         'variables': {
20           'variables': {
21             # Whether we're building a ChromeOS build.
22             'chromeos%': 0,
24             # Whether we're building the cast (chromecast) shell
25             'chromecast%': 0,
27             # Whether or not we are using the Aura windowing framework.
28             'use_aura%': 0,
30             # Whether or not we are building the Ash shell.
31             'use_ash%': 0,
33             # Whether or not we are using CRAS, the ChromeOS Audio Server.
34             'use_cras%': 0,
36             # Use a raw surface abstraction.
37             'use_ozone%': 0,
39             # Configure the build for small devices. See crbug.com/318413
40             'embedded%': 0,
42             'conditions': [
43               # Compute the architecture that we're building on.
44               ['OS=="win" or OS=="ios"', {
45                 'host_arch%': 'ia32',
46               }, {
47                 'host_arch%': '<!pymod_do_main(detect_host_arch)',
48               }],
49             ],
50           },
51           # Copy conditionally-set variables out one scope.
52           'chromeos%': '<(chromeos)',
53           'chromecast%': '<(chromecast)',
54           'use_aura%': '<(use_aura)',
55           'use_ash%': '<(use_ash)',
56           'use_cras%': '<(use_cras)',
57           'use_ozone%': '<(use_ozone)',
58           'embedded%': '<(embedded)',
59           'host_arch%': '<(host_arch)',
61           # Whether we are using Views Toolkit
62           'toolkit_views%': 0,
64           # Use the PCI lib to collect GPU information.
65           'use_libpci%': 1,
67           # Use OpenSSL instead of NSS as the underlying SSL and crypto
68           # implementation. Certificate verification will in most cases be
69           # handled by the OS. If OpenSSL's struct X509 is used to represent
70           # certificates, use_openssl_certs must be set.
71           'use_openssl%': 0,
73           # Typedef X509Certificate::OSCertHandle to OpenSSL's struct X509*.
74           'use_openssl_certs%': 0,
76           # Disable viewport meta tag by default.
77           'enable_viewport%': 0,
79           # Enable HiDPI support.
80           'enable_hidpi%': 0,
82           # Override buildtype to select the desired build flavor.
83           # Dev - everyday build for development/testing
84           # Official - release build (generally implies additional processing)
85           # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp
86           # conversion is done), some of the things which are now controlled by
87           # 'branding', such as symbol generation, will need to be refactored
88           # based on 'buildtype' (i.e. we don't care about saving symbols for
89           # non-Official # builds).
90           'buildtype%': 'Dev',
92           # Override branding to select the desired branding flavor.
93           'branding%': 'Chromium',
95           'conditions': [
96             # ChromeOS and Windows use Aura and Ash.
97             ['chromeos==1 or OS=="win" or OS=="linux"', {
98               'use_ash%': 1,
99               'use_aura%': 1,
100             }],
102             ['chromecast==1 and OS!="android"', {
103               'embedded%': 1,
104               'use_ozone%': 1,
105             }],
107             # Ozone uses Aura.
108             ['use_ozone==1', {
109               'use_aura%': 1,
110             }],
112             # Whether we're a traditional desktop unix.
113             ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and chromeos==0', {
114               'desktop_linux%': 1,
115             }, {
116               'desktop_linux%': 0,
117             }],
119             # Embedded implies ozone.
120             ['embedded==1', {
121               'use_ozone%': 1,
122             }],
124             ['OS=="android"', {
125               'target_arch%': 'arm',
126             }, {
127               # Default architecture we're building for is the architecture we're
128               # building on, and possibly sub-architecture (for iOS builds).
129               'target_arch%': '<(host_arch)',
130             }],
131           ],
132         },
133         # Copy conditionally-set variables out one scope.
134         'chromeos%': '<(chromeos)',
135         'chromecast%': '<(chromecast)',
136         'desktop_linux%': '<(desktop_linux)',
137         'use_aura%': '<(use_aura)',
138         'use_ash%': '<(use_ash)',
139         'use_cras%': '<(use_cras)',
140         'use_ozone%': '<(use_ozone)',
141         'embedded%': '<(embedded)',
142         'use_libpci%': '<(use_libpci)',
143         'use_openssl%': '<(use_openssl)',
144         'use_openssl_certs%': '<(use_openssl_certs)',
145         'enable_viewport%': '<(enable_viewport)',
146         'enable_hidpi%': '<(enable_hidpi)',
147         'buildtype%': '<(buildtype)',
148         'branding%': '<(branding)',
149         'host_arch%': '<(host_arch)',
150         'target_arch%': '<(target_arch)',
152         'target_subarch%': '',
154         # The channel to build on Android: stable, beta, dev, canary, or
155         # default. "default" should be used on non-official builds.
156         'android_channel%': 'default',
158         # WebView now builds in a normal android build; don't use this.
159         # TODO(torne): remove this. http://crbug.com/440793
160         'android_webview_build%': 0,
162         # Set ARM architecture version.
163         'arm_version%': 7,
165         # Use aurax11 for clipboard implementation. This is true on linux_aura.
166         'use_clipboard_aurax11%': 0,
168         # goma settings.
169         # 1 to use goma.
170         # If no gomadir is set, it uses the default gomadir.
171         'use_goma%': 0,
172         'gomadir%': '',
174         # The system root for cross-compiles. Default: none.
175         'sysroot%': '',
176         'chroot_cmd%': '',
178         # The system libdir used for this ABI.
179         'system_libdir%': 'lib',
181         # Default MIPS arch variant. This is set in the conditions block
182         # below for MIPS targets.
183         'mips_arch_variant%': '',
185         # MIPS DSP ASE revision. Possible values are:
186         #   0: unavailable
187         #   1: revision 1
188         #   2: revision 2
189         'mips_dsp_rev%': 0,
191         'conditions': [
192           # Ash needs Aura.
193           ['use_aura==0', {
194             'use_ash%': 0,
195           }],
197           # Set default value of toolkit_views based on OS.
198           ['OS=="mac" or OS=="win" or chromeos==1 or use_aura==1', {
199             'toolkit_views%': 1,
200           }, {
201             'toolkit_views%': 0,
202           }],
204           # Embedded builds use aura without ash or views.
205           ['embedded==1', {
206             'use_aura%': 1,
207             'use_ash%': 0,
208             'toolkit_views%': 0,
209           }],
211           # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux.
212           ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', {
213             'enable_hidpi%': 1,
214           }],
216           # Enable the OpenSSL backend on Mac OS and Windows.
217           ['OS=="mac" or OS=="win"', {
218             'use_openssl%': 1,
219           }],
221           # Enable App Launcher everywhere but mobile.
222           ['OS!="ios" and OS!="android"', {
223             'enable_app_list%': 1,
224           }, {
225             'enable_app_list%': 0,
226           }],
228           ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="android")', {
229             'use_default_render_theme%': 1,
230           }, {
231             'use_default_render_theme%': 0,
232           }],
234           ['use_ozone==1', {
235             'use_ozone_evdev%': 1,
236           }, {
237             'use_ozone_evdev%': 0,
238           }],
240           # Set default gomadir.
241           ['OS=="win"', {
242             'gomadir': 'c:\\goma\\goma-win',
243           }, {
244             'gomadir': '<!(/bin/echo -n ${HOME}/goma)',
245           }],
247           # Set the default "target_subarch" on iOS. Valid values are "arm32",
248           # "arm64" and "both" (meaning a fat binary).
249           ['OS=="ios"', {
250             'target_subarch%': 'arm64',
251           }],
253           # Set arch variants for MIPS platforms.
254           ['target_arch=="mips64el"', {
255             'conditions': [
256               ['OS=="android"', {
257                 'mips_arch_variant%': 'r6',
258               }, {
259                 'mips_arch_variant%': 'r2',
260               }],
261             ],
262           }],
264           ['target_arch=="mipsel"', {
265             'mips_arch_variant%': 'r1',
266           }],
267         ],
268       },
270       # Copy conditionally-set variables out one scope.
271       'chromeos%': '<(chromeos)',
272       'chromecast%': '<(chromecast)',
273       'host_arch%': '<(host_arch)',
274       'target_arch%': '<(target_arch)',
275       'target_subarch%': '<(target_subarch)',
276       'mips_arch_variant%': '<(mips_arch_variant)',
277       'mips_dsp_rev%': '<(mips_dsp_rev)',
278       'toolkit_views%': '<(toolkit_views)',
279       'desktop_linux%': '<(desktop_linux)',
280       'use_aura%': '<(use_aura)',
281       'use_ash%': '<(use_ash)',
282       'use_cras%': '<(use_cras)',
283       'use_libpci%': '<(use_libpci)',
284       'use_ozone%': '<(use_ozone)',
285       'use_ozone_evdev%': '<(use_ozone_evdev)',
286       'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
287       'embedded%': '<(embedded)',
288       'use_openssl%': '<(use_openssl)',
289       'use_openssl_certs%': '<(use_openssl_certs)',
290       'enable_viewport%': '<(enable_viewport)',
291       'enable_hidpi%': '<(enable_hidpi)',
292       'android_channel%': '<(android_channel)',
293       'android_webview_build%': '<(android_webview_build)',
294       'use_goma%': '<(use_goma)',
295       'gomadir%': '<(gomadir)',
296       'enable_app_list%': '<(enable_app_list)',
297       'use_default_render_theme%': '<(use_default_render_theme)',
298       'buildtype%': '<(buildtype)',
299       'branding%': '<(branding)',
300       'arm_version%': '<(arm_version)',
301       'sysroot%': '<(sysroot)',
302       'chroot_cmd%': '<(chroot_cmd)',
303       'system_libdir%': '<(system_libdir)',
305       # Set to 1 to enable fast builds. Set to 2 for even faster builds
306       # (it disables debug info for fastest compilation - only for use
307       # on compile-only bots).
308       'fastbuild%': 0,
310       # Set to 1 to not store any build metadata, e.g. ifdef out all __DATE__
311       # and __TIME__. Set to 0 to reenable the use of these macros in the code
312       # base. See http://crbug.com/314403.
313       'dont_embed_build_metadata%': 1,
315       # Set to 1 to force Visual C++ to use legacy debug information format /Z7.
316       # This is useful for parallel compilation tools which can't support /Zi.
317       # Only used on Windows.
318       'win_z7%' : 0,
320       # Set to 1 to enable dcheck in Release build.
321       'dcheck_always_on%': 0,
323       # Set to 1 to make a build that disables unshipped tracing events.
324       # Note: this setting is ignored if buildtype=="Official".
325       'tracing_like_official_build%': 0,
327       # Disable image loader component extension by default.
328       'image_loader_extension%': 0,
330       # Set NEON compilation flags.
331       'arm_neon%': 1,
333       # Detect NEON support at run-time.
334       'arm_neon_optional%': 0,
336       # Use libjpeg-turbo as the JPEG codec used by Chromium.
337       'use_libjpeg_turbo%': 1,
339       # Use system libjpeg. Note that the system's libjepg will be used even if
340       # use_libjpeg_turbo is set.
341       'use_system_libjpeg%': 0,
343       # By default, component is set to static_library and it can be overriden
344       # by the GYP command line or by ~/.gyp/include.gypi.
345       'component%': 'static_library',
347       # /analyze is off by default on Windows because it is very slow and noisy.
348       # Enable with GYP_DEFINES=win_analyze=1
349       'win_analyze%': 0,
351       # Set to select the Title Case versions of strings in GRD files.
352       'use_titlecase_in_grd%': 0,
354       # Use translations provided by volunteers at launchpad.net.  This
355       # currently only works on Linux.
356       'use_third_party_translations%': 0,
358       # Remoting compilation is enabled by default. Set to 0 to disable.
359       'remoting%': 1,
361       # Configuration policy is enabled by default. Set to 0 to disable.
362       'configuration_policy%': 1,
364       # Variable safe_browsing is used to control the build time configuration
365       # for safe browsing feature. Safe browsing can be compiled in 3 different
366       # levels: 0 disables it, 1 enables it fully, and 2 enables only UI and
367       # reporting features without enabling phishing and malware detection. This
368       # is useful to integrate a third party phishing/malware detection to
369       # existing safe browsing logic.
370       'safe_browsing%': 1,
372       # Web speech is enabled by default. Set to 0 to disable.
373       'enable_web_speech%': 1,
375       # Notifications are compiled in by default. Set to 0 to disable.
376       'notifications%' : 1,
378       # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for
379       # regular builds and 1 for ASan builds.
380       'mac_want_real_dsym%': 'default',
382       # If this is set, the clang plugins used on the buildbot will be used.
383       # Run tools/clang/scripts/update.sh to make sure they are compiled.
384       # This causes 'clang_chrome_plugins_flags' to be set.
385       # Has no effect if 'clang' is not set as well.
386       'clang_use_chrome_plugins%': 1,
388       # Enable building with ASAN (Clang's -fsanitize=address option).
389       # -fsanitize=address only works with clang, but asan=1 implies clang=1
390       # See https://sites.google.com/a/chromium.org/dev/developers/testing/addresssanitizer
391       'asan%': 0,
392       'asan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/asan/blacklist.txt',
393       # Enable coverage gathering instrumentation in sanitizer tools. This flag
394       # also controls coverage granularity (1 for function-level coverage, 2
395       # for block-level coverage).
396       'sanitizer_coverage%': 0,
397       # Deprecated, only works if |sanitizer_coverage| isn't set.
398       # TODO(glider): remove this flag.
399       'asan_coverage%': 0,
400       # Enable intra-object-overflow detection in ASan (experimental).
401       'asan_field_padding%': 0,
403       # Enable Chromium overrides of the default configurations for various
404       # dynamic tools (like ASan).
405       'use_sanitizer_options%': 0,
407       # Enable building with SyzyAsan.
408       # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo
409       'syzyasan%': 0,
411       # Enable crash reporting via Kasko.
412       'kasko%': 0,
414       # Enable building with LSan (Clang's -fsanitize=leak option).
415       # -fsanitize=leak only works with clang, but lsan=1 implies clang=1
416       # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaksanitizer
417       'lsan%': 0,
419       # Enable building with TSan (Clang's -fsanitize=thread option).
420       # -fsanitize=thread only works with clang, but tsan=1 implies clang=1
421       # See http://clang.llvm.org/docs/ThreadSanitizer.html
422       'tsan%': 0,
423       'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/tsan_v2/ignores.txt',
425       # Enable building with MSan (Clang's -fsanitize=memory option).
426       # MemorySanitizer only works with clang, but msan=1 implies clang=1
427       # See http://clang.llvm.org/docs/MemorySanitizer.html
428       'msan%': 0,
429       'msan_blacklist%': '<(PRODUCT_DIR)/../../tools/msan/blacklist.txt',
430       # Track where uninitialized memory originates from. From fastest to
431       # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2
432       # - track the chain of stores leading from allocation site to use site.
433       'msan_track_origins%': 2,
435       # Enable building with UBSan (Clang's -fsanitize=undefined option).
436       # -fsanitize=undefined only works with clang, but ubsan=1 implies clang=1
437       # See http://clang.llvm.org/docs/UsersManual.html
438       'ubsan%': 0,
439       'ubsan_blacklist%': '<(PRODUCT_DIR)/../../tools/ubsan/blacklist.txt',
441       # Enable building with UBsan's vptr (Clang's -fsanitize=vptr option).
442       # -fsanitize=vptr only works with clang, but ubsan_vptr=1 implies clang=1
443       'ubsan_vptr%': 0,
445       # Use dynamic libraries instrumented by one of the sanitizers
446       # instead of the standard system libraries. Set this flag to build the
447       # libraries from source.
448       'use_instrumented_libraries%': 0,
450       # Use dynamic libraries instrumented by one of the sanitizers
451       # instead of the standard system libraries. Set this flag to download
452       # prebuilt binaries from GCS.
453       'use_prebuilt_instrumented_libraries%': 0,
455       # Use libc++ (third_party/libc++ and third_party/libc++abi) instead of
456       # stdlibc++ as standard library. This is intended to use for instrumented
457       # builds.
458       'use_custom_libcxx%': 0,
460       # Use system libc++ instead of the default C++ library, usually libstdc++.
461       # This is intended for iOS builds only.
462       'use_system_libcxx%': 0,
464       # Use a modified version of Clang to intercept allocated types and sizes
465       # for allocated objects. clang_type_profiler=1 implies clang=1.
466       # See http://dev.chromium.org/developers/deep-memory-profiler/cpp-object-type-identifier
467       # TODO(dmikurube): Support mac.  See http://crbug.com/123758#c11
468       'clang_type_profiler%': 0,
470       # Set to true to instrument the code with function call logger.
471       # See src/third_party/cygprofile/cyg-profile.cc for details.
472       'order_profiling%': 0,
474       # Use the provided profiled order file to link Chrome image with it.
475       # This makes Chrome faster by better using CPU cache when executing code.
476       # This is known as PGO (profile guided optimization).
477       # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-effort
478       'order_text_section%' : "",
480       # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
481       # libraries on linux x86-64 and arm, plus ASLR.
482       'linux_fpic%': 1,
484       # Whether one-click signin is enabled or not.
485       'enable_one_click_signin%': 0,
487       # Whether to back up data before sync.
488       'enable_pre_sync_backup%': 0,
490       # Enable Chrome browser extensions
491       'enable_extensions%': 1,
493       # Enable Google Now.
494       'enable_google_now%': 1,
496       # Enable basic printing support and UI.
497       'enable_basic_printing%': 1,
499       # Enable printing with print preview. It does not imply
500       # enable_basic_printing. It's possible to build Chrome with preview only.
501       'enable_print_preview%': 1,
503       # Set the version of CLD.
504       #   0: Don't specify the version. This option is for the Finch testing.
505       #   1: Use only CLD1.
506       #   2: Use only CLD2.
507       'cld_version%': 2,
509       # For CLD2, the size of the tables that should be included in the build
510       # Only evaluated if cld_version == 2 or if building the CLD2 dynamic data
511       # tool explicitly.
512       # See third_party/cld_2/cld_2.gyp for more information.
513       #   0: Small tables, lower accuracy
514       #   2: Large tables, high accuracy
515       'cld2_table_size%': 2,
517       # Enable spell checker.
518       'enable_spellcheck%': 1,
520       # Webrtc compilation is enabled by default. Set to 0 to disable.
521       'enable_webrtc%': 1,
523       # Media router support is enabled by default. Set to 0 to disable.
524       'enable_media_router%': 1,
526       # Enables use of the session service, which is enabled by default.
527       # Support for disabling depends on the platform.
528       'enable_session_service%': 1,
530       # Enables theme support, which is enabled by default.  Support for
531       # disabling depends on the platform.
532       'enable_themes%': 1,
534       # Enables autofill dialog and associated features; disabled by default.
535       'enable_autofill_dialog%' : 0,
537       # Defaults Wallet integration in Autofill dialog to use production
538       # servers. Unofficial builds won't have the proper API keys.
539       'enable_prod_wallet_service%': 0,
541       # Enables support for background apps.
542       'enable_background%': 1,
544       # Enable the task manager by default.
545       'enable_task_manager%': 1,
547       # Enables used resource whitelist generation; disabled by default.
548       'enable_resource_whitelist_generation%': 0,
550       # Enable FILE support by default.
551       'disable_file_support%': 0,
553       # Enable FTP support by default.
554       'disable_ftp_support%': 0,
556       # Use native android functions in place of ICU.  Not supported by most
557       # components.
558       'use_icu_alternatives_on_android%': 0,
560       # Use of precompiled headers on Windows.
561       #
562       # This variable may be explicitly set to 1 (enabled) or 0
563       # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
564       # This setting will override the default.
565       #
566       # See
567       # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders
568       # for details.
569       'chromium_win_pch%': 0,
571       # Clang stuff.
572       'make_clang_dir%': 'third_party/llvm-build/Release+Asserts',
573       # Set this to true when building with Clang.
574       # See http://code.google.com/p/chromium/wiki/Clang for details.
575       # If this is set, clang is used as both host and target compiler in
576       # cross-compile builds.
577       'clang%': 0,
579       # Use experimental lld linker instead of the platform's default linker.
580       'use_lld%': 0,
582       # Enable plugin installation by default.
583       'enable_plugin_installation%': 1,
585       # Specifies whether to use canvas_skia.cc in place of platform
586       # specific implementations of gfx::Canvas. Affects text drawing in the
587       # Chrome UI.
588       # TODO(asvitkine): Enable this on all platforms and delete this flag.
589       #                  http://crbug.com/105550
590       'use_canvas_skia%': 0,
592       # Set to "tsan", "memcheck", or "drmemory" to configure the build to work
593       # with one of those tools.
594       'build_for_tool%': '',
596       # If no directory is specified then a temporary directory will be used.
597       'test_isolation_outdir%': '',
599       'wix_path%': '<(DEPTH)/third_party/wix',
601       # Supervised users are enabled by default.
602       'enable_supervised_users%': 1,
604       # Platform sends memory pressure signals natively.
605       'native_memory_pressure_signals%': 0,
607       'spdy_proxy_auth_property%' : '',
608       'spdy_proxy_auth_value%' : '',
609       'enable_mdns%' : 0,
610       'enable_service_discovery%': 0,
611       'enable_wifi_bootstrapping%': 0,
612       'enable_hangout_services_extension%': 0,
614        # Enable the Syzygy optimization step.
615       'syzygy_optimize%': 0,
617       # Enable hole punching for the protected video.
618       'video_hole%': 0,
620       # Automatically select platforms under ozone. Turn this off to
621       # build only explicitly selected platforms.
622       'ozone_auto_platforms%': 1,
624       # If this is set clang is used as host compiler, but not as target
625       # compiler. Always do this by default.
626       'host_clang%': 1,
628       # Variables to control Link-Time Optimization (LTO).
629       # On Android, the variable use_lto enables LTO on code compiled with -Os,
630       # and use_lto_o2 enables LTO on code compiled with -O2. On other
631       # platforms, use_lto enables LTO in all translation units, and use_lto_o2
632       # has no effect.
633       #
634       # On Linux and Android, when using LLVM LTO, the script
635       # build/download_gold_plugin.py must be run to download a linker plugin.
636       # On Mac, LLVM needs to be built from scratch using
637       # tools/clang/scripts/update.py and the absolute path to
638       # third_party/llvm-build/Release+Asserts/lib must be added to
639       # $DYLD_LIBRARY_PATH to pick up the right version of the linker plugin.
640       #
641       # On Android, the variables must *not* be enabled at the same time.
642       # In this case LTO would 'merge' the optimization flags at link-time
643       # which would lead to all code be optimized with -O2. See crbug.com/407544
644       'use_lto%': 0,
645       'use_lto_o2%': 0,
647       # Allowed level of identical code folding in the gold linker.
648       'gold_icf_level%': 'safe',
650       # Libxkbcommon usage.
651       'use_xkbcommon%': 0,
653       # Control Flow Integrity for virtual calls.
654       # See http://clang.llvm.org/docs/ControlFlowIntegrity.html
655       'cfi_vptr%': 0,
657       # Control Flow Integrity for casts.
658       # See http://clang.llvm.org/docs/ControlFlowIntegrity.html
659       'cfi_derived_cast%': 0,
660       'cfi_unrelated_cast%': 0,
662       'cfi_blacklist%': '<(PRODUCT_DIR)/../../tools/cfi/blacklist.txt',
664       # Whether the entire browser uses toolkit-views on Mac instead of Cocoa.
665       'mac_views_browser%': 0,
667       'conditions': [
668         # A flag for POSIX platforms
669         ['OS=="win"', {
670           'os_posix%': 0,
671         }, {
672           'os_posix%': 1,
673         }],
675         # A flag for BSD platforms
676         ['OS=="freebsd" or OS=="openbsd"', {
677           'os_bsd%': 1,
678         }, {
679           'os_bsd%': 0,
680         }],
682         # NSS usage.
683         ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==0', {
684           'use_nss%': 1,
685         }, {
686           'use_nss%': 0,
687         }],
689         # When OpenSSL is used for SSL and crypto on Unix-like systems, use
690         # OpenSSL's certificate definition.
691         ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==1', {
692           'use_openssl_certs%': 1,
693         }, {
694           'use_openssl_certs%': 0,
695         }],
697         # libudev usage.  This currently only affects the content layer.
698         ['OS=="linux" and embedded==0', {
699           'use_udev%': 1,
700         }, {
701           'use_udev%': 0,
702         }],
704         # Flags to use X11 on non-Mac POSIX platforms.
705         ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
706           'use_x11%': 0,
707         }, {
708           'use_x11%': 1,
709         }],
711         # Flags to use glib.
712         ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
713           'use_glib%': 0,
714         }, {
715           'use_glib%': 1,
716         }],
718         # Flags to use pango and cairo.
719         ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', {
720           'use_pango%': 0,
721           'use_cairo%': 0,
722         }, {
723           'use_pango%': 1,
724           'use_cairo%': 1,
725         }],
727         # DBus usage.
728         ['OS=="linux" and embedded==0', {
729           'use_dbus%': 1,
730         }, {
731           'use_dbus%': 0,
732         }],
734         # We always use skia text rendering in Aura on Windows, since GDI
735         # doesn't agree with our BackingStore.
736         # TODO(beng): remove once skia text rendering is on by default.
737         ['use_aura==1 and OS=="win"', {
738           'enable_skia_text%': 1,
739         }],
741         # A flag to enable or disable our compile-time dependency
742         # on gnome-keyring. If that dependency is disabled, no gnome-keyring
743         # support will be available. This option is useful
744         # for Linux distributions and for Aura.
745         ['OS!="linux" or chromeos==1', {
746           'use_gnome_keyring%': 0,
747         }, {
748           'use_gnome_keyring%': 1,
749         }],
751         ['OS=="mac" or OS=="ios"', {
752           # Mac and iOS want Title Case strings
753           'use_titlecase_in_grd%': 1,
754         }],
756         # Enable loader extensions on Chrome OS.
757         ['chromeos==1', {
758           'image_loader_extension%': 1,
759         }, {
760           'image_loader_extension%': 0,
761         }],
763         ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
764           'enable_one_click_signin%': 1,
765           'enable_pre_sync_backup%': 1,
766         }],
768         ['OS=="android"', {
769           'enable_extensions%': 0,
770           'enable_google_now%': 0,
771           'cld_version%': 1,
772           'enable_spellcheck%': 0,
773           'enable_themes%': 0,
774           'remoting%': 0,
775           'arm_neon%': 0,
776           'arm_neon_optional%': 1,
777           'native_memory_pressure_signals%': 1,
778           'enable_basic_printing%': 1,
779           'enable_print_preview%': 0,
780           'enable_task_manager%':0,
781           'video_hole%': 1,
782         }],
784         # Android OS includes support for proprietary codecs regardless of
785         # building Chromium or Google Chrome. We also ship Google Chrome and
786         # Chromecast with proprietary codecs.
787         ['OS=="android" or branding=="Chrome" or chromecast==1', {
788           'proprietary_codecs%': 1,
789         }, {
790           'proprietary_codecs%': 0,
791         }],
793         ['OS=="mac" or OS=="ios"', {
794           'native_memory_pressure_signals%': 1,
795         }],
797         # Enable autofill dialog when not on iOS.
798         ['OS!="ios"', {
799           'enable_autofill_dialog%': 1,
801           'conditions': [
802             ['buildtype=="Official"', {
803               'enable_prod_wallet_service%': 1,
804             }],
805           ]
806         }],
808         ['OS=="android"', {
809           'enable_webrtc%': 1,
810         }],
812         ['OS=="ios"', {
813           'disable_ftp_support%': 1,
814           'enable_extensions%': 0,
815           'enable_google_now%': 0,
816           'cld_version%': 2,
817           'cld2_table_size%': 0,
818           'enable_basic_printing%': 0,
819           'enable_print_preview%': 0,
820           'enable_session_service%': 0,
821           'enable_spellcheck%': 0,
822           'enable_themes%': 0,
823           'enable_webrtc%': 0,
824           'notifications%': 0,
825           'remoting%': 0,
826           'safe_browsing%': 0,
827           'enable_supervised_users%': 0,
828           'enable_task_manager%': 0,
829           'use_system_libcxx%': 1,
830         }],
832         # Use GPU accelerated cross process image transport by default
833         # on linux builds with the Aura window manager
834         ['use_aura==1 and OS=="linux"', {
835           'ui_compositor_image_transport%': 1,
836         }, {
837           'ui_compositor_image_transport%': 0,
838         }],
840         # Turn precompiled headers on by default.
841         ['OS=="win" and buildtype!="Official"', {
842           'chromium_win_pch%': 1
843         }],
845         ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', {
846           'enable_plugin_installation%': 0,
847         }, {
848           'enable_plugin_installation%': 1,
849         }],
851         # Whether PPAPI is enabled.
852         ['OS=="android" or OS=="ios" or embedded==1', {
853           'enable_plugins%': 0,
854         }, {
855           'enable_plugins%': 1,
856         }],
858         # linux_use_bundled_gold: whether to use the gold linker binary checked
859         # into third_party/binutils.  Force this off via GYP_DEFINES when you
860         # are using a custom toolchain and need to control -B in ldflags.
861         # Do not use 32-bit gold on 32-bit hosts as it runs out address space
862         # for component=static_library builds.
863         ['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', {
864           'linux_use_bundled_gold%': 1,
865         }, {
866           'linux_use_bundled_gold%': 0,
867         }],
869         # linux_use_bundled_binutils: whether to use the binary binutils
870         # checked into third_party/binutils.  These are not multi-arch so cannot
871         # be used except on x86 and x86-64 (the only two architectures which
872         # are currently checke in).  Force this off via GYP_DEFINES when you
873         # are using a custom toolchain and need to control -B in cflags.
874         ['OS=="linux" and (target_arch=="x64")', {
875           'linux_use_bundled_binutils%': 1,
876         }, {
877           'linux_use_bundled_binutils%': 0,
878         }],
880         # linux_use_gold_flags: whether to use build flags that rely on gold.
881         # On by default for x64 Linux.
882         ['OS=="linux" and target_arch=="x64"', {
883           'linux_use_gold_flags%': 1,
884         }, {
885           'linux_use_gold_flags%': 0,
886         }],
888         # linux_use_debug_fission: whether to use split DWARF debug info
889         # files. This can reduce link time significantly, but is incompatible
890         # with some utilities such as icecc and ccache. Requires gold and
891         # gcc >= 4.8 or clang.
892         # http://gcc.gnu.org/wiki/DebugFission
893         ['OS=="linux" and target_arch=="x64"', {
894           'linux_use_debug_fission%': 1,
895         }, {
896           'linux_use_debug_fission%': 0,
897         }],
899         ['OS=="android" or OS=="ios"', {
900           'enable_captive_portal_detection%': 0,
901           'enable_media_router%': 0,
902         }, {
903           'enable_captive_portal_detection%': 1,
904           'enable_media_router%': 1,
905         }],
907         # Enable Skia UI text drawing incrementally on different platforms.
908         # http://crbug.com/105550
909         #
910         # On Aura, this allows per-tile painting to be used in the browser
911         # compositor.
912         ['OS!="android" and OS!="ios"', {
913           'use_canvas_skia%': 1,
914         }],
916         ['chromeos==1', {
917           'enable_basic_printing%': 0,
918           'enable_print_preview%': 1,
919           # When building for ChromeOS we dont want Chromium to use libjpeg_turbo.
920           'use_libjpeg_turbo%': 0,
921         }],
923         # Do not enable the Settings App on ChromeOS.
924         ['enable_app_list==1 and chromeos==0', {
925           'enable_settings_app%': 1,
926         }, {
927           'enable_settings_app%': 0,
928         }],
930         ['OS=="linux" and target_arch=="arm" and chromeos==0', {
931           # Set some defaults for arm/linux chrome builds
932           'use_allocator%': 'none',
933           # sysroot needs to be an absolute path otherwise it generates
934           # incorrect results when passed to pkg-config
935           'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_arm-sysroot',
936         }], # OS=="linux" and target_arch=="arm" and chromeos==0
938         ['OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0', {
939           'conditions': [
940             ['target_arch=="x64"', {
941               'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_amd64-sysroot',
942             }],
943             ['target_arch=="ia32"', {
944               'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_i386-sysroot',
945             }],
946         ],
947         }], # OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0
949         ['OS=="linux" and target_arch=="mipsel"', {
950           'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot',
951           'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu-gcc',
952         }],
954         # Whether tests targets should be run, archived or just have the
955         # dependencies verified. All the tests targets have the '_run' suffix,
956         # e.g. base_unittests_run runs the target base_unittests. The test
957         # target always calls tools/swarming_client/isolate.py. See the script's
958         # --help for more information. Meant to be overriden with GYP_DEFINES.
959         # TODO(maruel): Remove the conditions as more configurations are
960         # supported.
961         ['OS!="ios" and OS!="android" and chromeos==0', {
962           'test_isolation_mode%': 'check',
963         }, {
964           'test_isolation_mode%': 'noop',
965         }],
966         # Whether Android build uses OpenMAX DL FFT.
967         ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target_arch=="ia32" or target_arch=="x64" or target_arch=="arm64" or target_arch=="mipsel")', {
968           # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mipsel.
969           # When enabled, this will also enable WebAudio support on
970           # Android for these architectures.  Default is enabled.  Whether
971           # WebAudio is actually available depends on runtime settings
972           # and flags.
973           'use_openmax_dl_fft%': 1,
974         }, {
975           'use_openmax_dl_fft%': 0,
976         }],
977         ['OS=="win" or OS=="linux"', {
978             'enable_mdns%' : 1,
979         }],
981         # Turns on compiler optimizations in V8 in Debug build, except
982         # on android_clang, where we're hitting a weird linker error.
983         # TODO(dpranke): http://crbug.com/266155 .
984         ['OS=="android"', {
985           'v8_optimized_debug%': 1,
986         }, {
987           'v8_optimized_debug%': 2,
988         }],
990         # Disable various features by default on embedded.
991         ['embedded==1', {
992           'remoting%': 0,
993           'enable_basic_printing%': 0,
994           'enable_print_preview%': 0,
995         }],
997         # By default, use ICU data file (icudtl.dat) on all platforms
998         # except when building Android WebView.
999         # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium).
1000         # Set the data reduction proxy origin for Android Webview.
1001         ['android_webview_build==0', {
1002           'icu_use_data_file_flag%' : 1,
1003         }, {
1004           'icu_use_data_file_flag%' : 0,
1005         }],
1006         ['OS=="win" or OS=="mac"', {
1007           'enable_wifi_bootstrapping%' : 1,
1008         }],
1010         # Path to sas.dll, which provides the SendSAS function.
1011         # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs.85).aspx
1012         ['target_arch=="x64"', {
1013           'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/amd64',
1014         }, {
1015           'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
1016         }],
1018         # Turn on JNI generation optimizations on non-WebView builds.
1019         ['OS=="android" and android_webview_build==0', {
1020           'optimize_jni_generation%': 1,
1021         }, {
1022           'optimize_jni_generation%': 0,
1023         }],
1025         # TODO(rmcilroy): Enable v8_use_external_startup_data on ChromeOS
1026         # http://crbug.com/421063
1027         ['chromecast==0 and chromeos==0 and OS!="ios"', {
1028           'v8_use_external_startup_data%': 1,
1029         }, {
1030           'v8_use_external_startup_data%': 0,
1031         }],
1032       ],
1034       # Set this to 1 to enable use of concatenated impulse responses
1035       # for the HRTF panner in WebAudio.
1036       'use_concatenated_impulse_responses': 1,
1038       # You can set the variable 'use_official_google_api_keys' to 1
1039       # to use the Google-internal file containing official API keys
1040       # for Google Chrome even in a developer build.  Setting this
1041       # variable explicitly to 1 will cause your build to fail if the
1042       # internal file is missing.
1043       #
1044       # The variable is documented here, but not handled in this file;
1045       # see //google_apis/determine_use_official_keys.gypi for the
1046       # implementation.
1047       #
1048       # Set the variable to 0 to not use the internal file, even when
1049       # it exists in your checkout.
1050       #
1051       # Leave it unset in your include.gypi to have the variable
1052       # implicitly set to 1 if you have
1053       # src/google_apis/internal/google_chrome_api_keys.h in your
1054       # checkout, and implicitly set to 0 if not.
1055       #
1056       # Note that official builds always behave as if the variable
1057       # was explicitly set to 1, i.e. they always use official keys,
1058       # and will fail to build if the internal file is missing.
1059       #
1060       # NOTE: You MUST NOT explicitly set the variable to 2 in your
1061       # include.gypi or by other means. Due to subtleties of GYP, this
1062       # is not the same as leaving the variable unset, even though its
1063       # default value in
1064       # //google_apis/determine_use_official_keys.gypi is 2.
1066       # Set these to bake the specified API keys and OAuth client
1067       # IDs/secrets into your build.
1068       #
1069       # If you create a build without values baked in, you can instead
1070       # set environment variables to provide the keys at runtime (see
1071       # src/google_apis/google_api_keys.h for details).  Features that
1072       # require server-side APIs may fail to work if no keys are
1073       # provided.
1074       #
1075       # Note that if you are building an official build or if
1076       # use_official_google_api_keys has been set to 1 (explicitly or
1077       # implicitly), these values will be ignored and the official
1078       # keys will be used instead.
1079       'google_api_key%': '',
1080       'google_default_client_id%': '',
1081       'google_default_client_secret%': '',
1082       # Native Client is enabled by default.
1083       'disable_nacl%': '0',
1085       # Sets the default version name and code for Android app, by default we
1086       # do a developer build.
1087       'android_app_version_name%': 'Developer Build',
1088       'android_app_version_code%': 1,
1089     },
1091     # Copy conditionally-set variables out one scope.
1092     'branding%': '<(branding)',
1093     'buildtype%': '<(buildtype)',
1094     'target_arch%': '<(target_arch)',
1095     'target_subarch%': '<(target_subarch)',
1096     'mips_arch_variant%': '<(mips_arch_variant)',
1097     'mips_dsp_rev%': '<(mips_dsp_rev)',
1098     'host_arch%': '<(host_arch)',
1099     'toolkit_views%': '<(toolkit_views)',
1100     'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
1101     'use_aura%': '<(use_aura)',
1102     'use_ash%': '<(use_ash)',
1103     'use_cras%': '<(use_cras)',
1104     'use_libpci%': '<(use_libpci)',
1105     'use_openssl%': '<(use_openssl)',
1106     'use_openssl_certs%': '<(use_openssl_certs)',
1107     'use_nss%': '<(use_nss)',
1108     'use_udev%': '<(use_udev)',
1109     'os_bsd%': '<(os_bsd)',
1110     'os_posix%': '<(os_posix)',
1111     'use_dbus%': '<(use_dbus)',
1112     'use_glib%': '<(use_glib)',
1113     'use_pango%': '<(use_pango)',
1114     'use_cairo%': '<(use_cairo)',
1115     'use_ozone%': '<(use_ozone)',
1116     'use_ozone_evdev%': '<(use_ozone_evdev)',
1117     'use_xkbcommon%': '<(use_xkbcommon)',
1118     'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
1119     'desktop_linux%': '<(desktop_linux)',
1120     'use_x11%': '<(use_x11)',
1121     'use_gnome_keyring%': '<(use_gnome_keyring)',
1122     'linux_fpic%': '<(linux_fpic)',
1123     'chromeos%': '<(chromeos)',
1124     'chromecast%': '<(chromecast)',
1125     'enable_viewport%': '<(enable_viewport)',
1126     'enable_hidpi%': '<(enable_hidpi)',
1127     'image_loader_extension%': '<(image_loader_extension)',
1128     'fastbuild%': '<(fastbuild)',
1129     'dont_embed_build_metadata%': '<(dont_embed_build_metadata)',
1130     'win_z7%': '<(win_z7)',
1131     'dcheck_always_on%': '<(dcheck_always_on)',
1132     'tracing_like_official_build%': '<(tracing_like_official_build)',
1133     'arm_version%': '<(arm_version)',
1134     'arm_neon%': '<(arm_neon)',
1135     'arm_neon_optional%': '<(arm_neon_optional)',
1136     'sysroot%': '<(sysroot)',
1137     'chroot_cmd%': '<(chroot_cmd)',
1138     'system_libdir%': '<(system_libdir)',
1139     'component%': '<(component)',
1140     'win_analyze%': '<(win_analyze)',
1141     'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_generation)',
1142     'use_titlecase_in_grd%': '<(use_titlecase_in_grd)',
1143     'use_third_party_translations%': '<(use_third_party_translations)',
1144     'remoting%': '<(remoting)',
1145     'enable_one_click_signin%': '<(enable_one_click_signin)',
1146     'enable_pre_sync_backup%': '<(enable_pre_sync_backup)',
1147     'enable_media_router%': '<(enable_media_router)',
1148     'enable_webrtc%': '<(enable_webrtc)',
1149     'chromium_win_pch%': '<(chromium_win_pch)',
1150     'configuration_policy%': '<(configuration_policy)',
1151     'safe_browsing%': '<(safe_browsing)',
1152     'enable_web_speech%': '<(enable_web_speech)',
1153     'notifications%': '<(notifications)',
1154     'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
1155     'mac_want_real_dsym%': '<(mac_want_real_dsym)',
1156     'asan%': '<(asan)',
1157     'asan_blacklist%': '<(asan_blacklist)',
1158     'asan_coverage%': '<(asan_coverage)',
1159     'sanitizer_coverage%': '<(sanitizer_coverage)',
1160     'asan_field_padding%': '<(asan_field_padding)',
1161     'use_sanitizer_options%': '<(use_sanitizer_options)',
1162     'syzyasan%': '<(syzyasan)',
1163     'kasko%': '<(kasko)',
1164     'syzygy_optimize%': '<(syzygy_optimize)',
1165     'lsan%': '<(lsan)',
1166     'msan%': '<(msan)',
1167     'msan_blacklist%': '<(msan_blacklist)',
1168     'msan_track_origins%': '<(msan_track_origins)',
1169     'tsan%': '<(tsan)',
1170     'tsan_blacklist%': '<(tsan_blacklist)',
1171     'ubsan%': '<(ubsan)',
1172     'ubsan_blacklist%': '<(ubsan_blacklist)',
1173     'ubsan_vptr%': '<(ubsan_vptr)',
1174     'use_instrumented_libraries%': '<(use_instrumented_libraries)',
1175     'use_prebuilt_instrumented_libraries%': '<(use_prebuilt_instrumented_libraries)',
1176     'use_custom_libcxx%': '<(use_custom_libcxx)',
1177     'use_system_libcxx%': '<(use_system_libcxx)',
1178     'clang_type_profiler%': '<(clang_type_profiler)',
1179     'order_profiling%': '<(order_profiling)',
1180     'order_text_section%': '<(order_text_section)',
1181     'enable_extensions%': '<(enable_extensions)',
1182     'enable_plugin_installation%': '<(enable_plugin_installation)',
1183     'enable_plugins%': '<(enable_plugins)',
1184     'enable_session_service%': '<(enable_session_service)',
1185     'enable_themes%': '<(enable_themes)',
1186     'enable_autofill_dialog%': '<(enable_autofill_dialog)',
1187     'enable_prod_wallet_service%': '<(enable_prod_wallet_service)',
1188     'enable_background%': '<(enable_background)',
1189     'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
1190     'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
1191     'linux_use_gold_flags%': '<(linux_use_gold_flags)',
1192     'linux_use_debug_fission%': '<(linux_use_debug_fission)',
1193     'use_canvas_skia%': '<(use_canvas_skia)',
1194     'test_isolation_mode%': '<(test_isolation_mode)',
1195     'test_isolation_outdir%': '<(test_isolation_outdir)',
1196     'enable_basic_printing%': '<(enable_basic_printing)',
1197     'enable_print_preview%': '<(enable_print_preview)',
1198     'enable_spellcheck%': '<(enable_spellcheck)',
1199     'enable_google_now%': '<(enable_google_now)',
1200     'cld_version%': '<(cld_version)',
1201     'cld2_table_size%': '<(cld2_table_size)',
1202     'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1203     'disable_file_support%': '<(disable_file_support)',
1204     'disable_ftp_support%': '<(disable_ftp_support)',
1205     'use_icu_alternatives_on_android%': '<(use_icu_alternatives_on_android)',
1206     'enable_task_manager%': '<(enable_task_manager)',
1207     'sas_dll_path%': '<(sas_dll_path)',
1208     'wix_path%': '<(wix_path)',
1209     'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1210     'use_system_libjpeg%': '<(use_system_libjpeg)',
1211     'android_channel%': '<(android_channel)',
1212     'android_webview_build%': '<(android_webview_build)',
1213     'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1214     'gyp_managed_install%': 0,
1215     'create_standalone_apk%': 1,
1216     'enable_app_list%': '<(enable_app_list)',
1217     'use_default_render_theme%': '<(use_default_render_theme)',
1218     'enable_settings_app%': '<(enable_settings_app)',
1219     'google_api_key%': '<(google_api_key)',
1220     'google_default_client_id%': '<(google_default_client_id)',
1221     'google_default_client_secret%': '<(google_default_client_secret)',
1222     'enable_supervised_users%': '<(enable_supervised_users)',
1223     'native_memory_pressure_signals%': '<(native_memory_pressure_signals)',
1224     'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
1225     'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
1226     'enable_mdns%' : '<(enable_mdns)',
1227     'enable_service_discovery%' : '<(enable_service_discovery)',
1228     'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)',
1229     'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)',
1230     'v8_optimized_debug%': '<(v8_optimized_debug)',
1231     'proprietary_codecs%': '<(proprietary_codecs)',
1232     'use_goma%': '<(use_goma)',
1233     'gomadir%': '<(gomadir)',
1234     'use_lto%': '<(use_lto)',
1235     'use_lto_o2%': '<(use_lto_o2)',
1236     'gold_icf_level%': '<(gold_icf_level)',
1237     'video_hole%': '<(video_hole)',
1238     'v8_use_external_startup_data%': '<(v8_use_external_startup_data)',
1239     'cfi_vptr%': '<(cfi_vptr)',
1240     'cfi_derived_cast%': '<(cfi_derived_cast)',
1241     'cfi_unrelated_cast%': '<(cfi_unrelated_cast)',
1242     'cfi_blacklist%': '<(cfi_blacklist)',
1243     'mac_views_browser%': '<(mac_views_browser)',
1244     'android_app_version_name%': '<(android_app_version_name)',
1245     'android_app_version_code%': '<(android_app_version_code)',
1247     # Use system protobuf instead of bundled one.
1248     'use_system_protobuf%': 0,
1250     # Use system yasm instead of bundled one.
1251     'use_system_yasm%': 0,
1253     # Use system ICU instead of bundled one.
1254     'use_system_icu%' : 0,
1256     # Default to enabled PIE; this is important for ASLR but we may need to be
1257     # able to turn it off for various reasons.
1258     'linux_disable_pie%': 0,
1260     # The release channel that this build targets. This is used to restrict
1261     # channel-specific build options, like which installer packages to create.
1262     # The default is 'all', which does no channel-specific filtering.
1263     'channel%': 'all',
1265     # Override chromium_mac_pch and set it to 0 to suppress the use of
1266     # precompiled headers on the Mac.  Prefix header injection may still be
1267     # used, but prefix headers will not be precompiled.  This is useful when
1268     # using distcc to distribute a build to compile slaves that don't
1269     # share the same compiler executable as the system driving the compilation,
1270     # because precompiled headers rely on pointers into a specific compiler
1271     # executable's image.  Setting this to 0 is needed to use an experimental
1272     # Linux-Mac cross compiler distcc farm.
1273     'chromium_mac_pch%': 1,
1275     # The default value for mac_strip in target_defaults. This cannot be
1276     # set there, per the comment about variable% in a target_defaults.
1277     'mac_strip_release%': 0,
1279     # Set to 1 to enable java code coverage. Instruments classes during build
1280     # to produce .ec files during runtime.
1281     'emma_coverage%': 0,
1283     # EMMA filter string consisting of a list of inclusion/exclusion patterns
1284     # separated with whitespace and/or comma. Only has effect if
1285     # 'emma_coverage=1'.
1286     'emma_filter%': '',
1288     # Set to 1 to enable running Android lint on java/class files.
1289     'android_lint%': 1,
1291     # Although base/allocator lets you select a heap library via an
1292     # environment variable, the libcmt shim it uses sometimes gets in
1293     # the way.  To disable it entirely, and switch to normal msvcrt, do e.g.
1294     #  'win_use_allocator_shim': 0,
1295     #  'win_release_RuntimeLibrary': 2
1296     # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build.
1297     'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt
1299     # TODO(bradnelson): eliminate this when possible.
1300     # To allow local gyp files to prevent release.vsprops from being included.
1301     # Yes(1) means include release.vsprops.
1302     # Once all vsprops settings are migrated into gyp, this can go away.
1303     'msvs_use_common_release%': 1,
1305     # TODO(bradnelson): eliminate this when possible.
1306     # To allow local gyp files to override additional linker options for msvs.
1307     # Yes(1) means set use the common linker options.
1308     'msvs_use_common_linker_extras%': 1,
1310     # TODO(sgk): eliminate this if possible.
1311     # It would be nicer to support this via a setting in 'target_defaults'
1312     # in chrome/app/locales/locales.gypi overriding the setting in the
1313     # 'Debug' configuration in the 'target_defaults' dict below,
1314     # but that doesn't work as we'd like.
1315     'msvs_debug_link_incremental%': '2',
1317     # Needed for some of the largest modules.
1318     'msvs_debug_link_nonincremental%': '1',
1320     # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows
1321     # to get incremental linking to be faster in debug builds.
1322     'incremental_chrome_dll%': '0',
1324     # Experimental setting to break chrome.dll into multiple pieces based on
1325     # process type.
1326     'chrome_multiple_dll%': '0',
1328     # Experimental setting to optimize Chrome's DLLs with PGO.
1329     'chrome_pgo_phase%': '0',
1331     # Whether the VS xtree header has been patched to disable warning 4702. If
1332     # it has, then we don't need to disable 4702 (unreachable code warning).
1333     # The patch is preapplied to the internal toolchain and hence all bots.
1334     'msvs_xtree_patched%': '<!pymod_do_main(win_is_xtree_patched)',
1336     # Clang stuff.
1337     'clang%': '<(clang)',
1338     'host_clang%': '<(host_clang)',
1339     'make_clang_dir%': '<(make_clang_dir)',
1340     'use_lld%': '<(use_lld)',
1342     # Control which version of clang to use when building for iOS.  If set to
1343     # '1', uses the version of clang that ships with Xcode.  If set to '0', uses
1344     # the version of clang that ships with the Chromium source.  This variable
1345     # is automatically set to '1' when using the Xcode generator.
1346     'clang_xcode%': 0,
1348     # These two variables can be set in GYP_DEFINES while running
1349     # |gclient runhooks| to let clang run a plugin in every compilation.
1350     # Only has an effect if 'clang=1' is in GYP_DEFINES as well.
1351     # Example:
1352     #     GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dylib clang_add_plugin=print-fns' gclient runhooks
1354     'clang_load%': '',
1355     'clang_add_plugin%': '',
1357     # Tell ld64 to write map files describing binary layout. Useful
1358     # for looking at what contributes to binary size, e.g. with
1359     # https://github.com/nico/bloat
1360     'mac_write_linker_maps%': 0,
1362     # The default type of gtest.
1363     'gtest_target_type%': 'executable',
1365     # Enable sampling based profiler.
1366     # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
1367     'profiling%': '0',
1368     # Profile without optimizing out stack frames when profiling==1.
1369     'profiling_full_stack_frames%': '0',
1371     # And if we want to dump symbols for Breakpad-enabled builds.
1372     'linux_dump_symbols%': 0,
1373     # And if we want to strip the binary after dumping symbols.
1374     'linux_strip_binary%': 0,
1375     # If we want stack unwind support for backtrace().
1376     'debug_unwind_tables%': 1,
1377     'release_unwind_tables%': 1,
1379     # Override where to find binutils
1380     'binutils_version%': 0,
1381     'binutils_dir%': '',
1383     # Enable TCMalloc.
1384     # Default of 'use_allocator' is set to 'none' if OS=='android' later.
1385     'use_allocator%': 'tcmalloc',
1387     # Set to 1 to link against libgnome-keyring instead of using dlopen().
1388     'linux_link_gnome_keyring%': 0,
1389     # Set to 1 to link against gsettings APIs instead of using dlopen().
1390     'linux_link_gsettings%': 0,
1392     # Enable use of OpenMAX DL FFT routines.
1393     'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
1395     # Enable new NPDevice API.
1396     'enable_new_npdevice_api%': 0,
1398     # .gyp files or targets should set chromium_code to 1 if they build
1399     # Chromium-specific code, as opposed to external code.  This variable is
1400     # used to control such things as the set of warnings to enable, and
1401     # whether warnings are treated as errors.
1402     'chromium_code%': 0,
1404     # Disable fatal linker warnings, similarly to how we make it possible
1405     # to disable -Werror (e.g. for different toolchain versions).
1406     'disable_fatal_linker_warnings%': 0,
1408     'release_valgrind_build%': 0,
1410     # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
1411     'enable_wexit_time_destructors%': 0,
1413     # Build libpeerconnection as a static library by default.
1414     'libpeer_target_type%': 'static_library',
1416     # Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
1417     'internal_gles2_conform_tests%': 0,
1419     # Set to 1 to compile with the Khronos GL-CTS conformance tests.
1420     'internal_khronos_glcts_tests%': 0,
1422     # Set to 1 to compile the filter fuzzer.
1423     'internal_filter_fuzzer%': 0,
1425     # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
1426     # so Cocoa is happy (http://crbug.com/20441).
1427     'locales': [
1428       'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB',
1429       'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he',
1430       'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv',
1431       'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
1432       'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk',
1433       'vi', 'zh-CN', 'zh-TW',
1434     ],
1436     # Pseudo locales are special locales which are used for testing and
1437     # debugging. They don't get copied to the final app. For more info,
1438     # check out https://www.chromium.org/developers/testing/fake-bidi
1439     'pseudo_locales': [
1440       'fake-bidi',
1441     ],
1443     'grit_defines': [],
1445     # If debug_devtools is set to 1, JavaScript files for DevTools are
1446     # stored as is and loaded from disk. Otherwise, a concatenated file
1447     # is stored in resources.pak. It is still possible to load JS files
1448     # from disk by passing --debug-devtools cmdline switch.
1449     'debug_devtools%': 0,
1451     # The Java Bridge is not compiled in by default.
1452     'java_bridge%': 0,
1454     # Code signing for iOS binaries.  The bots need to be able to disable this.
1455     'chromium_ios_signing%': 1,
1457     # This flag is only used when disable_nacl==0 and disables all those
1458     # subcomponents which would require the installation of a native_client
1459     # untrusted toolchain.
1460     'disable_nacl_untrusted%': 0,
1462     # Disable Dart by default.
1463     'enable_dart%': 0,
1465     # Copy out the setting of disable_nacl.
1466     'disable_nacl%': '<(disable_nacl)',
1468     # Portable Native Client is enabled by default.
1469     'disable_pnacl%': 0,
1471     # Whether to build full debug version for Debug configuration on Android.
1472     # Compared to full debug version, the default Debug configuration on Android
1473     # has no full v8 debug, has size optimization and linker gc section, so that
1474     # we can build a debug version with acceptable size and performance.
1475     'android_full_debug%': 0,
1477     # Contains data about the attached devices for gyp_managed_install.
1478     'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1480     'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
1481     'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
1483     'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1484     'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1486     # Whether we are using the rlz library or not.  Platforms like Android send
1487     # rlz codes for searches but do not use the library.
1488     'enable_rlz%': 0,
1490     # Turns on the i18n support in V8.
1491     'v8_enable_i18n_support': 1,
1493     # Compile d8 for the host toolset.
1494     'v8_toolset_for_d8': 'host',
1496     # Use brlapi from brltty for braille display support.
1497     'use_brlapi%': 0,
1499     # Relative path to icu.gyp from this file.
1500     'icu_gyp_path': '../third_party/icu/icu.gyp',
1502     # IPC fuzzer is disabled by default.
1503     'enable_ipc_fuzzer%': 0,
1505     # Force disable libstdc++ debug mode.
1506     'disable_glibcxx_debug%': 0,
1508     # Set to 1 to compile with MSE support for MPEG2 TS
1509     'enable_mpeg2ts_stream_parser%': 0,
1511     # Support ChromeOS touchpad gestures with ozone.
1512     'use_evdev_gestures%': 0,
1514     # Default ozone platform (if no --ozone-platform flag).
1515     'ozone_platform%': "",
1517     # Ozone platforms to include in the build.
1518     'ozone_platform_caca%': 0,
1519     'ozone_platform_dri%': 0,
1520     'ozone_platform_drm%': 0,
1521     'ozone_platform_egltest%': 0,
1522     'ozone_platform_gbm%': 0,
1523     'ozone_platform_ozonex%': 0,
1524     'ozone_platform_test%': 0,
1526     # Experiment: http://crbug.com/426914
1527     'envoy%': 0,
1529     'conditions': [
1530       ['buildtype=="Official"', {
1531         # Continue to embed build meta data in Official builds, basically the
1532         # time it was built.
1533         # TODO(maruel): This decision should be revisited because having an
1534         # official deterministic build has high value too but MSVC toolset can't
1535         # generate anything deterministic with WPO enabled AFAIK.
1536         'dont_embed_build_metadata%': 0,
1537       }],
1538       # Enable the Syzygy optimization step for the official builds.
1539       ['OS=="win" and buildtype=="Official" and syzyasan!=1 and clang!=1', {
1540         'syzygy_optimize%': 1,
1541       }, {
1542         'syzygy_optimize%': 0,
1543       }],
1544       # Get binutils version so we can enable debug fission if we can.
1545       ['os_posix==1 and OS!="mac" and OS!="ios"', {
1546         'conditions': [
1547           # compiler_version doesn't work with clang
1548           # TODO(mithro): Land https://codereview.chromium.org/199793014/ so
1549           # compiler_version works with clang.
1550           # TODO(glider): set clang to 1 earlier for ASan and TSan builds so
1551           # that it takes effect here.
1552           ['clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', {
1553             'binutils_version%': '<!pymod_do_main(compiler_version target assembler)',
1554           }],
1555           # On Android we know the binutils version in the toolchain.
1556           ['OS=="android"', {
1557             'binutils_version%': 222,
1558           }],
1559           ['host_arch=="x64"', {
1560             'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1561           }],
1562           ['host_arch=="ia32"', {
1563             'binutils_dir%': 'third_party/binutils/Linux_ia32/Release/bin',
1564           }],
1565           # Our version of binutils in third_party/binutils
1566           ['linux_use_bundled_binutils==1', {
1567             'binutils_version%': 224,
1568           }],
1569         ],
1570       }, {
1571         'binutils_version%': 0,
1572       }],
1573       # The version of GCC in use, set later in platforms that use GCC and have
1574       # not explicitly chosen to build with clang. Currently, this means all
1575       # platforms except Windows, Mac and iOS.
1576       # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1577       # it takes effect here.
1578       ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan_vptr==0', {
1579         'conditions': [
1580           ['OS=="android"', {
1581             'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1582             # We directly set the gcc version since we know what we use.
1583             'gcc_version%': 49,
1584           }, {
1585             'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1586             'gcc_version%': '<!pymod_do_main(compiler_version target compiler)',
1587           }],
1588         ],
1589       }, {
1590         'host_gcc_version%': 0,
1591         'gcc_version%': 0,
1592       }],
1593       ['OS=="win" and "<!pymod_do_main(dir_exists <(windows_sdk_default_path))"=="True"', {
1594         'windows_sdk_path%': '<(windows_sdk_default_path)',
1595       }, {
1596         'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.1',
1597       }],
1598       ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=="True"', {
1599         'directx_sdk_path%': '<(directx_sdk_default_path)',
1600       }, {
1601         'directx_sdk_path%': '$(DXSDK_DIR)',
1602       }],
1603       ['OS=="win"', {
1604         'windows_driver_kit_path%': '$(WDK_DIR)',
1605       }],
1606       ['os_posix==1 and OS!="mac" and OS!="ios"', {
1607         'conditions': [
1608           ['target_arch=="mipsel" or target_arch=="mips64el"', {
1609             'werror%': '',
1610             'disable_nacl%': 1,
1611             'nacl_untrusted_build%': 0,
1612             'use_allocator%': 'none',
1613           }],
1614           ['OS=="linux" and target_arch=="mipsel"', {
1615             'sysroot%': '<(sysroot)',
1616             'CXX%': '<(CXX)',
1617           }],
1618           # Use a 64-bit linker to avoid running out of address space. The
1619           # buildbots should have a 64-bit kernel and a 64-bit libc installed.
1620           ['host_arch=="ia32" and target_arch=="ia32"', {
1621             # TODO(thestig) This is a horrible way to force the desired
1622             # configuration. Our gyp variable scoping is likely wrong and
1623             # needs to be cleaned up. The GN configuration should be changed
1624             # to match.
1625             'binutils_version%': 224,
1626             'linux_use_bundled_binutils%': '1',
1627             'linux_use_bundled_gold%': '1',
1628             'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1629           }],
1630           # All Chrome builds have breakpad symbols, but only process the
1631           # symbols from official builds.
1632           ['(branding=="Chrome" and buildtype=="Official")', {
1633             'linux_dump_symbols%': 1,
1635             # Omit unwind support in official release builds to save space. We
1636             # can use breakpad for these builds.
1637             'release_unwind_tables%': 0,
1638           }],
1639         ],
1640       }],  # os_posix==1 and OS!="mac" and OS!="ios"
1641       ['OS=="ios"', {
1642         'disable_nacl%': 1,
1643         'enable_background%': 0,
1644         'icu_use_data_file_flag%': 1,
1645         'enable_web_speech%': 0,
1646         'use_system_libxml%': 1,
1647         'use_system_sqlite%': 1,
1648         'locales==': [
1649           'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1650           'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
1651           'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr',
1652           'uk', 'vi', 'zh-CN', 'zh-TW',
1653         ],
1655         # iOS SDK and deployment target support.  The |ios_sdk| value is left
1656         # blank so that when it is set in the project files it will be the
1657         # "current" iOS SDK.  Forcing a specific SDK even if it is "current"
1658         # causes Xcode to spit out a warning for every single project file for
1659         # not using the "current" SDK.
1660         'ios_sdk%': '',
1661         'ios_sdk_path%': '',
1662         'ios_deployment_target%': '7.0',
1664         'conditions': [
1665           # ios_product_name is set to the name of the .app bundle as it should
1666           # appear on disk.
1667           ['branding=="Chrome"', {
1668             'ios_product_name%': 'Chrome',
1669           }, { # else: branding!="Chrome"
1670             'ios_product_name%': 'Chromium',
1671           }],
1672           ['branding=="Chrome" and buildtype=="Official"', {
1673             'ios_breakpad%': 1,
1674           }, { # else: branding!="Chrome" or buildtype!="Official"
1675             'ios_breakpad%': 0,
1676           }],
1677         ],
1678       }],  # OS=="ios"
1679       ['OS=="android"', {
1680         # Location of Android NDK.
1681         'variables': {
1682           'variables': {
1683             # Standard libraries can use the relative path to the NDK.
1684             'android_ndk_root%': '../../third_party/android_tools/ndk/',
1685             # Unfortunately, it is required to use the absolute path to the SDK
1686             # because it us passed to ant which uses a different relative path
1687             # from GYP.
1688             'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/sdk/',
1689             # Similarly, gdbserver and the Android toolchain need to use the
1690             # absolute path to the NDK because they are used at different levels
1691             # in the GYP files.
1692             'android_ndk_absolute_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/ndk/',
1693             'android_host_arch%': '<!(uname -m)',
1694             # Android API-level of the SDK used for compilation.
1695             'android_sdk_version%': '22',
1696             'android_sdk_build_tools_version%': '22.0.0',
1697             'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
1698           },
1699           # Copy conditionally-set variables out one scope.
1700           'android_ndk_root%': '<(android_ndk_root)',
1701           'android_ndk_absolute_root%': '<(android_ndk_absolute_root)',
1702           'android_sdk_root%': '<(android_sdk_root)',
1703           'android_sdk_version%': '<(android_sdk_version)',
1704           'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport',
1705           'host_os%': '<(host_os)',
1707           'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_version)',
1708           # Android SDK build tools (e.g. dx, aapt, aidl)
1709           'android_sdk_tools%': '<(android_sdk_root)/build-tools/<(android_sdk_build_tools_version)',
1711           # Android API level 14 is ICS (Android 4.0) which is the minimum
1712           # platform requirement for Chrome on Android, we use it for native
1713           # code compilation.
1714           'conditions': [
1715             ['target_arch == "ia32"', {
1716               'android_app_abi%': 'x86',
1717               'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86/gdbserver/gdbserver',
1718               'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-x86',
1719               'android_ndk_lib_dir%': 'usr/lib',
1720               'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1721             }],
1722             ['target_arch == "x64"', {
1723               'android_app_abi%': 'x86_64',
1724               'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86_64/gdbserver/gdbserver',
1725               'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-x86_64',
1726               'android_ndk_lib_dir%': 'usr/lib64',
1727               'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86_64-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1728             }],
1729             ['target_arch=="arm"', {
1730               'conditions': [
1731                 ['arm_version<7', {
1732                   'android_app_abi%': 'armeabi',
1733                 }, {
1734                   'android_app_abi%': 'armeabi-v7a',
1735                 }],
1736               ],
1737               'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm/gdbserver/gdbserver',
1738               'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-arm',
1739               'android_ndk_lib_dir%': 'usr/lib',
1740               'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/arm-linux-androideabi-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1741             }],
1742             ['target_arch == "arm64"', {
1743               'android_app_abi%': 'arm64-v8a',
1744               'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm64/gdbserver/gdbserver',
1745               'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-arm64',
1746               'android_ndk_lib_dir%': 'usr/lib',
1747               'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1748             }],
1749             ['target_arch == "mipsel"', {
1750               'android_app_abi%': 'mips',
1751               'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips/gdbserver/gdbserver',
1752               'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-mips',
1753               'android_ndk_lib_dir%': 'usr/lib',
1754               'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mipsel-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1755             }],
1756             ['target_arch == "mips64el"', {
1757               'android_app_abi%': 'mips64',
1758               'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips64/gdbserver/gdbserver',
1759               'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-mips64',
1760               'android_ndk_lib_dir%': 'usr/lib64',
1761               'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mips64el-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1762             }],
1763           ],
1764         },
1765         # Copy conditionally-set variables out one scope.
1766         'android_app_abi%': '<(android_app_abi)',
1767         'android_gdbserver%': '<(android_gdbserver)',
1768         'android_ndk_root%': '<(android_ndk_root)',
1769         'android_ndk_sysroot%': '<(android_ndk_sysroot)',
1770         'android_sdk_root%': '<(android_sdk_root)',
1771         'android_sdk_version%': '<(android_sdk_version)',
1772         'android_toolchain%': '<(android_toolchain)',
1774         'android_ndk_include': '<(android_ndk_sysroot)/usr/include',
1775         'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
1776         'android_sdk_tools%': '<(android_sdk_tools)',
1777         'android_sdk%': '<(android_sdk)',
1778         'android_sdk_jar%': '<(android_sdk)/android.jar',
1780         'android_stlport_root': '<(android_stlport_root)',
1781         'android_stlport_include': '<(android_stlport_root)/stlport',
1782         'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_abi)',
1783         'host_os%': '<(host_os)',
1785         # Location of the "objcopy" binary, used by both gyp and scripts.
1786         'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)',
1788         # Location of the "strip" binary, used by both gyp and scripts.
1789         'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
1791         # Location of the "readelf" binary.
1792         'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1794         # Determines whether we should optimize JNI generation at the cost of
1795         # breaking assumptions in the build system that when inputs have changed
1796         # the outputs should always change as well.  This is meant purely for
1797         # developer builds, to avoid spurious re-linking of native files.
1798         'optimize_jni_generation%': '<(optimize_jni_generation)',
1800         # Always uses openssl.
1801         'use_openssl%': 1,
1802         'use_openssl_certs%': 1,
1804         'proprietary_codecs%': '<(proprietary_codecs)',
1805         'safe_browsing%': 2,
1806         'enable_web_speech%': 0,
1807         'java_bridge%': 1,
1808         'build_ffmpegsumo%': 0,
1809         'use_allocator%': 'none',
1811         # Disable Native Client.
1812         'disable_nacl%': 1,
1814         # Android does not support background apps.
1815         'enable_background%': 0,
1817         # Sessions are store separately in the Java side.
1818         'enable_session_service%': 0,
1820         'p2p_apis%' : 0,
1822         'gtest_target_type%': 'shared_library',
1824         # Uses system APIs for decoding audio and video.
1825         'use_libffmpeg%': '0',
1827         # TODO(torne): Remove this unsupported option once all the places that
1828         # test it have been updated.
1829         'use_system_stlport%': 0,
1831         # Copy it out one scope.
1832         'android_webview_build%': '<(android_webview_build)',
1833       }],  # OS=="android"
1834       ['embedded==1', {
1835         'use_system_fontconfig%': 0,
1836       }, {
1837         'use_system_fontconfig%': 1,
1838       }],
1839       ['chromecast==1', {
1840         'enable_mpeg2ts_stream_parser%': 1,
1841         'ffmpeg_branding%': 'ChromeOS',
1842         'ozone_platform_ozonex%': 1,
1843         'use_playready%': 0,
1844         'conditions': [
1845           ['target_arch=="arm"', {
1846             'arm_arch%': '',
1847             'arm_tune%': 'cortex-a9',
1848             'arm_thumb%': 1,
1849             'video_hole%': 1,
1850           }],
1851         ],
1852       }],
1853       ['OS=="linux" and target_arch!="mipsel"', {
1854         'clang%': 1,
1855       }],  # OS=="mac"
1856       ['OS=="mac"', {
1857         'conditions': [
1858           # All Chrome builds have breakpad symbols, but only process the
1859           # symbols from official builds.
1860           ['(branding=="Chrome" and buildtype=="Official")', {
1861             'mac_strip_release%': 1,
1862           }],
1863         ],
1864       }],  # OS=="mac"
1865       ['OS=="mac" or OS=="ios"', {
1866         'clang%': 1,
1868         'variables': {
1869           # Mac OS X SDK and deployment target support.  The SDK identifies
1870           # the version of the system headers that will be used, and
1871           # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
1872           # macro.  "Maximum allowed" refers to the operating system version
1873           # whose APIs are available in the headers.  The deployment target
1874           # identifies the minimum system version that the built products are
1875           # expected to function on.  It corresponds to the
1876           # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro.  To ensure these
1877           # macros are available, #include <AvailabilityMacros.h>.  Additional
1878           # documentation on these macros is available at
1879           # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTION3
1880           # Chrome normally builds with the Mac OS X 10.6 SDK and sets the
1881           # deployment target to 10.6.  Other projects, such as O3D, may
1882           # override these defaults.
1884           # Normally, mac_sdk_min is used to find an SDK that Xcode knows
1885           # about that is at least the specified version. In official builds,
1886           # the SDK must match mac_sdk_min exactly. If the SDK is installed
1887           # someplace that Xcode doesn't know about, set mac_sdk_path to the
1888           # path to the SDK; when set to a non-empty string, SDK detection
1889           # based on mac_sdk_min will be bypassed entirely.
1890           'conditions': [
1891             ['OS=="ios"', {
1892               'mac_sdk_min%': '10.8',
1893             }, {  # else OS!="ios"
1894               'mac_sdk_min%': '10.6',
1895             }],
1896           ],
1897           'mac_sdk_path%': '',
1899           'mac_deployment_target%': '10.6',
1900         },
1902         'mac_sdk_min': '<(mac_sdk_min)',
1903         'mac_sdk_path': '<(mac_sdk_path)',
1904         'mac_deployment_target': '<(mac_deployment_target)',
1906         # Compile in Breakpad support by default so that it can be
1907         # tested, even if it is not enabled by default at runtime.
1908         'mac_breakpad_compiled_in%': 1,
1909         'conditions': [
1910           # mac_product_name is set to the name of the .app bundle as it should
1911           # appear on disk.  This duplicates data from
1912           # chrome/app/theme/chromium/BRANDING and
1913           # chrome/app/theme/google_chrome/BRANDING, but is necessary to get
1914           # these names into the build system.
1915           ['branding=="Chrome"', {
1916             'mac_product_name%': 'Google Chrome',
1917           }, { # else: branding!="Chrome"
1918             'mac_product_name%': 'Chromium',
1919           }],
1920           # Official mac builds require a specific OS X SDK, but iOS and
1921           # non-official mac builds do not.
1922           ['branding=="Chrome" and buildtype=="Official" and OS=="mac"', {
1923             'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac_sdk_min) --sdk_path=<(mac_sdk_path))',
1924           }, {
1925             'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))',
1926           }],
1927           ['branding=="Chrome" and buildtype=="Official"', {
1928             # Enable uploading crash dumps.
1929             'mac_breakpad_uploads%': 1,
1930             # Enable dumping symbols at build time for use by Mac Breakpad.
1931             'mac_breakpad%': 1,
1932             # Enable Keystone auto-update support.
1933             'mac_keystone%': 1,
1934           }, { # else: branding!="Chrome" or buildtype!="Official"
1935             'mac_breakpad_uploads%': 0,
1936             'mac_breakpad%': 0,
1937             'mac_keystone%': 0,
1938           }],
1939         ],
1940       }],  # OS=="mac" or OS=="ios"
1941       ['OS=="win"', {
1942         'conditions': [
1943           # This is the architecture convention used in WinSDK paths.
1944           ['target_arch=="ia32"', {
1945             'winsdk_arch%': 'x86',
1946           },{
1947             'winsdk_arch%': '<(target_arch)',
1948           }],
1949           ['component=="shared_library"', {
1950             'win_use_allocator_shim%': 0,
1951           },{
1952             # Turn on multiple dll by default on Windows when in static_library.
1953             'chrome_multiple_dll%': 1,
1954           }],
1955           ['asan==1 or syzyasan==1', {
1956             'win_use_allocator_shim%': 0,
1957           }],
1958           ['syzyasan==1', {
1959             'kasko%': 1,
1960           }],
1961           ['component=="shared_library" and "<(GENERATOR)"=="ninja"', {
1962             # Only enabled by default for ninja because it's buggy in VS.
1963             # Not enabled for component=static_library because some targets
1964             # are too large and the toolchain fails due to the size of the
1965             # .obj files.
1966             'incremental_chrome_dll%': 1,
1967           }],
1968           # Don't do incremental linking for large modules on 32-bit or when
1969           # component=static_library as the toolchain fails due to the size of
1970           # the .ilk files.
1971           ['MSVS_OS_BITS==32 or component=="static_library"', {
1972             'msvs_large_module_debug_link_mode%': '1',  # No
1973           },{
1974             'msvs_large_module_debug_link_mode%': '2',  # Yes
1975           }],
1976         ],
1977         'nacl_win64_defines': [
1978           # This flag is used to minimize dependencies when building
1979           # Native Client loader for 64-bit Windows.
1980           'NACL_WIN64',
1981         ],
1982         # Need to include allocator target, but exclude tcmalloc files.
1983         'use_allocator%': 'winheap',
1984       }],
1986       ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios" and embedded==0', {
1987         'use_cups%': 1,
1988       }, {
1989         'use_cups%': 0,
1990       }],
1992       ['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win")', {
1993         'enable_pepper_cdms%': 1,
1994       }, {
1995         'enable_pepper_cdms%': 0,
1996       }],
1998       ['OS=="android" or chromecast==1', {
1999         'enable_browser_cdms%': 1,
2000       }, {
2001         'enable_browser_cdms%': 0,
2002       }],
2004       # Native Client glibc toolchain is enabled
2005       # by default except on arm, mips and mips64.
2006       ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"', {
2007         'disable_glibc%': 1,
2008       }, {
2009         'disable_glibc%': 0,
2010       }],
2012       # Set the relative path from this file to the GYP file of the JPEG
2013       # library used by Chromium.
2014       ['use_system_libjpeg==1 or use_libjpeg_turbo==0', {
2015         # Configuration for using the system libjeg is here.
2016         'libjpeg_gyp_path': '../third_party/libjpeg/libjpeg.gyp',
2017       }, {
2018         'libjpeg_gyp_path': '../third_party/libjpeg_turbo/libjpeg.gyp',
2019       }],
2021       # Options controlling the use of GConf (the classic GNOME configuration
2022       # system) and GIO, which contains GSettings (the new GNOME config system).
2023       ['chromeos==1 or embedded==1', {
2024         'use_gconf%': 0,
2025         'use_gio%': 0,
2026       }, {
2027         'use_gconf%': 1,
2028         'use_gio%': 1,
2029       }],
2031       # Set up -D and -E flags passed into grit.
2032       ['branding=="Chrome"', {
2033         # TODO(mmoss) The .grd files look for _google_chrome, but for
2034         # consistency they should look for google_chrome_build like C++.
2035         'grit_defines': ['-D', '_google_chrome',
2036                          '-E', 'CHROMIUM_BUILD=google_chrome'],
2037       }, {
2038         'grit_defines': ['-D', '_chromium',
2039                          '-E', 'CHROMIUM_BUILD=chromium'],
2040       }],
2041       ['chromeos==1', {
2042         'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'],
2043       }],
2044       ['desktop_linux==1', {
2045         'grit_defines': ['-D', 'desktop_linux'],
2046       }],
2047       ['toolkit_views==1', {
2048         'grit_defines': ['-D', 'toolkit_views'],
2049       }],
2050       ['use_aura==1', {
2051         'grit_defines': ['-D', 'use_aura'],
2052       }],
2053       ['use_ash==1', {
2054         'grit_defines': ['-D', 'use_ash'],
2055       }],
2056       ['use_nss==1', {
2057         'grit_defines': ['-D', 'use_nss'],
2058       }],
2059       ['use_ozone==1', {
2060         'grit_defines': ['-D', 'use_ozone'],
2061       }],
2062       ['image_loader_extension==1', {
2063         'grit_defines': ['-D', 'image_loader_extension'],
2064       }],
2065       ['remoting==1', {
2066         'grit_defines': ['-D', 'remoting'],
2067       }],
2068       ['use_titlecase_in_grd==1', {
2069         'grit_defines': ['-D', 'use_titlecase'],
2070       }],
2071       ['use_third_party_translations==1', {
2072         'grit_defines': ['-D', 'use_third_party_translations'],
2073         'locales': [
2074           'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia',
2075           'ka', 'ku', 'kw', 'ms', 'ug'
2076         ],
2077       }],
2078       ['OS=="android"', {
2079         'grit_defines': [
2080           '-t', 'android',
2081           '-E', 'ANDROID_JAVA_TAGGED_ONLY=true',
2082           '--no-output-all-resource-defines',
2083         ],
2084       }],
2085       ['OS=="mac" or OS=="ios"', {
2086         'grit_defines': ['-D', 'scale_factors=2x'],
2087       }],
2088       ['OS == "ios"', {
2089         'variables': {
2090           'enable_coverage%': 0,
2091         },
2092         'grit_defines': [
2093           '-t', 'ios',
2094           '--no-output-all-resource-defines',
2095         ],
2096         # iOS uses a whitelist to filter resources.
2097         'grit_whitelist%': '<(DEPTH)/build/ios/grit_whitelist.txt',
2099         # Enable host builds when generating with ninja-ios.
2100         'conditions': [
2101           ['"<(GENERATOR)"=="ninja"', {
2102             'host_os%': "mac",
2103           }],
2105           # Use the version of clang shipped with Xcode when building official
2106           # version of Chrome for iOS.
2107           #
2108           # TODO(eugenebut): Remove enable_coverage check once
2109           # libclang_rt.profile_ios.a is bundled with Chromium's clang.
2110           # http://crbug.com/450379
2111           ['buildtype=="Official" or enable_coverage', {
2112             'clang_xcode%': 1,
2113           }],
2114         ],
2115       }],
2116       ['enable_extensions==1', {
2117         'grit_defines': ['-D', 'enable_extensions'],
2118       }],
2119       ['enable_plugins!=0', {
2120         'grit_defines': ['-D', 'enable_plugins'],
2121       }],
2122       ['enable_basic_printing==1 or enable_print_preview==1', {
2123         'grit_defines': ['-D', 'enable_printing'],
2124       }],
2125       ['enable_print_preview==1', {
2126         'grit_defines': ['-D', 'enable_print_preview'],
2127       }],
2128       ['enable_themes==1', {
2129         'grit_defines': ['-D', 'enable_themes'],
2130       }],
2131       ['enable_app_list==1', {
2132         'grit_defines': ['-D', 'enable_app_list'],
2133       }],
2134       ['enable_settings_app==1', {
2135         'grit_defines': ['-D', 'enable_settings_app'],
2136       }],
2137       ['enable_google_now==1', {
2138         'grit_defines': ['-D', 'enable_google_now'],
2139       }],
2140       ['use_concatenated_impulse_responses==1', {
2141         'grit_defines': ['-D', 'use_concatenated_impulse_responses'],
2142       }],
2143       ['enable_media_router==1', {
2144         'grit_defines': ['-D', 'enable_media_router'],
2145       }],
2146       ['enable_webrtc==1', {
2147         'grit_defines': ['-D', 'enable_webrtc'],
2148       }],
2149       ['enable_hangout_services_extension==1', {
2150         'grit_defines': ['-D', 'enable_hangout_services_extension'],
2151       }],
2152       ['enable_task_manager==1', {
2153         'grit_defines': ['-D', 'enable_task_manager'],
2154       }],
2155       ['notifications==1', {
2156         'grit_defines': ['-D', 'enable_notifications'],
2157       }],
2158       ['enable_wifi_bootstrapping==1', {
2159         'grit_defines': ['-D', 'enable_wifi_bootstrapping'],
2160       }],
2161       ['mac_views_browser==1', {
2162         'grit_defines': ['-D', 'mac_views_browser'],
2163       }],
2164       ['enable_resource_whitelist_generation==1 and OS!="win"', {
2165         'grit_rc_header_format': ['-h', '#define {textual_id} _Pragma("whitelisted_resource_{numeric_id}") {numeric_id}'],
2166       }],
2167       ['enable_resource_whitelist_generation==1 and OS=="win"', {
2168         'grit_rc_header_format': ['-h', '#define {textual_id} __pragma(message("whitelisted_resource_{numeric_id}")) {numeric_id}'],
2169       }],
2170       ['enable_mdns==1 or OS=="mac"', {
2171         'grit_defines': ['-D', 'enable_service_discovery'],
2172         'enable_service_discovery%': 1
2173       }],
2174       ['clang_use_chrome_plugins==1 and OS!="win"', {
2175         'variables': {
2176           'conditions': [
2177             ['OS=="mac" or OS=="ios"', {
2178               'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.dylib',
2179             }, { # OS != "mac" or OS != "ios"
2180               'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.so',
2181             }],
2182           ],
2183         },
2184         # If you change these, also change build/config/clang/BUILD.gn.
2185         'clang_chrome_plugins_flags%':
2186           '-Xclang -load -Xclang <(clang_lib_path)'
2187           ' -Xclang -add-plugin -Xclang find-bad-constructs',
2188       }],
2189       ['asan==1 or msan==1 or lsan==1 or tsan==1', {
2190         'clang%': 1,
2191         'use_allocator%': 'none',
2192         'use_sanitizer_options%': 1,
2193         # Disable ICF in the linker to avoid debug info loss.
2194         'gold_icf_level%': 'none',
2195       }],
2196       ['asan==1 and OS=="linux" and chromeos==0', {
2197         'use_custom_libcxx%': 1,
2198       }],
2199       ['ubsan==1', {
2200         'clang%': 1,
2201       }],
2202       ['ubsan_vptr==1', {
2203         'clang%': 1,
2204       }],
2205       ['asan==1 and OS=="mac"', {
2206         'mac_strip_release': 1,
2207       }],
2208       ['tsan==1', {
2209         'use_custom_libcxx%': 1,
2210       }],
2211       ['msan==1', {
2212         # Use a just-built, MSan-instrumented libc++ instead of the system-wide
2213         # libstdc++. This is required to avoid false positive reports whenever
2214         # the C++ standard library is used.
2215         'use_custom_libcxx%': 1,
2216         # Running the V8-generated code on an ARM simulator is a powerful hack
2217         # that allows the tool to see the memory accesses from JITted code.
2218         # Without this flag, JS code causes false positive reports from MSan.
2219         'v8_target_arch': 'arm64',
2220       }],
2222       ['OS=="linux" and clang_type_profiler==1', {
2223         'clang%': 1,
2224         'clang_use_chrome_plugins%': 0,
2225         'conditions': [
2226           ['host_arch=="x64"', {
2227             'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_x64',
2228           }],
2229           ['host_arch=="ia32"', {
2230             # 32-bit Clang is unsupported.  It may not build.  Put your 32-bit
2231             # Clang in this directory at your own risk if needed for some
2232             # purpose (e.g. to compare 32-bit and 64-bit behavior like memory
2233             # usage).  Any failure by this compiler should not close the tree.
2234             'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32',
2235           }],
2236         ],
2237       }],
2239       ['OS=="win"', {
2240         # The Clang plugins don't currently work on Windows.
2241         # TODO(hans): One day, this will work. (crbug.com/82385)
2242         'clang_use_chrome_plugins%': 0,
2243       }],
2245       # On valgrind bots, override the optimizer settings so we don't inline too
2246       # much and make the stacks harder to figure out.
2247       #
2248       # TODO(rnk): Kill off variables that no one else uses and just implement
2249       # them under a build_for_tool== condition.
2250       ['build_for_tool=="memcheck" or build_for_tool=="tsan"', {
2251         # gcc flags
2252         'mac_debug_optimization': '1',
2253         'mac_release_optimization': '1',
2254         'release_optimize': '1',
2255         'no_gc_sections': 1,
2256         'debug_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2257                               '-fno-builtin -fno-optimize-sibling-calls',
2258         'release_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2259                                 '-fno-builtin -fno-optimize-sibling-calls',
2261         # MSVS flags for TSan on Pin and Windows.
2262         'win_debug_RuntimeChecks': '0',
2263         'win_debug_disable_iterator_debugging': '1',
2264         'win_debug_Optimization': '1',
2265         'win_debug_InlineFunctionExpansion': '0',
2266         'win_release_InlineFunctionExpansion': '0',
2267         'win_release_OmitFramePointers': '0',
2269         'use_allocator': 'tcmalloc',
2270         'release_valgrind_build': 1,
2271         'werror': '',
2272         'component': 'static_library',
2273         'use_system_zlib': 0,
2274       }],
2276       # Build tweaks for DrMemory.
2277       # TODO(rnk): Combine with tsan config to share the builder.
2278       # http://crbug.com/108155
2279       ['build_for_tool=="drmemory"', {
2280         # These runtime checks force initialization of stack vars which blocks
2281         # DrMemory's uninit detection.
2282         'win_debug_RuntimeChecks': '0',
2283         # Iterator debugging is slow.
2284         'win_debug_disable_iterator_debugging': '1',
2285         # Try to disable optimizations that mess up stacks in a release build.
2286         # DrM-i#1054 (https://github.com/DynamoRIO/drmemory/issues/1054)
2287         # /O2 and /Ob0 (disable inline) cannot be used together because of a
2288         # compiler bug, so we use /Ob1 instead.
2289         'win_release_InlineFunctionExpansion': '1',
2290         'win_release_OmitFramePointers': '0',
2291         # Ditto for debug, to support bumping win_debug_Optimization.
2292         'win_debug_InlineFunctionExpansion': 0,
2293         'win_debug_OmitFramePointers': 0,
2294         # Keep the code under #ifndef NVALGRIND.
2295         'release_valgrind_build': 1,
2296       }],
2298       # Enable RLZ on Win, Mac, iOS and ChromeOS.
2299       ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos==1)', {
2300         'enable_rlz%': 1,
2301       }],
2303       # Set default compiler flags depending on ARM version.
2304       ['arm_version==6', {
2305         'arm_arch%': 'armv6',
2306         'arm_tune%': '',
2307         'arm_fpu%': 'vfp',
2308         'arm_float_abi%': 'softfp',
2309         'arm_thumb%': 0,
2310       }],
2311       ['arm_version==7', {
2312         'arm_arch%': 'armv7-a',
2313         'arm_tune%': 'generic-armv7-a',
2314         'conditions': [
2315           ['arm_neon==1', {
2316             'arm_fpu%': 'neon',
2317           }, {
2318             'arm_fpu%': 'vfpv3-d16',
2319           }],
2320         ],
2321         # Change the default to hard once the armhf transition is complete.
2322         'arm_float_abi%': 'softfp',
2323         'arm_thumb%': 1,
2324       }],
2326       # Set default compiler flags for MIPS floating-point support.
2327       ['target_arch=="mipsel"', {
2328         'mips_float_abi%': 'hard',
2329       }],
2330       ['target_arch=="mipsel" and mips_arch_variant=="r2"', {
2331         'mips_fpu_mode%': 'fp32',
2332       }],
2334       # Enable brlapi by default for chromeos.
2335       [ 'chromeos==1', {
2336         'use_brlapi%': 1,
2337       }],
2339       ['use_ozone==1 and ozone_auto_platforms==1', {
2340         # Use test as the default platform.
2341         'ozone_platform%': 'test',
2343         # Build all platforms whose deps are in install-build-deps.sh.
2344         # Only these platforms will be compile tested by buildbots.
2345         'ozone_platform_dri%': 1,
2346         'ozone_platform_drm%': 1,
2347         'ozone_platform_test%': 1,
2348         'ozone_platform_egltest%': 1,
2349       }],
2351       ['desktop_linux==1 and use_aura==1 and use_x11==1', {
2352         'use_clipboard_aurax11%': 1,
2353       }],
2355       ['OS=="win" and use_goma==1', {
2356         # goma doesn't support pch yet.
2357         'chromium_win_pch': 0,
2358         # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
2359         'conditions': [
2360           ['win_z7==0 and fastbuild==0', {
2361             'fastbuild': 1,
2362           }],
2363         ],
2364       }],
2366       ['OS=="win" and (clang==1 or asan==1)', {
2367         'chromium_win_pch': 0,
2368       }],
2370       ['host_clang==1', {
2371         'host_cc': '<(make_clang_dir)/bin/clang',
2372         'host_cxx': '<(make_clang_dir)/bin/clang++',
2373       }, {
2374         'host_cc': '<!(which gcc)',
2375         'host_cxx': '<!(which g++)',
2376       }],
2378       # The seccomp-bpf sandbox is only supported on five architectures
2379       # currently.
2380       # Do not disable seccomp_bpf anywhere without talking to
2381       # security@chromium.org!
2382       ['((OS=="linux" or OS=="android") and '
2383            '(target_arch=="ia32" or target_arch=="x64" or '
2384              'target_arch=="arm" or target_arch=="mipsel" or '
2385              'target_arch=="arm64"))', {
2386          'use_seccomp_bpf%': 1,
2387       }, {
2388          'use_seccomp_bpf%': 0,
2389       }],
2391       ['cfi_vptr==1 or cfi_derived_cast==1 or cfi_unrelated_cast==1', {
2392         'use_lto%': 1,
2393       }],
2394     ],
2396     # The path to the ANGLE library.
2397     'angle_path': '<(DEPTH)/third_party/angle',
2399     # List of default apps to install in new profiles.  The first list contains
2400     # the source files as found in svn.  The second list, used only for linux,
2401     # contains the destination location for each of the files.  When a crx
2402     # is added or removed from the list, the chrome/browser/resources/
2403     # default_apps/external_extensions.json file must also be updated.
2404     #
2405     # README: GN version of these is in the target //chrome:default_apps
2406     # (there's no global variable like in GYP). Be sure to update that target
2407     # if you change these lists!
2408     'default_apps_list': [
2409       'browser/resources/default_apps/external_extensions.json',
2410       'browser/resources/default_apps/gmail.crx',
2411       'browser/resources/default_apps/search.crx',
2412       'browser/resources/default_apps/youtube.crx',
2413       'browser/resources/default_apps/drive.crx',
2414       'browser/resources/default_apps/docs.crx',
2415     ],
2416     'default_apps_list_linux_dest': [
2417       '<(PRODUCT_DIR)/default_apps/external_extensions.json',
2418       '<(PRODUCT_DIR)/default_apps/gmail.crx',
2419       '<(PRODUCT_DIR)/default_apps/search.crx',
2420       '<(PRODUCT_DIR)/default_apps/youtube.crx',
2421       '<(PRODUCT_DIR)/default_apps/drive.crx',
2422       '<(PRODUCT_DIR)/default_apps/docs.crx',
2423     ],
2425     # Whether to allow building of the GPU-related isolates.
2426     'archive_gpu_tests%': 0,
2428      # Whether to allow building of chromoting related isolates.
2429     'archive_chromoting_tests%': 0,
2430   },
2431   'target_defaults': {
2432     'variables': {
2433       # The condition that operates on chromium_code is in a target_conditions
2434       # section, and will not have access to the default fallback value of
2435       # chromium_code at the top of this file, or to the chromium_code
2436       # variable placed at the root variables scope of .gyp files, because
2437       # those variables are not set at target scope.  As a workaround,
2438       # if chromium_code is not set at target scope, define it in target scope
2439       # to contain whatever value it has during early variable expansion.
2440       # That's enough to make it available during target conditional
2441       # processing.
2442       'chromium_code%': '<(chromium_code)',
2444       'component%': '<(component)',
2446       'chromecast%': '<(chromecast)',
2448       # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx
2449       'win_release_Optimization%': '2', # 2 = /O2
2450       'win_debug_Optimization%': '0',   # 0 = /Od
2452       # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx
2453       # Tri-state: blank is default, 1 on, 0 off
2454       'win_release_OmitFramePointers%': '0',
2455       # Tri-state: blank is default, 1 on, 0 off
2456       'win_debug_OmitFramePointers%': '',
2458       # See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx
2459       'win_debug_RuntimeChecks%': '3',    # 3 = all checks enabled, 0 = off
2461       # See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx
2462       'win_debug_InlineFunctionExpansion%': '',    # empty = default, 0 = off,
2463       'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max
2465       # VS inserts quite a lot of extra checks to algorithms like
2466       # std::partial_sort in Debug build which make them O(N^2)
2467       # instead of O(N*logN). This is particularly slow under memory
2468       # tools like ThreadSanitizer so we want it to be disablable.
2469       # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2470       'win_debug_disable_iterator_debugging%': '0',
2472       # An application manifest fragment to declare compatibility settings for
2473       # 'executable' targets. Ignored in other target type.
2474       'win_exe_compatibility_manifest%':
2475           '<(DEPTH)\\build\\win\\compatibility.manifest',
2477       'release_extra_cflags%': '',
2478       'debug_extra_cflags%': '',
2480       'release_valgrind_build%': '<(release_valgrind_build)',
2482       # the non-qualified versions are widely assumed to be *nix-only
2483       'win_release_extra_cflags%': '',
2484       'win_debug_extra_cflags%': '',
2486       # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
2487       'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)',
2489       # Only used by Windows build for now.  Can be used to build into a
2490       # differet output directory, e.g., a build_dir_prefix of VS2010_ would
2491       # output files in src/build/VS2010_{Debug,Release}.
2492       'build_dir_prefix%': '',
2494       # Targets are by default not nacl untrusted code.
2495       'nacl_untrusted_build%': 0,
2497       'pnacl_compile_flags': [
2498         # pnacl uses the clang compiler so we need to suppress all the
2499         # same warnings as we do for clang.
2500         # TODO(sbc): Remove these if/when they are removed from the clang
2501         # build.
2502         '-Wno-unused-function',
2503         '-Wno-char-subscripts',
2504         '-Wno-c++11-extensions',
2505         '-Wno-unnamed-type-template-args',
2506       ],
2508       # By default, Android targets have their exported JNI symbols stripped,
2509       # so we test the manual JNI registration code paths that are required
2510       # when using the crazy linker. To allow use of native JNI exports (lazily
2511       # resolved by the JVM), targets can enable this variable, which will stop
2512       # the stripping from happening. Only targets which do not need to be
2513       # compatible with the crazy linker are permitted to set this.
2514       'use_native_jni_exports%': 0,
2516       'conditions': [
2517         ['OS=="win" and component=="shared_library"', {
2518           # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2519           'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL)
2520           'win_debug_RuntimeLibrary%': '3',   # 3 = /MDd (debug DLL)
2521         }, {
2522           # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2523           'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
2524           'win_debug_RuntimeLibrary%': '1',   # 1 = /MTd (debug static)
2525         }],
2526         ['OS=="ios"', {
2527           # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2528           'mac_release_optimization%': 's', # Use -Os unless overridden
2529           'mac_debug_optimization%': '0',   # Use -O0 unless overridden
2530         }, {
2531           # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2532           'mac_release_optimization%': '2', # Use -O2 unless overridden
2533           'mac_debug_optimization%': '0',   # Use -O0 unless overridden
2534         }],
2535         ['OS=="android"', {
2536           'host_os%': '<(host_os)',  # See comment above chromium_code.
2537         }],
2538       ],
2539       'clang_warning_flags': [
2540         '-Wheader-hygiene',
2542         # Don't die on dtoa code that uses a char as an array index.
2543         # This is required solely for base/third_party/dmg_fp/dtoa.cc.
2544         '-Wno-char-subscripts',
2546         # TODO(thakis): This used to be implied by -Wno-unused-function,
2547         # which we no longer use. Check if it makes sense to remove
2548         # this as well. http://crbug.com/316352
2549         '-Wno-unneeded-internal-declaration',
2551         # Warns on switches on enums that cover all enum values but
2552         # also contain a default: branch. Chrome is full of that.
2553         '-Wno-covered-switch-default',
2555         # Warns when a const char[] is converted to bool.
2556         '-Wstring-conversion',
2558         # C++11-related flags:
2560         # This warns on using ints as initializers for floats in
2561         # initializer lists (e.g. |int a = f(); CGSize s = { a, a };|),
2562         # which happens in several places in chrome code. Not sure if
2563         # this is worth fixing.
2564         '-Wno-c++11-narrowing',
2566         # Clang considers the `register` keyword as deprecated, but e.g.
2567         # code generated by flex (used in angle) contains that keyword.
2568         # http://crbug.com/255186
2569         '-Wno-deprecated-register',
2571         # TODO(hans): Get this cleaned up.
2572         '-Wno-inconsistent-missing-override',
2573       ],
2574     },
2575     'includes': [ 'set_clang_warning_flags.gypi', ],
2576     'defines': [
2577       # Don't use deprecated V8 APIs anywhere.
2578       'V8_DEPRECATION_WARNINGS',
2579     ],
2580     'include_dirs': [
2581       '<(SHARED_INTERMEDIATE_DIR)',
2582     ],
2583     'conditions': [
2584       ['(OS=="mac" or OS=="ios") and asan==1', {
2585         'dependencies': [
2586           '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
2587         ],
2588       }],
2589       ['OS=="win" and asan==1 and component=="shared_library"', {
2590         'dependencies': [
2591           '<(DEPTH)/build/win/asan.gyp:asan_dynamic_runtime',
2592         ],
2593       }],
2594       ['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', {
2595         'cflags_cc!': ['-fno-rtti'],
2596         'cflags_cc+': [
2597           '-frtti',
2598           '-gline-tables-only',
2599           '-fintercept-allocation-functions',
2600         ],
2601         'defines': ['TYPE_PROFILING'],
2602         'dependencies': [
2603           '<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
2604         ],
2605       }],
2606       ['branding=="Chrome"', {
2607         'defines': ['GOOGLE_CHROME_BUILD'],
2608       }, {  # else: branding!="Chrome"
2609         'defines': ['CHROMIUM_BUILD'],
2610       }],
2611       ['OS=="mac" and component=="shared_library"', {
2612         'xcode_settings': {
2613           'DYLIB_INSTALL_NAME_BASE': '@rpath',
2614           'LD_RUNPATH_SEARCH_PATHS': [
2615             # For unbundled binaries.
2616             '@loader_path/.',
2617             # For bundled binaries, to get back from Binary.app/Contents/MacOS.
2618             '@loader_path/../../..',
2619           ],
2620         },
2621       }],
2622       ['(clang==1 or host_clang==1) and OS!="win"', {
2623         # This is here so that all files get recompiled after a clang roll and
2624         # when turning clang on or off.
2625         # (defines are passed via the command line, and build systems rebuild
2626         # things when their commandline changes). Nothing should ever read this
2627         # define.
2628         'defines': ['CR_CLANG_REVISION=<!(<(DEPTH)/tools/clang/scripts/update.sh --print-revision)'],
2629       }],
2630       ['enable_rlz==1', {
2631         'defines': ['ENABLE_RLZ'],
2632       }],
2633       ['component=="shared_library"', {
2634         'defines': ['COMPONENT_BUILD'],
2635       }],
2636       ['toolkit_views==1', {
2637         'defines': ['TOOLKIT_VIEWS=1'],
2638       }],
2639       ['ui_compositor_image_transport==1', {
2640         'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'],
2641       }],
2642       ['use_aura==1', {
2643         'defines': ['USE_AURA=1'],
2644       }],
2645       ['use_ash==1', {
2646         'defines': ['USE_ASH=1'],
2647       }],
2648       ['use_pango==1', {
2649         'defines': ['USE_PANGO=1'],
2650       }],
2651       ['use_cairo==1', {
2652         'defines': ['USE_CAIRO=1'],
2653       }],
2654       ['use_cras==1', {
2655         'defines': ['USE_CRAS=1'],
2656       }],
2657       ['use_ozone==1', {
2658         'defines': ['USE_OZONE=1'],
2659       }],
2660       ['use_default_render_theme==1', {
2661         'defines': ['USE_DEFAULT_RENDER_THEME=1'],
2662       }],
2663       ['use_libjpeg_turbo==1', {
2664         'defines': ['USE_LIBJPEG_TURBO=1'],
2665       }],
2666       ['use_x11==1', {
2667         'defines': ['USE_X11=1'],
2668       }],
2669       ['use_clipboard_aurax11==1', {
2670         'defines': ['USE_CLIPBOARD_AURAX11=1'],
2671       }],
2672       ['enable_one_click_signin==1', {
2673         'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
2674       }],
2675       ['enable_pre_sync_backup==1', {
2676         'defines': ['ENABLE_PRE_SYNC_BACKUP'],
2677       }],
2678       ['image_loader_extension==1', {
2679         'defines': ['IMAGE_LOADER_EXTENSION=1'],
2680       }],
2681       ['profiling==1', {
2682         'defines': ['ENABLE_PROFILING=1'],
2683       }],
2684       ['remoting==1', {
2685         'defines': ['ENABLE_REMOTING=1'],
2686       }],
2687       ['enable_webrtc==1', {
2688         'defines': ['ENABLE_WEBRTC=1'],
2689       }],
2690       ['proprietary_codecs==1', {
2691         'defines': ['USE_PROPRIETARY_CODECS'],
2692         'conditions': [
2693           ['enable_mpeg2ts_stream_parser==1', {
2694             'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
2695           }],
2696         ],
2697       }],
2698       ['enable_viewport==1', {
2699         'defines': ['ENABLE_VIEWPORT'],
2700       }],
2701       ['enable_pepper_cdms==1', {
2702         'defines': ['ENABLE_PEPPER_CDMS'],
2703       }],
2704       ['enable_browser_cdms==1', {
2705         'defines': ['ENABLE_BROWSER_CDMS'],
2706       }],
2707       ['configuration_policy==1', {
2708         'defines': ['ENABLE_CONFIGURATION_POLICY'],
2709       }],
2710       ['notifications==1', {
2711         'defines': ['ENABLE_NOTIFICATIONS'],
2712       }],
2713       ['enable_hidpi==1', {
2714         'defines': ['ENABLE_HIDPI=1'],
2715       }],
2716       ['native_memory_pressure_signals==1', {
2717         'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'],
2718       }],
2719       ['use_udev==1', {
2720         'defines': ['USE_UDEV'],
2721       }],
2722       ['fastbuild!=0', {
2723         'xcode_settings': {
2724           'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
2725         },
2726         'conditions': [
2727           ['OS=="win" and fastbuild==2', {
2728             # Completely disable debug information.
2729             'msvs_settings': {
2730               'VCLinkerTool': {
2731                 'GenerateDebugInformation': 'false',
2732               },
2733               'VCCLCompilerTool': {
2734                 'DebugInformationFormat': '0',
2735               },
2736             },
2737           }],
2738           ['OS=="win" and fastbuild==1', {
2739             'msvs_settings': {
2740               'VCLinkerTool': {
2741                 # This tells the linker to generate .pdbs, so that
2742                 # we can get meaningful stack traces.
2743                 'GenerateDebugInformation': 'true',
2744               },
2745               'VCCLCompilerTool': {
2746                 # No debug info to be generated by compiler.
2747                 'DebugInformationFormat': '0',
2748               },
2749             },
2750           }],
2751           ['(OS=="android" or OS=="linux") and fastbuild==2', {
2752             'variables': { 'debug_extra_cflags': '-g0', },
2753           }],
2754           ['(OS=="android" or OS=="linux") and fastbuild==1', {
2755             # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2756             # fixed.
2757             'variables': { 'debug_extra_cflags': '-g0', },
2758           }],
2759           # Android builds symbols on release by default, disable them.
2760           ['OS=="android" and fastbuild==2', {
2761             'variables': { 'release_extra_cflags': '-g0', },
2762           }],
2763           ['OS=="android" and fastbuild==1', {
2764             # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2765             # fixed.
2766             'variables': { 'release_extra_cflags': '-g0', },
2767           }],
2768         ],
2769       }],  # fastbuild!=0
2770       ['dont_embed_build_metadata==1', {
2771         'defines': [
2772           'DONT_EMBED_BUILD_METADATA',
2773         ],
2774       }],  # dont_embed_build_metadata==1
2775       ['dcheck_always_on!=0', {
2776         'defines': ['DCHECK_ALWAYS_ON=1'],
2777       }],  # dcheck_always_on!=0
2778       ['tracing_like_official_build!=0', {
2779         'defines': ['TRACING_IS_OFFICIAL_BUILD=1'],
2780       }],  # tracing_like_official_build!=0
2781       ['OS=="win"', {
2782         'defines': ['NO_TCMALLOC'],
2783         'conditions': [
2784           ['win_use_allocator_shim==1', {
2785             'defines': ['ALLOCATOR_SHIM'],
2786           }],
2787         ],
2788       }],
2789       ['asan==1', {
2790         'defines': [
2791           'ADDRESS_SANITIZER',
2792           'MEMORY_TOOL_REPLACES_ALLOCATOR',
2793           'MEMORY_SANITIZER_INITIAL_SIZE',
2794         ],
2795       }],
2796       ['syzyasan==1', {
2797         # SyzyAsan needs /PROFILE turned on to produce appropriate pdbs.
2798         'msvs_settings': {
2799           'VCLinkerTool': {
2800             'Profile': 'true',
2801           },
2802         },
2803         'defines': [
2804             'SYZYASAN',
2805             'MEMORY_TOOL_REPLACES_ALLOCATOR',
2806             'MEMORY_SANITIZER_INITIAL_SIZE',
2807         ],
2808       }],
2809       ['kasko==1', {
2810         'defines': [
2811             'KASKO',
2812         ],
2813         'include_dirs': [
2814           '<(DEPTH)/third_party/kasko/include',
2815         ],
2816       }],
2817       ['OS=="win"', {
2818         'defines': [
2819           '__STD_C',
2820           '_CRT_SECURE_NO_DEPRECATE',
2821           '_SCL_SECURE_NO_DEPRECATE',
2822           # This define is required to pull in the new Win8 interfaces from
2823           # system headers like ShObjIdl.h.
2824           'NTDDI_VERSION=0x06030000',
2825           # This is required for ATL to use XP-safe versions of its functions.
2826           '_USING_V110_SDK71_',
2827         ],
2828         'include_dirs': [
2829           '<(DEPTH)/third_party/wtl/include',
2830         ],
2831         'conditions': [
2832           ['win_z7!=0', {
2833             'msvs_settings': {
2834               # Generates debug info when win_z7=1
2835               # even if fastbuild=1 (that makes GenerateDebugInformation false).
2836               'VCLinkerTool': {
2837                 'GenerateDebugInformation': 'true',
2838               },
2839               'VCCLCompilerTool': {
2840                 'DebugInformationFormat': '1',
2841               }
2842             }
2843           }],  # win_z7!=0
2844           ['win_analyze', {
2845             'defines!': [
2846               # This is prohibited when running /analyze.
2847               '_USING_V110_SDK71_',
2848             ],
2849             'msvs_settings': {
2850               'VCCLCompilerTool': {
2851                 # Set WarnAsError to false to disable this setting for most
2852                 # projects so that compilation continues.
2853                 'WarnAsError': 'false',
2854                 # When win_analyze is specified add the /analyze switch.
2855                 # Also add /WX- to force-disable WarnAsError for projects that
2856                 # override WarnAsError.
2857                 # Also, disable various noisy warnings that have low value.
2858                 'AdditionalOptions': [
2859                   '/analyze',
2860                   '/WX-',
2861                   '/wd6011',  # Dereferencing NULL pointer
2862                   '/wd6312',  # Possible infinite loop: use of the constant
2863                     # EXCEPTION_CONTINUE_EXECUTION in the exception-filter
2864                   '/wd6326',  # Potential comparison of constant with constant
2865                   '/wd28159', # Consider using 'GetTickCount64'
2866                   '/wd28204', # Inconsistent SAL annotations
2867                   '/wd28251', # Inconsistent SAL annotations
2868                   '/wd28252', # Inconsistent SAL annotations
2869                   '/wd28253', # Inconsistent SAL annotations
2870                   '/wd28196', # The precondition is not satisfied
2871                   '/wd28301', # Inconsistent SAL annotations
2872                   '/wd6340',  # Sign mismatch in function parameter
2873                   '/wd28182', # Dereferencing NULL pointer
2874                   # C6285 is ~16% of raw warnings and has low value
2875                   '/wd6285',  # non-zero constant || non-zero constant
2876                   # C6334 is ~80% of raw warnings and has low value
2877                   '/wd6334',  # sizeof applied to an expression with an operator
2878                 ],
2879               },
2880             },
2881           }],  # win_analyze
2882         ],
2883       }],  # OS==win
2884       ['chromecast==1', {
2885         'defines': [
2886           'LOG_DISABLED=0',
2887         ],
2888         'conditions': [
2889           ['use_playready==1', {
2890             'defines': [
2891               'PLAYREADY_CDM_AVAILABLE',
2892             ],
2893           }],
2894         ],
2895       }],
2896       ['enable_task_manager==1', {
2897         'defines': [
2898           'ENABLE_TASK_MANAGER=1',
2899         ],
2900       }],
2901       ['enable_extensions==1', {
2902         'defines': [
2903           'ENABLE_EXTENSIONS=1',
2904         ],
2905       }],
2906       ['OS=="win" and branding=="Chrome"', {
2907         'defines': ['ENABLE_SWIFTSHADER'],
2908       }],
2909       ['enable_dart==1', {
2910         'defines': ['WEBKIT_USING_DART=1'],
2911       }],
2912       ['enable_plugin_installation==1', {
2913         'defines': ['ENABLE_PLUGIN_INSTALLATION=1'],
2914       }],
2915       ['enable_plugins==1', {
2916         'defines': ['ENABLE_PLUGINS=1'],
2917       }],
2918       ['enable_session_service==1', {
2919         'defines': ['ENABLE_SESSION_SERVICE=1'],
2920       }],
2921       ['enable_themes==1', {
2922         'defines': ['ENABLE_THEMES=1'],
2923       }],
2924       ['enable_autofill_dialog==1', {
2925         'defines': ['ENABLE_AUTOFILL_DIALOG=1'],
2926       }],
2927       ['enable_prod_wallet_service==1', {
2928         'defines': ['ENABLE_PROD_WALLET_SERVICE=1'],
2929       }],
2930       ['enable_background==1', {
2931         'defines': ['ENABLE_BACKGROUND=1'],
2932       }],
2933       ['enable_google_now==1', {
2934         'defines': ['ENABLE_GOOGLE_NOW=1'],
2935       }],
2936       ['cld_version!=0', {
2937         'defines': ['CLD_VERSION=<(cld_version)'],
2938       }],
2939       ['enable_basic_printing==1 or enable_print_preview==1', {
2940         # Convenience define for ENABLE_BASIC_PRINTING || ENABLE_PRINT_PREVIEW.
2941         'defines': ['ENABLE_PRINTING=1'],
2942       }],
2943       ['enable_basic_printing==1', {
2944         # Enable basic printing support and UI.
2945         'defines': ['ENABLE_BASIC_PRINTING=1'],
2946       }],
2947       ['enable_print_preview==1', {
2948         # Enable printing with print preview.
2949         # Can be defined without ENABLE_BASIC_PRINTING.
2950         'defines': ['ENABLE_PRINT_PREVIEW=1'],
2951       }],
2952       ['enable_spellcheck==1', {
2953         'defines': ['ENABLE_SPELLCHECK=1'],
2954       }],
2955       ['enable_captive_portal_detection==1', {
2956         'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
2957       }],
2958       ['enable_app_list==1', {
2959         'defines': ['ENABLE_APP_LIST=1'],
2960       }],
2961       ['enable_settings_app==1', {
2962         'defines': ['ENABLE_SETTINGS_APP=1'],
2963       }],
2964       ['disable_file_support==1', {
2965         'defines': ['DISABLE_FILE_SUPPORT=1'],
2966       }],
2967       ['disable_ftp_support==1', {
2968         'defines': ['DISABLE_FTP_SUPPORT=1'],
2969       }],
2970       ['enable_supervised_users==1', {
2971         'defines': ['ENABLE_SUPERVISED_USERS=1'],
2972       }],
2973       ['spdy_proxy_auth_property != ""', {
2974         'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
2975       }],
2976       ['spdy_proxy_auth_value != ""', {
2977         'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'],
2978       }],
2979       ['enable_mdns==1', {
2980         'defines': ['ENABLE_MDNS=1'],
2981       }],
2982       ['enable_service_discovery==1', {
2983         'defines' : [ 'ENABLE_SERVICE_DISCOVERY=1' ],
2984       }],
2985       ['enable_wifi_bootstrapping==1', {
2986         'defines' : [ 'ENABLE_WIFI_BOOTSTRAPPING=1' ],
2987       }],
2988       ['enable_hangout_services_extension==1', {
2989         'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'],
2990       }],
2991       ['enable_ipc_fuzzer==1', {
2992         'defines': ['ENABLE_IPC_FUZZER=1'],
2993       }],
2994       ['video_hole==1', {
2995         'defines': ['VIDEO_HOLE=1'],
2996       }],
2997       ['v8_use_external_startup_data==1', {
2998        'defines': ['V8_USE_EXTERNAL_STARTUP_DATA'],
2999       }],
3000     ],  # conditions for 'target_defaults'
3001     'target_conditions': [
3002       ['<(use_libpci)==1', {
3003         'defines': ['USE_LIBPCI=1'],
3004       }],
3005       ['<(use_openssl)==1', {
3006         'defines': ['USE_OPENSSL=1'],
3007       }],
3008       ['<(use_openssl_certs)==1', {
3009         'defines': ['USE_OPENSSL_CERTS=1'],
3010       }],
3011       ['>(nacl_untrusted_build)==1', {
3012         'defines': [
3013           'USE_OPENSSL=1',
3014           'USE_OPENSSL_CERTS=1',
3015         ],
3016       }],
3017       ['<(use_glib)==1 and >(nacl_untrusted_build)==0', {
3018         'defines': ['USE_GLIB=1'],
3019       }],
3020       ['<(use_nss)==1 and >(nacl_untrusted_build)==0', {
3021         'defines': ['USE_NSS=1'],
3022       }],
3023       ['<(chromeos)==1 and >(nacl_untrusted_build)==0', {
3024         'defines': ['OS_CHROMEOS=1'],
3025       }],
3026       ['enable_wexit_time_destructors==1 and OS!="win"', {
3027         # TODO: Enable on Windows too, http://crbug.com/404525
3028         'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']},
3029       }],
3030       ['chromium_code==0', {
3031         'conditions': [
3032           [ 'os_posix==1 and OS!="mac" and OS!="ios"', {
3033             # We don't want to get warnings from third-party code,
3034             # so remove any existing warning-enabling flags like -Wall.
3035             'cflags!': [
3036               '-Wall',
3037               '-Wextra',
3038             ],
3039             'cflags_cc': [
3040               # Don't warn about hash_map in third-party code.
3041               '-Wno-deprecated',
3042             ],
3043             'cflags': [
3044               # Don't warn about printf format problems.
3045               # This is off by default in gcc but on in Ubuntu's gcc(!).
3046               '-Wno-format',
3047             ],
3048             'cflags_cc!': [
3049               # Necessary because llvm.org/PR10448 is WONTFIX (crbug.com/90453).
3050               '-Wsign-compare',
3051             ]
3052           }],
3053           # TODO: Fix all warnings on chromeos too.
3054           [ 'os_posix==1 and OS!="mac" and OS!="ios" and (clang!=1 or chromeos==1)', {
3055             'cflags!': [
3056               '-Werror',
3057             ],
3058           }],
3059           [ 'os_posix==1 and os_bsd!=1 and OS!="mac" and OS!="android"', {
3060             'cflags': [
3061               # Don't warn about ignoring the return value from e.g. close().
3062               # This is off by default in some gccs but on by default in others.
3063               # BSD systems do not support this option, since they are usually
3064               # using gcc 4.2.1, which does not have this flag yet.
3065               '-Wno-unused-result',
3066             ],
3067           }],
3068           [ 'OS=="win"', {
3069             'defines': [
3070               '_CRT_SECURE_NO_DEPRECATE',
3071               '_CRT_NONSTDC_NO_WARNINGS',
3072               '_CRT_NONSTDC_NO_DEPRECATE',
3073               '_SCL_SECURE_NO_DEPRECATE',
3074             ],
3075             'msvs_disabled_warnings': [
3076               # These are variable shadowing warnings that are new in VS2015.
3077               # We should probably work through these at some point for
3078               # non-chromium code, but for now, focus on chromium_code==1 code.
3079               4456, 4457, 4458, 4459,
3081               4800,
3082             ],
3083             'msvs_settings': {
3084               'VCCLCompilerTool': {
3085                 'WarningLevel': '3',
3086                 'WarnAsError': 'true',
3087                 'Detect64BitPortabilityProblems': 'false',
3088               },
3089             },
3090             'conditions': [
3091               ['buildtype=="Official"', {
3092                 'msvs_settings': {
3093                   'VCCLCompilerTool': { 'WarnAsError': 'false' },
3094                 }
3095               }],
3096               [ 'component=="shared_library"', {
3097               # TODO(darin): Unfortunately, some third_party code depends on base.
3098                 'msvs_disabled_warnings': [
3099                   4251,  # class 'std::xx' needs to have dll-interface.
3100                  ],
3101               }],
3102             ],
3103           }],
3105           [ 'OS=="mac" or OS=="ios"', {
3106             'xcode_settings': {
3107               'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
3108             },
3109             'conditions': [
3110               ['buildtype=="Official"', {
3111                 'xcode_settings': {
3112                   'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',    # -Werror
3113                 },
3114               }],
3115             ],
3116           }],
3117           [ 'OS=="ios"', {
3118             'xcode_settings': {
3119               # TODO(ios): Fix remaining warnings in third-party code, then
3120               # remove this; the Mac cleanup didn't get everything that's
3121               # flagged in an iOS build.
3122               'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',
3123               'RUN_CLANG_STATIC_ANALYZER': 'NO',
3124               # Several internal ios directories generate numerous warnings for
3125               # -Wobjc-missing-property-synthesis.
3126               'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
3127             },
3128           }],
3129         ],
3130       }, {
3131         'includes': [
3132            # Rules for excluding e.g. foo_win.cc from the build on non-Windows.
3133           'filename_rules.gypi',
3134         ],
3135         # In Chromium code, we define __STDC_foo_MACROS in order to get the
3136         # C99 macros on Mac and Linux.
3137         'defines': [
3138           '__STDC_CONSTANT_MACROS',
3139           '__STDC_FORMAT_MACROS',
3140         ],
3141         'conditions': [
3142           ['OS=="win"', {
3143             # turn on warnings for signed/unsigned mismatch on chromium code.
3144             'msvs_settings': {
3145               'VCCLCompilerTool': {
3146                 'AdditionalOptions': ['/we4389'],
3147               },
3148             },
3149           }],
3150           ['OS=="win" and component=="shared_library"', {
3151             'msvs_disabled_warnings': [
3152               4251,  # class 'std::xx' needs to have dll-interface.
3153             ],
3154           }],
3155         ],
3156       }],
3157     ],  # target_conditions for 'target_defaults'
3158     'default_configuration': 'Debug',
3159     'configurations': {
3160       # VCLinkerTool LinkIncremental values below:
3161       #   0 == default
3162       #   1 == /INCREMENTAL:NO
3163       #   2 == /INCREMENTAL
3164       # Debug links incremental, Release does not.
3165       #
3166       # Abstract base configurations to cover common attributes.
3167       #
3168       'Common_Base': {
3169         'abstract': 1,
3170         'msvs_configuration_attributes': {
3171           'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(ConfigurationName)',
3172           'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
3173           'CharacterSet': '1',
3174         },
3175         # Add the default import libs.
3176         'msvs_settings':{
3177           'VCLinkerTool': {
3178             'AdditionalDependencies': [
3179               'kernel32.lib',
3180               'gdi32.lib',
3181               'winspool.lib',
3182               'comdlg32.lib',
3183               'advapi32.lib',
3184               'shell32.lib',
3185               'ole32.lib',
3186               'oleaut32.lib',
3187               'user32.lib',
3188               'uuid.lib',
3189               'odbc32.lib',
3190               'odbccp32.lib',
3191               'delayimp.lib',
3192               'credui.lib',
3193               'netapi32.lib',
3194             ],
3195             'AdditionalOptions': [
3196               # Suggested by Microsoft Devrel to avoid
3197               #   LINK : fatal error LNK1248: image size (80000000) exceeds maximum allowable size (80000000)
3198               # which started happening more regularly after VS2013 Update 4.
3199               # Needs to be a bit lower for VS2015, or else errors out.
3200               '/maxilksize:0x7ff00000',
3201             ],
3202           },
3203         },
3204       },
3205       'x86_Base': {
3206         'abstract': 1,
3207         'msvs_settings': {
3208           'VCLinkerTool': {
3209             'MinimumRequiredVersion': '5.01',  # XP.
3210             'TargetMachine': '1',
3211           },
3212           'VCLibrarianTool': {
3213             'TargetMachine': '1',
3214           },
3215         },
3216         'msvs_configuration_platform': 'Win32',
3217       },
3218       'x64_Base': {
3219         'abstract': 1,
3220         'msvs_configuration_platform': 'x64',
3221         'msvs_settings': {
3222           'VCLinkerTool': {
3223             # Make sure to understand http://crbug.com/361720 if you want to
3224             # increase this.
3225             'MinimumRequiredVersion': '5.02',  # Server 2003.
3226             'TargetMachine': '17', # x86 - 64
3227             'AdditionalLibraryDirectories!':
3228               ['<(windows_sdk_path)/Lib/win8/um/x86'],
3229             'AdditionalLibraryDirectories':
3230               ['<(windows_sdk_path)/Lib/win8/um/x64'],
3231             # Doesn't exist x64 SDK. Should use oleaut32 in any case.
3232             'IgnoreDefaultLibraryNames': [ 'olepro32.lib' ],
3233           },
3234           'VCLibrarianTool': {
3235             'AdditionalLibraryDirectories!':
3236               ['<(windows_sdk_path)/Lib/win8/um/x86'],
3237             'AdditionalLibraryDirectories':
3238               ['<(windows_sdk_path)/Lib/win8/um/x64'],
3239             'TargetMachine': '17', # x64
3240           },
3241         },
3242       },
3243       'Debug_Base': {
3244         'abstract': 1,
3245         'defines': [
3246           'DYNAMIC_ANNOTATIONS_ENABLED=1',
3247           'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3248         ],
3249         'xcode_settings': {
3250           'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)',
3251           'OTHER_CFLAGS': [
3252             '<@(debug_extra_cflags)',
3253           ],
3254         },
3255         'msvs_settings': {
3256           'VCCLCompilerTool': {
3257             'Optimization': '<(win_debug_Optimization)',
3258             'PreprocessorDefinitions': ['_DEBUG'],
3259             'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)',
3260             'RuntimeLibrary': '<(win_debug_RuntimeLibrary)',
3261             'conditions': [
3262               # According to MSVS, InlineFunctionExpansion=0 means
3263               # "default inlining", not "/Ob0".
3264               # Thus, we have to handle InlineFunctionExpansion==0 separately.
3265               ['win_debug_InlineFunctionExpansion==0', {
3266                 'AdditionalOptions': ['/Ob0'],
3267               }],
3268               ['win_debug_InlineFunctionExpansion!=""', {
3269                 'InlineFunctionExpansion':
3270                   '<(win_debug_InlineFunctionExpansion)',
3271               }],
3272               ['win_debug_disable_iterator_debugging==1', {
3273                 'PreprocessorDefinitions': ['_HAS_ITERATOR_DEBUGGING=0'],
3274               }],
3276               # if win_debug_OmitFramePointers is blank, leave as default
3277               ['win_debug_OmitFramePointers==1', {
3278                 'OmitFramePointers': 'true',
3279               }],
3280               ['win_debug_OmitFramePointers==0', {
3281                 'OmitFramePointers': 'false',
3282                 # The above is not sufficient (http://crbug.com/106711): it
3283                 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3284                 # perform FPO regardless, so we must explicitly disable.
3285                 # We still want the false setting above to avoid having
3286                 # "/Oy /Oy-" and warnings about overriding.
3287                 'AdditionalOptions': ['/Oy-'],
3288               }],
3289             ],
3290             'AdditionalOptions': [ '<@(win_debug_extra_cflags)', ],
3291           },
3292           'VCLinkerTool': {
3293             'LinkIncremental': '<(msvs_debug_link_incremental)',
3294             # ASLR makes debugging with windbg difficult because Chrome.exe and
3295             # Chrome.dll share the same base name. As result, windbg will
3296             # name the Chrome.dll module like chrome_<base address>, where
3297             # <base address> typically changes with each launch. This in turn
3298             # means that breakpoints in Chrome.dll don't stick from one launch
3299             # to the next. For this reason, we turn ASLR off in debug builds.
3300             # Note that this is a three-way bool, where 0 means to pick up
3301             # the default setting, 1 is off and 2 is on.
3302             'RandomizedBaseAddress': 1,
3303           },
3304           'VCResourceCompilerTool': {
3305             'PreprocessorDefinitions': ['_DEBUG'],
3306           },
3307         },
3308         'conditions': [
3309           ['OS=="linux" or OS=="android"', {
3310             'target_conditions': [
3311               ['_toolset=="target"', {
3312                 'cflags': [
3313                   '<@(debug_extra_cflags)',
3314                 ],
3315               }],
3316             ],
3317           }],
3318           ['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', {
3319             # Enable libstdc++ debugging facilities to help catch problems
3320             # early, see http://crbug.com/65151 .
3321             # TODO(phajdan.jr): Should we enable this for all of POSIX?
3322             'defines': ['_GLIBCXX_DEBUG=1',],
3323           }],
3324           ['release_valgrind_build==0', {
3325             'xcode_settings': {
3326               'OTHER_CFLAGS': [
3327                 '-fstack-protector-all',  # Implies -fstack-protector
3328               ],
3329             },
3330           }],
3331           ['clang==1', {
3332             'cflags': [
3333               # Allow comparing the address of references and 'this' against 0
3334               # in debug builds. Technically, these can never be null in
3335               # well-defined C/C++ and Clang can optimize such checks away in
3336               # release builds, but they may be used in asserts in debug builds.
3337               '-Wno-undefined-bool-conversion',
3338               '-Wno-tautological-undefined-compare',
3339             ],
3340             'xcode_settings': {
3341               'OTHER_CFLAGS': [
3342                 '-Wno-undefined-bool-conversion',
3343                 '-Wno-tautological-undefined-compare',
3344               ],
3345             },
3346             'msvs_settings': {
3347               'VCCLCompilerTool': {
3348                 'AdditionalOptions': [
3349                   '-Wno-undefined-bool-conversion',
3350                   '-Wno-tautological-undefined-compare',
3351                 ],
3352               },
3353             },
3354           }],
3355         ],
3356       },
3357       'Release_Base': {
3358         'abstract': 1,
3359         'defines': [
3360           'NDEBUG',
3361         ],
3362         'xcode_settings': {
3363           'DEAD_CODE_STRIPPING': 'YES',  # -Wl,-dead_strip
3364           'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)',
3365           'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ],
3366         },
3367         'msvs_settings': {
3368           'VCCLCompilerTool': {
3369             'RuntimeLibrary': '<(win_release_RuntimeLibrary)',
3370             'conditions': [
3371               # In official builds, each target will self-select
3372               # an optimization level.
3373               ['buildtype!="Official"', {
3374                   'Optimization': '<(win_release_Optimization)',
3375                 },
3376               ],
3377               # According to MSVS, InlineFunctionExpansion=0 means
3378               # "default inlining", not "/Ob0".
3379               # Thus, we have to handle InlineFunctionExpansion==0 separately.
3380               ['win_release_InlineFunctionExpansion==0', {
3381                 'AdditionalOptions': ['/Ob0'],
3382               }],
3383               ['win_release_InlineFunctionExpansion!=""', {
3384                 'InlineFunctionExpansion':
3385                   '<(win_release_InlineFunctionExpansion)',
3386               }],
3388               # if win_release_OmitFramePointers is blank, leave as default
3389               ['win_release_OmitFramePointers==1', {
3390                 'OmitFramePointers': 'true',
3391               }],
3392               ['win_release_OmitFramePointers==0', {
3393                 'OmitFramePointers': 'false',
3394                 # The above is not sufficient (http://crbug.com/106711): it
3395                 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3396                 # perform FPO regardless, so we must explicitly disable.
3397                 # We still want the false setting above to avoid having
3398                 # "/Oy /Oy-" and warnings about overriding.
3399                 'AdditionalOptions': ['/Oy-'],
3400               }],
3401               ['asan==0', {
3402                 # Put data in separate COMDATs. This allows the linker
3403                 # to put bit-identical constants at the same address even if
3404                 # they're unrelated constants, which saves binary size.
3405                 # This optimization can't be used when ASan is enabled because
3406                 # it is not compatible with the ASan ODR checker.
3407                 'AdditionalOptions': ['/Gw'],
3408               }],
3409             ],
3410             'AdditionalOptions': [
3411                 '/d2Zi+',  # Improve debugging of Release builds.
3412                 '/Zc:inline',  # Remove unreferenced COMDAT (faster links).
3413                 '<@(win_release_extra_cflags)',
3414             ],
3415           },
3416           'VCLinkerTool': {
3417             # LinkIncremental is a tri-state boolean, where 0 means default
3418             # (i.e., inherit from parent solution), 1 means false, and
3419             # 2 means true.
3420             'LinkIncremental': '1',
3421             # This corresponds to the /PROFILE flag which ensures the PDB
3422             # file contains FIXUP information (growing the PDB file by about
3423             # 5%) but does not otherwise alter the output binary. This
3424             # information is used by the Syzygy optimization tool when
3425             # decomposing the release image.
3426             'Profile': 'true',
3427           },
3428         },
3429         'conditions': [
3430           ['msvs_use_common_release', {
3431             'includes': ['release.gypi'],
3432           }],
3433           ['release_valgrind_build==0 and tsan==0', {
3434             'defines': [
3435               'NVALGRIND',
3436               'DYNAMIC_ANNOTATIONS_ENABLED=0',
3437             ],
3438           }, {
3439             'defines': [
3440               'MEMORY_TOOL_REPLACES_ALLOCATOR',
3441               'MEMORY_SANITIZER_INITIAL_SIZE',
3442               'DYNAMIC_ANNOTATIONS_ENABLED=1',
3443               'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3444             ],
3445           }],
3446           ['OS=="win"', {
3447             'defines': ['NO_TCMALLOC'],
3448           }],
3449           # _FORTIFY_SOURCE isn't really supported by Clang now, see
3450           # http://llvm.org/bugs/show_bug.cgi?id=16821.
3451           # It seems to work fine with Ubuntu 12 headers though, so use it
3452           # in official builds.
3453           ['os_posix==1 and (asan!=1 and msan!=1 and tsan!=1 and lsan!=1 and ubsan!=1) and (OS!="linux" or clang!=1 or buildtype=="Official")', {
3454             'target_conditions': [
3455               ['chromium_code==1', {
3456                 # Non-chromium code is not guaranteed to compile cleanly
3457                 # with _FORTIFY_SOURCE. Also, fortified build may fail
3458                 # when optimizations are disabled, so only do that for Release
3459                 # build.
3460                 'defines': [
3461                   '_FORTIFY_SOURCE=2',
3462                 ],
3463               }],
3464             ],
3465           }],
3466           ['OS=="linux" or OS=="android"', {
3467             'target_conditions': [
3468               ['_toolset=="target"', {
3469                 'cflags': [
3470                   '<@(release_extra_cflags)',
3471                 ],
3472                 'conditions': [
3473                   ['enable_resource_whitelist_generation==1', {
3474                     'cflags': [
3475                       '-Wunknown-pragmas -Wno-error=unknown-pragmas',
3476                     ],
3477                   }],
3478                 ],
3479               }],
3480             ],
3481           }],
3482           ['OS=="ios"', {
3483             'defines': [
3484               'NS_BLOCK_ASSERTIONS=1',
3485             ],
3486           }],
3487         ],
3488       },
3489       #
3490       # Concrete configurations
3491       #
3492       'Debug': {
3493         'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'],
3494       },
3495       'Release': {
3496         'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3497       },
3498       'conditions': [
3499         [ 'OS=="ios"', {
3500           'Profile': {
3501             'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3502             'target_conditions': [
3503               [ '_type=="executable"', {
3504                 # To get a real .dSYM bundle produced by dsymutil, set the
3505                 # debug information format to dwarf-with-dsym.  Since
3506                 # strip_from_xcode will not be used, set Xcode to do the
3507                 # stripping as well.
3508                 'xcode_settings': {
3509                   'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
3510                   'DEPLOYMENT_POSTPROCESSING': 'YES',
3511                   'STRIP_INSTALLED_PRODUCT': 'YES',
3512                 },
3513               }],
3514             ],
3515           },
3516         }],
3517         [ 'OS=="win"', {
3518           # TODO(bradnelson): add a gyp mechanism to make this more graceful.
3519           'Debug_x64': {
3520             'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'],
3521           },
3522           'Release_x64': {
3523             'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'],
3524           },
3525         }],
3526       ],
3527     },
3528   },
3529   'conditions': [
3530     ['os_posix==1', {
3531       'target_defaults': {
3532         'ldflags': [
3533           '-Wl,-z,now',
3534           '-Wl,-z,relro',
3535         ],
3536         # TODO(glider): enable the default options on other systems.
3537         'conditions': [
3538           ['use_sanitizer_options==1 and ((OS=="linux" and (chromeos==0 or target_arch!="ia32")) or OS=="mac")', {
3539             'dependencies': [
3540               '<(DEPTH)/build/sanitizers/sanitizers.gyp:sanitizer_options',
3541             ],
3542           }],
3543         ],
3544       },
3545     }],
3546     # TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580
3547     ['os_posix==1 and disable_fatal_linker_warnings==0 and use_evdev_gestures==0 and (chromeos==0 or target_arch!="arm")', {
3548       'target_defaults': {
3549         'ldflags': [
3550           '-Wl,--fatal-warnings',
3551         ],
3552       },
3553     }],
3554     # -Wl,-z,-defs doesn't work with the sanitiziers, http://crbug.com/452065
3555     ['(OS=="linux" or OS=="android") and asan==0 and msan==0 and tsan==0 and ubsan==0 and ubsan_vptr==0', {
3556       'target_defaults': {
3557         'ldflags': [
3558           '-Wl,-z,defs',
3559         ],
3560       },
3561     }],
3562     ['os_posix==1 and chromeos==0', {
3563       # Chrome OS enables -fstack-protector-strong via its build wrapper,
3564       # and we want to avoid overriding this, so stack-protector is only
3565       # enabled when not building on Chrome OS.
3566       # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc
3567       # supports it.
3568       'target_defaults': {
3569         'cflags': [
3570           '-fstack-protector',
3571           '--param=ssp-buffer-size=4',
3572         ],
3573       },
3574     }],
3575     ['os_posix==1 and OS!="mac" and OS!="ios"', {
3576       'target_defaults': {
3577         # Enable -Werror by default, but put it in a variable so it can
3578         # be disabled in ~/.gyp/include.gypi on the valgrind builders.
3579         'variables': {
3580           'werror%': '-Werror',
3581           'libraries_for_target%': '',
3582         },
3583         'defines': [
3584           '_FILE_OFFSET_BITS=64',
3585         ],
3586         'cflags': [
3587           '<(werror)',  # See note above about the werror variable.
3588           '-pthread',
3589           '-fno-strict-aliasing',  # See http://crbug.com/32204
3590           '-Wall',
3591           # Don't warn about unused function params.  We use those everywhere.
3592           '-Wno-unused-parameter',
3593           # Don't warn about the "struct foo f = {0};" initialization pattern.
3594           '-Wno-missing-field-initializers',
3595           # Don't export any symbols (for example, to plugins we dlopen()).
3596           # Note: this is *required* to make some plugins work.
3597           '-fvisibility=hidden',
3598           '-pipe',
3599         ],
3600         'cflags_cc': [
3601           '-fno-exceptions',
3602           '-fno-rtti',
3603           '-fno-threadsafe-statics',
3604           # Make inline functions have hidden visiblity by default.
3605           # Surprisingly, not covered by -fvisibility=hidden.
3606           '-fvisibility-inlines-hidden',
3607           # GCC turns on -Wsign-compare for C++ under -Wall, but clang doesn't,
3608           # so we specify it explicitly.  (llvm.org/PR10448, crbug.com/90453)
3609           '-Wsign-compare',
3610         ],
3611         'ldflags': [
3612           '-pthread', '-Wl,-z,noexecstack',
3613         ],
3614         'libraries' : [
3615           '<(libraries_for_target)',
3616         ],
3617         'configurations': {
3618           'Debug_Base': {
3619             'variables': {
3620               'debug_optimize%': '0',
3621             },
3622             'defines': [
3623               '_DEBUG',
3624             ],
3625             'cflags': [
3626               '-O>(debug_optimize)',
3627               '-g',
3628               '-gdwarf-4',
3629             ],
3630             'conditions' : [
3631               ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3632                 # TODO(jdduke) Re-enable on mips after resolving linking
3633                 # issues with libc++ (crbug.com/456380).
3634                 'ldflags': [
3635                   # Warn in case of text relocations.
3636                   '-Wl,--warn-shared-textrel',
3637                 ],
3638               }],
3639               ['OS=="android" and android_full_debug==0', {
3640                 # Some configurations are copied from Release_Base to reduce
3641                 # the binary size.
3642                 'variables': {
3643                   'debug_optimize%': 's',
3644                 },
3645                 'cflags': [
3646                   '-fdata-sections',
3647                   '-ffunction-sections',
3648                 ],
3649                 'ldflags': [
3650                   '-Wl,-O1',
3651                   '-Wl,--as-needed',
3652                 ],
3653               }],
3654               ['OS=="android" and android_full_debug==0 and target_arch!="arm64"', {
3655                 # We don't omit frame pointers on arm64 since they are required
3656                 # to correctly unwind stackframes which contain system library
3657                 # function frames (crbug.com/391706).
3658                 'cflags': [
3659                   '-fomit-frame-pointer',
3660                 ],
3661               }],
3662               ['OS=="linux" and target_arch=="ia32"', {
3663                 'ldflags': [
3664                   '-Wl,--no-as-needed',
3665                 ],
3666               }],
3667               ['debug_unwind_tables==1', {
3668                 'cflags': ['-funwind-tables'],
3669               }, {
3670                 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3671                 'defines': ['NO_UNWIND_TABLES'],
3672               }],
3673               # TODO(mostynb): shuffle clang/gcc_version/binutils_version
3674               # definitions in to the right scope to use them when setting
3675               # linux_use_debug_fission, so it can be used here alone.
3676               ['linux_use_debug_fission==1 and linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
3677                 'cflags': ['-gsplit-dwarf'],
3678               }],
3679             ],
3680           },
3681           'Release_Base': {
3682             'variables': {
3683               'release_optimize%': '2',
3684               # Binaries become big and gold is unable to perform GC
3685               # and remove unused sections for some of test targets
3686               # on 32 bit platform.
3687               # (This is currently observed only in chromeos valgrind bots)
3688               # The following flag is to disable --gc-sections linker
3689               # option for these bots.
3690               'no_gc_sections%': 0,
3692               # TODO(bradnelson): reexamine how this is done if we change the
3693               # expansion of configurations
3694               'release_valgrind_build%': 0,
3695             },
3696             'cflags': [
3697               '-O<(release_optimize)',
3698               # Don't emit the GCC version ident directives, they just end up
3699               # in the .comment section taking up binary size.
3700               '-fno-ident',
3701               # Put data and code in their own sections, so that unused symbols
3702               # can be removed at link time with --gc-sections.
3703               '-fdata-sections',
3704               '-ffunction-sections',
3705             ],
3706             'ldflags': [
3707               # Specifically tell the linker to perform optimizations.
3708               # See http://lwn.net/Articles/192624/ .
3709               '-Wl,-O1',
3710               '-Wl,--as-needed',
3711             ],
3712             'conditions' : [
3713               ['no_gc_sections==0', {
3714                 'ldflags': [
3715                   '-Wl,--gc-sections',
3716                 ],
3717               }],
3718               ['OS=="android" and target_arch!="arm64"', {
3719                 # We don't omit frame pointers on arm64 since they are required
3720                 # to correctly unwind stackframes which contain system library
3721                 # function frames (crbug.com/391706).
3722                 'cflags': [
3723                   '-fomit-frame-pointer',
3724                 ]
3725               }],
3726               ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3727                 # TODO(jdduke) Re-enable on mips after resolving linking
3728                 # issues with libc++ (crbug.com/456380).
3729                 'ldflags': [
3730                   # Warn in case of text relocations.
3731                   '-Wl,--warn-shared-textrel',
3732                 ],
3733               }],
3734               ['OS=="android"', {
3735                 'variables': {
3736                   'release_optimize%': 's',
3737                 },
3738               }],
3739               ['profiling==1', {
3740                 'cflags': [
3741                   '-fno-omit-frame-pointer',
3742                   '-g',
3743                 ],
3744                 'conditions' : [
3745                   ['profiling_full_stack_frames==1', {
3746                     'cflags': [
3747                       '-fno-inline',
3748                       '-fno-optimize-sibling-calls',
3749                     ],
3750                   }],
3751                 ],
3752               }],
3753               ['release_unwind_tables==1', {
3754                 'cflags': ['-funwind-tables'],
3755               }, {
3756                 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3757                 'defines': ['NO_UNWIND_TABLES'],
3758               }],
3759             ],
3760           },
3761         },
3762         'conditions': [
3763           ['target_arch=="ia32"', {
3764             'target_conditions': [
3765               ['_toolset=="target"', {
3766                 'asflags': [
3767                   # Needed so that libs with .s files (e.g. libicudata.a)
3768                   # are compatible with the general 32-bit-ness.
3769                   '-32',
3770                 ],
3771                 # All floating-point computations on x87 happens in 80-bit
3772                 # precision.  Because the C and C++ language standards allow
3773                 # the compiler to keep the floating-point values in higher
3774                 # precision than what's specified in the source and doing so
3775                 # is more efficient than constantly rounding up to 64-bit or
3776                 # 32-bit precision as specified in the source, the compiler,
3777                 # especially in the optimized mode, tries very hard to keep
3778                 # values in x87 floating-point stack (in 80-bit precision)
3779                 # as long as possible. This has important side effects, that
3780                 # the real value used in computation may change depending on
3781                 # how the compiler did the optimization - that is, the value
3782                 # kept in 80-bit is different than the value rounded down to
3783                 # 64-bit or 32-bit. There are possible compiler options to
3784                 # make this behavior consistent (e.g. -ffloat-store would keep
3785                 # all floating-values in the memory, thus force them to be
3786                 # rounded to its original precision) but they have significant
3787                 # runtime performance penalty.
3788                 #
3789                 # -mfpmath=sse -msse2 makes the compiler use SSE instructions
3790                 # which keep floating-point values in SSE registers in its
3791                 # native precision (32-bit for single precision, and 64-bit
3792                 # for double precision values). This means the floating-point
3793                 # value used during computation does not change depending on
3794                 # how the compiler optimized the code, since the value is
3795                 # always kept in its specified precision.
3796                 #
3797                 # Refer to http://crbug.com/348761 for rationale behind SSE2
3798                 # being a minimum requirement for 32-bit Linux builds and
3799                 # http://crbug.com/313032 for an example where this has "bit"
3800                 # us in the past.
3801                 'cflags': [
3802                   '-msse2',
3803                   '-mfpmath=sse',
3804                   '-mmmx',  # Allows mmintrin.h for MMX intrinsics.
3805                   '-m32',
3806                 ],
3807                 'ldflags': [
3808                   '-m32',
3809                 ],
3810                 'conditions': [
3811                   # Use gold linker for Android ia32 target.
3812                   ['OS=="android"', {
3813                     'ldflags': [
3814                       '-fuse-ld=gold',
3815                     ],
3816                   }],
3817                   # Install packages have started cropping up with
3818                   # different headers between the 32-bit and 64-bit
3819                   # versions, so we have to shadow those differences off
3820                   # and make sure a 32-bit-on-64-bit build picks up the
3821                   # right files.
3822                   # For android build, use NDK headers instead of host headers
3823                   ['host_arch!="ia32" and OS!="android"', {
3824                     'include_dirs+': [
3825                       '/usr/include32',
3826                     ],
3827                   }],
3828                 ],
3829               }],
3830             ],
3831           }],
3832           ['target_arch=="x64"', {
3833             'target_conditions': [
3834               ['_toolset=="target"', {
3835                 'conditions': [
3836                   # Use gold linker for Android x64 target.
3837                   ['OS=="android"', {
3838                     'ldflags': [
3839                       '-fuse-ld=gold',
3840                     ],
3841                   }],
3842                 ],
3843                 'cflags': [
3844                   '-m64',
3845                   '-march=x86-64',
3846                 ],
3847                 'ldflags': [
3848                   '-m64',
3849                 ],
3850               }],
3851             ],
3852           }],
3853           ['target_arch=="arm"', {
3854             'target_conditions': [
3855               ['_toolset=="target"', {
3856                 'conditions': [
3857                   ['clang==0', {
3858                     'cflags_cc': [
3859                       # The codesourcery arm-2009q3 toolchain warns at that the ABI
3860                       # has changed whenever it encounters a varargs function. This
3861                       # silences those warnings, as they are not helpful and
3862                       # clutter legitimate warnings.
3863                       '-Wno-abi',
3864                     ],
3865                   }],
3866                   ['clang==1 and arm_arch!="" and OS!="android"', {
3867                     'cflags': [
3868                       '-target arm-linux-gnueabihf',
3869                     ],
3870                     'ldflags': [
3871                       '-target arm-linux-gnueabihf',
3872                     ],
3873                   }],
3874                   ['arm_arch!=""', {
3875                     'cflags': [
3876                       '-march=<(arm_arch)',
3877                     ],
3878                     'conditions': [
3879                       ['use_lto==1 or use_lto_o2==1', {
3880                         'ldflags': [
3881                           '-march=<(arm_arch)',
3882                         ],
3883                       }],
3884                     ],
3885                   }],
3886                   ['clang==1 and OS!="android"', {
3887                     'cflags': [
3888                       # We need to disable clang's builtin assembler as it can't
3889                       # handle several asm files, crbug.com/124610
3890                       '-no-integrated-as',
3891                     ],
3892                   }],
3893                   ['arm_tune!=""', {
3894                     'cflags': [
3895                       '-mtune=<(arm_tune)',
3896                     ],
3897                     'conditions': [
3898                       ['use_lto==1 or use_lto_o2==1', {
3899                         'ldflags': [
3900                           '-mtune=<(arm_tune)',
3901                         ],
3902                       }],
3903                     ],
3904                   }],
3905                   ['arm_fpu!=""', {
3906                     'cflags': [
3907                       '-mfpu=<(arm_fpu)',
3908                     ],
3909                     'conditions': [
3910                       ['use_lto==1 or use_lto_o2==1', {
3911                         'ldflags': [
3912                           '-mfpu=<(arm_fpu)',
3913                         ],
3914                       }],
3915                     ],
3916                   }],
3917                   ['arm_float_abi!=""', {
3918                     'cflags': [
3919                       '-mfloat-abi=<(arm_float_abi)',
3920                     ],
3921                     'conditions': [
3922                       ['use_lto==1 or use_lto_o2==1', {
3923                         'ldflags': [
3924                           '-mfloat-abi=<(arm_float_abi)',
3925                         ],
3926                       }],
3927                     ],
3928                   }],
3929                   ['arm_thumb==1', {
3930                     'cflags': [
3931                       '-mthumb',
3932                     ],
3933                     'conditions': [
3934                       ['use_lto==1 or use_lto_o2==1', {
3935                         'ldflags': [
3936                           '-mthumb',
3937                         ],
3938                       }],
3939                     ],
3940                   }],
3941                   ['OS=="android"', {
3942                     # Most of the following flags are derived from what Android
3943                     # uses by default when building for arm, reference for which
3944                     # can be found in the following file in the Android NDK:
3945                     # toolchains/arm-linux-androideabi-4.9/setup.mk
3946                     'cflags': [
3947                       # The tree-sra optimization (scalar replacement for
3948                       # aggregates enabling subsequent optimizations) leads to
3949                       # invalid code generation when using the Android NDK's
3950                       # compiler (r5-r7). This can be verified using
3951                       # webkit_unit_tests' WTF.Checked_int8_t test.
3952                       '-fno-tree-sra',
3953                       # The following option is disabled to improve binary
3954                       # size and performance in gcc 4.9.
3955                       '-fno-caller-saves',
3956                       '-Wno-psabi',
3957                     ],
3958                     # Android now supports .relro sections properly.
3959                     # NOTE: While these flags enable the generation of .relro
3960                     # sections, the generated libraries can still be loaded on
3961                     # older Android platform versions.
3962                     'ldflags': [
3963                         '-Wl,-z,relro',
3964                         '-Wl,-z,now',
3965                         '-fuse-ld=gold',
3966                     ],
3967                     'conditions': [
3968                       ['gcc_version==48 and clang==0', {
3969                         'cflags': [
3970                           # The following 5 options are disabled to save on
3971                           # binary size in GCC 4.8.
3972                           '-fno-partial-inlining',
3973                           '-fno-early-inlining',
3974                           '-fno-tree-copy-prop',
3975                           '-fno-tree-loop-optimize',
3976                           '-fno-move-loop-invariants',
3977                         ],
3978                       }],
3979                       ['arm_thumb==1', {
3980                         'cflags': [ '-mthumb-interwork' ],
3981                       }],
3982                       ['profiling==1', {
3983                         'cflags': [
3984                           # Thumb code with frame pointer makes chrome crash
3985                           # early.
3986                           '-marm',
3987                           '-mapcs-frame', # Required by -fno-omit-frame-pointer.
3988                           # The perf report sometimes incorrectly attributes
3989                           # code from tail calls.
3990                           '-fno-optimize-sibling-calls',
3991                         ],
3992                         'cflags!': [
3993                           '-fomit-frame-pointer',
3994                         ],
3995                       }],
3996                       ['clang==1', {
3997                         'cflags!': [
3998                           # Clang does not support the following options.
3999                           '-mapcs-frame',
4000                           '-mthumb-interwork',
4001                           '-finline-limit=64',
4002                           '-fno-tree-sra',
4003                           '-fno-caller-saves',
4004                           '-Wno-psabi',
4005                         ],
4006                         'cflags': [
4007                           # TODO(hans) Enable integrated-as (crbug.com/124610).
4008                           '-no-integrated-as',
4009                           '-B<(android_toolchain)',  # Else /usr/bin/as gets picked up.
4010                         ],
4011                         'ldflags': [
4012                           # Let clang find the ld.gold in the NDK.
4013                           '--gcc-toolchain=<(android_toolchain)/..',
4014                         ],
4015                       }],
4016                       ['asan==1', {
4017                         'cflags': [
4018                           '-marm', # Required for frame pointer based stack traces.
4019                         ],
4020                       }],
4021                     ],
4022                   }],
4023                   ['chromecast==1', {
4024                     'cflags': [
4025                       # We set arm_arch to "" so that -march compiler option
4026                       # is not set.  Otherwise a gcc bug that would complain
4027                       # about it conflicting with '-mcpu=cortex-a9'. The flag
4028                       # '-march=armv7-a' is actually redundant anyway because
4029                       # it is enabled by default when we built the toolchain.
4030                       # And using '-mcpu=cortex-a9' should be sufficient.
4031                       '-mcpu=cortex-a9',
4032                       '-funwind-tables',
4033                       # Breakpad requires symbols with debugging information
4034                       '-g',
4035                     ],
4036                     'ldflags': [
4037                       # We want to statically link libstdc++/libgcc_s.
4038                       '-static-libstdc++',
4039                       '-static-libgcc',
4040                     ],
4041                     'cflags!': [
4042                       # Some components in Chromium (e.g. v8, skia, ffmpeg)
4043                       # define their own cflags for arm builds that could
4044                       # conflict with the flags we set here (e.g.
4045                       # '-mcpu=cortex-a9'). Remove these flags explicitly.
4046                       '-march=armv7-a',
4047                       '-mtune=cortex-a8',
4048                     ],
4049                   }],
4050                 ],
4051               }],
4052             ],
4053           }],
4054           ['target_arch=="arm64"', {
4055             'target_conditions': [
4056               ['_toolset=="target"', {
4057                 'conditions': [
4058                   ['OS=="android"', {
4059                     'cflags!': [
4060                        '-fstack-protector',  # stack protector is always enabled on arm64.
4061                     ],
4062                     'ldflags': [
4063                       '-fuse-ld=gold',
4064                     ],
4065                   }],
4066                 ],
4067               }],
4068             ],
4069           }],
4070           ['target_arch=="mipsel"', {
4071             'target_conditions': [
4072               ['_toolset=="target"', {
4073                 'conditions': [
4074                   ['mips_arch_variant=="r6"', {
4075                     'conditions': [
4076                       ['clang==1', {
4077                         'cflags': [ '-target mipsel-linux-gnu', '-march=mips32r6', ],
4078                         'ldflags': [ '-target mipsel-linux-gnu', ],
4079                       }, { # clang==0
4080                         'cflags': ['-mips32r6', '-Wa,-mips32r6', ],
4081                       }],
4082                       ['clang==0 and OS=="android"', {
4083                         'ldflags': ['-mips32r6', '-Wl,-melf32ltsmip',],
4084                       }],
4085                     ],
4086                   }],
4087                   ['mips_arch_variant=="r2"', {
4088                     'conditions': [
4089                       ['mips_float_abi=="hard" and mips_fpu_mode!=""', {
4090                         'cflags': ['-m<(mips_fpu_mode)'],
4091                       }],
4092                       ['clang==1', {
4093                          'conditions': [
4094                           ['OS=="android"', {
4095                             'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32r2'],
4096                             'ldflags': [ '-target mipsel-linux-android', ],
4097                           }],
4098                          ],
4099                       }, { # clang==0
4100                         'cflags': ['-mips32r2', '-Wa,-mips32r2', ],
4101                       }],
4102                     ],
4103                   }],
4104                   ['mips_arch_variant=="r1"', {
4105                     'conditions': [
4106                       ['clang==1', {
4107                         'conditions': [
4108                           ['OS=="android"', {
4109                             'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32'],
4110                             'ldflags': [ '-target mipsel-linux-android', ],
4111                           }],
4112                         ],
4113                       }, { # clang==0
4114                         'cflags': ['-mips32', '-Wa,-mips32', ],
4115                       }],
4116                     ],
4117                   }],
4118                   ['clang==1', {
4119                     'cflags!': [
4120                       # Clang does not support the following options.
4121                       '-finline-limit=64',
4122                     ],
4123                     'cflags': [
4124                       # TODO(gordanac) Enable integrated-as.
4125                       '-no-integrated-as',
4126                       '-B<(android_toolchain)',  # Else /usr/bin/as gets picked up.
4127                     ],
4128                     'ldflags': [
4129                       # Let clang find the ld in the NDK.
4130                       '--gcc-toolchain=<(android_toolchain)/..',
4131                     ],
4132                   }],
4133                   ['mips_dsp_rev==1', {
4134                     'cflags': ['-mdsp'],
4135                   }],
4136                   ['mips_dsp_rev==2', {
4137                     'cflags': ['-mdspr2'],
4138                   }],
4139                 ],
4140                 'cflags': [
4141                   '-m<(mips_float_abi)-float'
4142                 ],
4143                 'ldflags': [
4144                   '-Wl,--no-keep-memory'
4145                 ],
4146                 'cflags_cc': [
4147                   '-Wno-uninitialized',
4148                 ],
4149               }],
4150             ],
4151           }],
4152           ['target_arch=="mips64el"', {
4153             'target_conditions': [
4154               ['_toolset=="target"', {
4155                 'conditions': [
4156                   ['mips_arch_variant=="r6"', {
4157                     'cflags': ['-mips64r6', '-Wa,-mips64r6'],
4158                     'ldflags': ['-mips64r6'],
4159                   }],
4160                   ['mips_arch_variant=="r2"', {
4161                     'cflags': ['-mips64r2', '-Wa,-mips64r2'],
4162                     'ldflags': ['-mips64r2'],
4163                   }],
4164                 ],
4165                 'cflags_cc': [
4166                   '-Wno-uninitialized',
4167                 ],
4168               }],
4169             ],
4170           }],
4171           ['linux_fpic==1', {
4172             'cflags': [
4173               '-fPIC',
4174             ],
4175             'ldflags': [
4176               '-fPIC',
4177             ],
4178           }],
4179           ['sysroot!=""', {
4180             'target_conditions': [
4181               ['_toolset=="target"', {
4182                 'cflags': [
4183                   '--sysroot=<(sysroot)',
4184                 ],
4185                 'ldflags': [
4186                   '--sysroot=<(sysroot)',
4187                   '<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))',
4188                 ],
4189               }]]
4190           }],
4191           ['clang==1', {
4192             'cflags': [
4193               # TODO(thakis): Remove, http://crbug.com/263960
4194               '-Wno-reserved-user-defined-literal',
4195             ],
4196             'cflags_cc': [
4197               # gnu++11 instead of c++11 is needed because some code uses
4198               # typeof() (a GNU extension).
4199               # TODO(thakis): Eventually switch this to c++11 instead,
4200               # http://crbug.com/427584
4201               '-std=gnu++11',
4202             ],
4203           }],
4204           ['clang==0 and host_clang==1', {
4205             'target_conditions': [
4206               ['_toolset=="host"', {
4207                 'cflags_cc': [ '-std=gnu++11', ],
4208               }],
4209             ],
4210           }],
4211           ['clang==1 and clang_use_chrome_plugins==1', {
4212             'cflags': [
4213               '<@(clang_chrome_plugins_flags)',
4214             ],
4215           }],
4216           ['clang==1 and clang_load!=""', {
4217             'cflags': [
4218               '-Xclang', '-load', '-Xclang', '<(clang_load)',
4219             ],
4220           }],
4221           ['clang==1 and clang_add_plugin!=""', {
4222             'cflags': [
4223               '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
4224             ],
4225           }],
4226           ['clang==1 and target_arch=="ia32"', {
4227             'cflags': [
4228               # Else building libyuv gives clang's register allocator issues,
4229               # see llvm.org/PR15798 / crbug.com/233709
4230               '-momit-leaf-frame-pointer',
4231               # Align the stack on 16-byte boundaries, http://crbug.com/418554.
4232               '-mstack-alignment=16',
4233               '-mstackrealign',
4234             ],
4235           }],
4236           ['clang==1 and "<(GENERATOR)"=="ninja"', {
4237             'cflags': [
4238               # See http://crbug.com/110262
4239               '-fcolor-diagnostics',
4240             ],
4241           }],
4242           # Common options for AddressSanitizer, LeakSanitizer,
4243           # ThreadSanitizer and MemorySanitizer.
4244           ['asan==1 or lsan==1 or tsan==1 or msan==1 or ubsan==1 or ubsan_vptr==1', {
4245             'target_conditions': [
4246               ['_toolset=="target"', {
4247                 'cflags': [
4248                   '-fno-omit-frame-pointer',
4249                   '-gline-tables-only',
4250                 ],
4251                 'cflags!': [
4252                   '-fomit-frame-pointer',
4253                 ],
4254               }],
4255             ],
4256           }],
4257           ['asan==1 or lsan==1 or tsan==1 or msan==1', {
4258             'target_conditions': [
4259               ['_toolset=="target"', {
4260                 'ldflags!': [
4261                   # Functions interposed by the sanitizers can make ld think
4262                   # that some libraries aren't needed when they actually are,
4263                   # http://crbug.com/234010. As workaround, disable --as-needed.
4264                   '-Wl,--as-needed',
4265                 ],
4266                 'defines': [
4267                   'MEMORY_TOOL_REPLACES_ALLOCATOR',
4268                   'MEMORY_SANITIZER_INITIAL_SIZE',
4269                 ],
4270               }],
4271             ],
4272           }],
4273           ['asan==1', {
4274             'target_conditions': [
4275               ['_toolset=="target"', {
4276                 'cflags': [
4277                   '-fsanitize=address',
4278                   # TODO(earthdok): Re-enable. http://crbug.com/427202
4279                   #'-fsanitize-blacklist=<(asan_blacklist)',
4280                 ],
4281                 'ldflags': [
4282                   '-fsanitize=address',
4283                 ],
4284               }],
4285             ],
4286             'conditions': [
4287               ['OS=="mac"', {
4288                 'cflags': [
4289                   '-mllvm -asan-globals=0',  # http://crbug.com/352073
4290                 ],
4291               }],
4292             ],
4293           }],
4294           ['ubsan==1', {
4295             'target_conditions': [
4296               ['_toolset=="target"', {
4297                 'cflags': [
4298                   '-fsanitize=undefined',
4299                   '-fsanitize-blacklist=<(ubsan_blacklist)',
4300                   # Employ the experimental PBQP register allocator to avoid
4301                   # slow compilation on files with too many basic blocks.
4302                   # See http://crbug.com/426271.
4303                   '-mllvm -regalloc=pbqp',
4304                   # Speculatively use coalescing to slightly improve the code
4305                   # generated by PBQP regallocator. May increase compile time.
4306                   '-mllvm -pbqp-coalescing',
4307                 ],
4308                 'cflags_cc!': [
4309                   '-fno-rtti',
4310                 ],
4311                 'cflags!': [
4312                   '-fno-rtti',
4313                 ],
4314                 'ldflags': [
4315                   '-fsanitize=undefined',
4316                 ],
4317                 'defines': [
4318                   'UNDEFINED_SANITIZER',
4319                 ],
4320               }],
4321             ],
4322           }],
4323           ['ubsan_vptr==1', {
4324             'target_conditions': [
4325               ['_toolset=="target"', {
4326                 'cflags': [
4327                   '-fsanitize=vptr',
4328                   '-fsanitize-blacklist=<(ubsan_blacklist)',
4329                 ],
4330                 'cflags_cc!': [
4331                   '-fno-rtti',
4332                 ],
4333                 'cflags!': [
4334                   '-fno-rtti',
4335                 ],
4336                 'ldflags': [
4337                   '-fsanitize=vptr',
4338                 ],
4339                 'defines': [
4340                   'UNDEFINED_SANITIZER',
4341                 ],
4342               }],
4343             ],
4344           }],
4345           ['asan_coverage!=0 and sanitizer_coverage==0', {
4346             'target_conditions': [
4347               ['_toolset=="target"', {
4348                 'cflags': [
4349                   '-fsanitize-coverage=<(asan_coverage)',
4350                 ],
4351                 'defines': [
4352                   'SANITIZER_COVERAGE',
4353                 ],
4354               }],
4355             ],
4356           }],
4357           ['sanitizer_coverage!=0', {
4358             'target_conditions': [
4359               ['_toolset=="target"', {
4360                 'cflags': [
4361                   '-fsanitize-coverage=<(sanitizer_coverage)',
4362                 ],
4363                 'defines': [
4364                   'SANITIZER_COVERAGE',
4365                 ],
4366               }],
4367             ],
4368           }],
4369           ['asan_field_padding!=0', {
4370             'target_conditions': [
4371               ['_toolset=="target"', {
4372                 'cflags': [
4373                   '-fsanitize-address-field-padding=<(asan_field_padding)',
4374                 ],
4375               }],
4376             ],
4377           }],
4378           ['lsan==1', {
4379             'target_conditions': [
4380               ['_toolset=="target"', {
4381                 'cflags': [
4382                   '-fsanitize=leak',
4383                 ],
4384                 'ldflags': [
4385                   '-fsanitize=leak',
4386                 ],
4387                 'defines': [
4388                   'LEAK_SANITIZER',
4389                   'WTF_USE_LEAK_SANITIZER=1',
4390                 ],
4391               }],
4392             ],
4393           }],
4394           ['tsan==1', {
4395             'target_conditions': [
4396               ['_toolset=="target"', {
4397                 'cflags': [
4398                   '-fsanitize=thread',
4399                   '-fsanitize-blacklist=<(tsan_blacklist)',
4400                 ],
4401                 'ldflags': [
4402                   '-fsanitize=thread',
4403                 ],
4404                 'defines': [
4405                   'THREAD_SANITIZER',
4406                   'DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1',
4407                   'WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1',
4408                 ],
4409               }],
4410             ],
4411           }],
4412           ['msan==1', {
4413             'target_conditions': [
4414               ['_toolset=="target"', {
4415                 'cflags': [
4416                   '-fsanitize=memory',
4417                   '-fsanitize-memory-track-origins=<(msan_track_origins)',
4418                   '-fsanitize-blacklist=<(msan_blacklist)',
4419                 ],
4420                 'ldflags': [
4421                   '-fsanitize=memory',
4422                 ],
4423                 'defines': [
4424                   'MEMORY_SANITIZER',
4425                 ],
4426               }],
4427             ],
4428           }],
4429           ['use_instrumented_libraries==1', {
4430             'dependencies': [
4431               '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:instrumented_libraries',
4432             ],
4433           }],
4434           ['use_prebuilt_instrumented_libraries==1', {
4435             'dependencies': [
4436               '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:prebuilt_instrumented_libraries',
4437             ],
4438           }],
4439           ['use_custom_libcxx==1', {
4440             'dependencies': [
4441               '<(DEPTH)/buildtools/third_party/libc++/libc++.gyp:libcxx_proxy',
4442             ],
4443           }],
4444           ['order_profiling!=0 and (chromeos==1 or OS=="linux" or OS=="android")', {
4445             'target_conditions' : [
4446               # crazy_linker has an upstream gyp file we can't edit, and we
4447               # don't want to instrument it.
4448               ['_toolset=="target" and _target_name!="crazy_linker"', {
4449                 'cflags': [
4450                   '-finstrument-functions',
4451                   # Allow mmx intrinsics to inline, so that the
4452                   #0 compiler can expand the intrinsics.
4453                   '-finstrument-functions-exclude-file-list=mmintrin.h',
4454                 ],
4455               }],
4456               ['_toolset=="target" and OS=="android"', {
4457                 'cflags': [
4458                   # Avoids errors with current NDK:
4459                   # "third_party/android_tools/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.6/include/arm_neon.h:3426:3: error: argument must be a constant"
4460                   '-finstrument-functions-exclude-file-list=arm_neon.h,SaturatedArithmeticARM.h',
4461                 ],
4462               }],
4463             ],
4464           }],
4465           ['linux_dump_symbols==1', {
4466             'cflags': [ '-g' ],
4467             'conditions': [
4468               ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0', {
4469                 'target_conditions': [
4470                   ['_toolset=="target"', {
4471                     'ldflags': [
4472                       # Attempt to use less memory to prevent the linker from
4473                       # running out of address space. Considering installing a
4474                       # 64-bit kernel and switching to a 64-bit linker.
4475                       '-Wl,--no-keep-memory',
4476                     ],
4477                   }],
4478                 ],
4479               }],
4480             ],
4481           }],
4482           ['use_allocator!="tcmalloc"', {
4483             'defines': ['NO_TCMALLOC'],
4484           }],
4485           ['linux_use_gold_flags==1', {
4486             # Newer gccs and clangs support -fuse-ld, use the flag to force gold
4487             # selection.
4488             # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
4489             'ldflags': [ '-fuse-ld=gold', ],
4491             'target_conditions': [
4492               ['_toolset=="target"', {
4493                 'ldflags': [
4494                   # Experimentation found that using four linking threads
4495                   # saved ~20% of link time.
4496                   # https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/281527606915bb36
4497                   # Only apply this to the target linker, since the host
4498                   # linker might not be gold, but isn't used much anyway.
4499                   # TODO(raymes): Disable threading because gold is frequently
4500                   # crashing on the bots: crbug.com/161942.
4501                   # '-Wl,--threads',
4502                   # '-Wl,--thread-count=4',
4503                 ],
4504                 'conditions': [
4505                   # TODO(thestig): Enable this for disabled cases.
4506                   [ 'buildtype!="Official" and chromeos==0 and release_valgrind_build==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', {
4507                     'ldflags': [
4508                       '-Wl,--detect-odr-violations',
4509                     ],
4510                   }],
4511                 ],
4512               }],
4513             ],
4514             'conditions': [
4515               ['release_valgrind_build==0 and order_profiling==0', {
4516                 'target_conditions': [
4517                   ['_toolset=="target"', {
4518                     'ldflags': [
4519                       '-Wl,--icf=<(gold_icf_level)',
4520                     ],
4521                   }],
4522                 ],
4523               }],
4524             ],
4525           }],
4526           ['linux_use_bundled_binutils==1', {
4527             'cflags': [
4528               '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4529             ],
4530           }],
4531           ['linux_use_bundled_gold==1', {
4532             # Put our binutils, which contains gold in the search path. We pass
4533             # the path to gold to the compiler. gyp leaves unspecified what the
4534             # cwd is when running the compiler, so the normal gyp path-munging
4535             # fails us. This hack gets the right path.
4536             'ldflags': [
4537               '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4538             ],
4539           }],
4540           # Some binutils 2.23 releases may or may not have new dtags enabled,
4541           # but they are all compatible with --disable-new-dtags,
4542           # because the new dynamic tags are not created by default.
4543           ['binutils_version>=223', {
4544             # Newer binutils don't set DT_RPATH unless you disable "new" dtags
4545             # and the new DT_RUNPATH doesn't work without --no-as-needed flag.
4546             # FIXME(mithro): Figure out the --as-needed/--no-as-needed flags
4547             # inside this file to allow usage of --no-as-needed and removal of
4548             # this flag.
4549             'ldflags': [
4550               '-Wl,--disable-new-dtags',
4551             ],
4552           }],
4553           ['gcc_version>=47 and clang==0', {
4554             'target_conditions': [
4555               ['_toolset=="target"', {
4556                 'cflags_cc': [
4557                   '-std=gnu++11',
4558                   # See comment for -Wno-c++11-narrowing.
4559                   '-Wno-narrowing',
4560                   # TODO(thakis): Remove, http://crbug.com/263960
4561                   '-Wno-literal-suffix',
4562                 ],
4563               }],
4564             ],
4565           }],
4566           ['host_gcc_version>=47 and clang==0 and host_clang==0', {
4567             'target_conditions': [
4568               ['_toolset=="host"', {
4569                 'cflags_cc': [
4570                   '-std=gnu++11',
4571                   # See comment for -Wno-c++11-narrowing.
4572                   '-Wno-narrowing',
4573                   # TODO(thakis): Remove, http://crbug.com/263960
4574                   '-Wno-literal-suffix',
4575                 ],
4576               }],
4577             ],
4578           }],
4579         ],
4580       },
4581     }],
4582     # FreeBSD-specific options; note that most FreeBSD options are set above,
4583     # with Linux.
4584     ['OS=="freebsd"', {
4585       'target_defaults': {
4586         'ldflags': [
4587           '-Wl,--no-keep-memory',
4588         ],
4589       },
4590     }],
4591     # Android-specific options; note that most are set above with Linux.
4592     ['OS=="android"', {
4593       'variables': {
4594         # This is a unique identifier for a given build. It's used for
4595         # identifying various build artifacts corresponding to a particular
4596         # build of chrome (e.g. where to find archived symbols).
4597         'chrome_build_id%': '',
4598         'conditions': [
4599           # Figure this out early since it needs symbols from libgcc.a, so it
4600           # has to be before that in the set of libraries.
4601           ['component=="shared_library"', {
4602               'android_stlport_library': 'stlport_shared',
4603           }, {
4604               'android_stlport_library': 'stlport_static',
4605           }],
4606         ],
4608         # Placing this variable here prevents from forking libvpx, used
4609         # by remoting.  Remoting is off, so it needn't built,
4610         # so forking it's deps seems like overkill.
4611         # But this variable need defined to properly run gyp.
4612         # A proper solution is to have an OS==android conditional
4613         # in third_party/libvpx/libvpx.gyp to define it.
4614         'libvpx_path': 'lib/linux/arm',
4615       },
4616       'target_defaults': {
4617         'variables': {
4618           'release_extra_cflags%': '',
4619           'conditions': [
4620             # If we're using the components build, append "cr" to all shared
4621             # libraries to avoid naming collisions with android system library
4622             # versions with the same name (e.g. skia, icu).
4623             ['component=="shared_library"', {
4624               'android_product_extension': 'cr.so',
4625             }, {
4626               'android_product_extension': 'so',
4627             } ],
4628           ],
4629         },
4630         'target_conditions': [
4631           ['_type=="shared_library"', {
4632             'product_extension': '<(android_product_extension)',
4633           }],
4635           # Settings for building device targets using Android's toolchain.
4636           # These are based on the setup.mk file from the Android NDK.
4637           #
4638           # The NDK Android executable link step looks as follows:
4639           #  $LDFLAGS
4640           #  $(TARGET_CRTBEGIN_DYNAMIC_O)  <-- crtbegin.o
4641           #  $(PRIVATE_OBJECTS)            <-- The .o that we built
4642           #  $(PRIVATE_STATIC_LIBRARIES)   <-- The .a that we built
4643           #  $(TARGET_LIBGCC)              <-- libgcc.a
4644           #  $(PRIVATE_SHARED_LIBRARIES)   <-- The .so that we built
4645           #  $(PRIVATE_LDLIBS)             <-- System .so
4646           #  $(TARGET_CRTEND_O)            <-- crtend.o
4647           #
4648           # For now the above are approximated for executables by adding
4649           # crtbegin.o to the end of the ldflags and 'crtend.o' to the end
4650           # of 'libraries'.
4651           #
4652           # The NDK Android shared library link step looks as follows:
4653           #  $LDFLAGS
4654           #  $(PRIVATE_OBJECTS)            <-- The .o that we built
4655           #  -l,--whole-archive
4656           #  $(PRIVATE_WHOLE_STATIC_LIBRARIES)
4657           #  -l,--no-whole-archive
4658           #  $(PRIVATE_STATIC_LIBRARIES)   <-- The .a that we built
4659           #  $(TARGET_LIBGCC)              <-- libgcc.a
4660           #  $(PRIVATE_SHARED_LIBRARIES)   <-- The .so that we built
4661           #  $(PRIVATE_LDLIBS)             <-- System .so
4662           #
4663           # For now, assume that whole static libraries are not needed.
4664           #
4665           # For both executables and shared libraries, add the proper
4666           # libgcc.a to the start of libraries which puts it in the
4667           # proper spot after .o and .a files get linked in.
4668           #
4669           # TODO: The proper thing to do longer-tem would be proper gyp
4670           # support for a custom link command line.
4671           ['_toolset=="target"', {
4672             'cflags!': [
4673               '-pthread',  # Not supported by Android toolchain.
4674             ],
4675             'cflags': [
4676               '-ffunction-sections',
4677               '-funwind-tables',
4678               '-g',
4679               '-fstack-protector',
4680               '-fno-short-enums',
4681               '-finline-limit=64',
4682               '-Wa,--noexecstack',
4683               '<@(release_extra_cflags)',
4684               '--sysroot=<(android_ndk_sysroot)',
4685               # NOTE: The stlport header include paths below are specified in
4686               # cflags rather than include_dirs because they need to come
4687               # after include_dirs.
4688               # The include ordering here is important; change with caution.
4689               '-isystem<(android_stlport_include)',
4690             ],
4691             'defines': [
4692               'ANDROID',
4693               '__GNU_SOURCE=1',  # Necessary for clone()
4694               'USE_STLPORT=1',
4695               '_STLP_USE_PTR_SPECIALIZATIONS=1',
4696               'CHROME_BUILD_ID="<(chrome_build_id)"',
4697               # The NDK has these things, but doesn't define the constants
4698               # to say that it does. Define them here instead.
4699               'HAVE_SYS_UIO_H',
4700             ],
4701             'ldflags!': [
4702               '-pthread',  # Not supported by Android toolchain.
4703             ],
4704             'ldflags': [
4705               '-Wl,--no-undefined',
4706               '--sysroot=<(android_ndk_sysroot)',
4707               '-nostdlib',
4708               '-L<(android_stlport_libs_dir)',
4709               # Don't allow visible symbols from libgcc or stlport to be
4710               # re-exported.
4711               '-Wl,--exclude-libs=libgcc.a',
4712               '-Wl,--exclude-libs=libstlport_static.a',
4713               # Don't allow visible symbols from libraries that contain
4714               # assembly code with symbols that aren't hidden properly.
4715               # http://crbug.com/448386
4716               '-Wl,--exclude-libs=libcommon_audio.a',
4717               '-Wl,--exclude-libs=libcommon_audio_neon.a',
4718               '-Wl,--exclude-libs=libcommon_audio_sse2.a',
4719               '-Wl,--exclude-libs=libiSACFix.a',
4720               '-Wl,--exclude-libs=libisac_neon.a',
4721               '-Wl,--exclude-libs=libopus.a',
4722               '-Wl,--exclude-libs=libvpx.a',
4723             ],
4724             'libraries': [
4725               '-l<(android_stlport_library)',
4726               # Manually link the libgcc.a that the cross compiler uses.
4727               '<!(<(android_toolchain)/*-gcc -print-libgcc-file-name)',
4728               '-lc',
4729               '-ldl',
4730               '-lm',
4731             ],
4732             'conditions': [
4733               ['component=="static_library"', {
4734                 'target_conditions': [
4735                   ['use_native_jni_exports==0', {
4736                     # Use a linker version script to strip JNI exports from
4737                     # binaries which have not specifically asked to use them.
4738                     'ldflags': [
4739                       '-Wl,--version-script=<!(cd <(DEPTH) && pwd -P)/build/android/android_no_jni_exports.lst',
4740                     ],
4741                   }],
4742                 ],
4743               }],
4744               ['clang==1', {
4745                 'cflags': [
4746                   # Work around incompatibilities between bionic and clang
4747                   # headers.
4748                   '-D__compiler_offsetof=__builtin_offsetof',
4749                   '-Dnan=__builtin_nan',
4750                 ],
4751                 'conditions': [
4752                   ['target_arch=="arm"', {
4753                     'cflags': [
4754                       '-target arm-linux-androideabi',
4755                     ],
4756                     'ldflags': [
4757                       '-target arm-linux-androideabi',
4758                     ],
4759                   }],
4760                   ['target_arch=="ia32"', {
4761                     'cflags': [
4762                       '-target x86-linux-androideabi',
4763                     ],
4764                     'ldflags': [
4765                       '-target x86-linux-androideabi',
4766                     ],
4767                   }],
4768                   # Place holder for x64 support, not tested.
4769                   # TODO: Enable clang support for Android x64. http://crbug.com/346626
4770                   ['target_arch=="x64"', {
4771                     'cflags': [
4772                       '-target x86_64-linux-androideabi',
4773                     ],
4774                     'ldflags': [
4775                       '-target x86_64-linux-androideabi',
4776                     ],
4777                   }],
4778                 ],
4779               }],
4780               ['asan==1', {
4781                 'cflags': [
4782                   # Android build relies on -Wl,--gc-sections removing
4783                   # unreachable code. ASan instrumentation for globals inhibits
4784                   # this and results in a library with unresolvable relocations.
4785                   # TODO(eugenis): find a way to reenable this.
4786                   '-mllvm -asan-globals=0',
4787                 ],
4788               }],
4789               ['target_arch == "arm" and order_profiling==0', {
4790                 'ldflags': [
4791                   # Enable identical code folding to reduce size.
4792                   '-Wl,--icf=<(gold_icf_level)',
4793                 ],
4794               }],
4795               ['target_arch=="ia32"', {
4796                 # The x86 toolchain currently has problems with stack-protector.
4797                 'cflags!': [
4798                   '-fstack-protector',
4799                 ],
4800                 'cflags': [
4801                   '-fno-stack-protector',
4802                 ],
4803               }],
4804             ],
4805             'target_conditions': [
4806               ['_type=="executable"', {
4807                 # Force android tools to export the "main" symbol so they can be
4808                 # loaded on ICS using the run_pie wrapper. See crbug.com/373219.
4809                 # TODO(primiano): remove -fvisibility and -rdynamic flags below
4810                 # when ICS support will be dropped.
4811                 'cflags': [
4812                   '-fPIE',
4813                   '-fvisibility=default',
4814                 ],
4815                 'ldflags': [
4816                   '-Bdynamic',
4817                   '-Wl,--gc-sections',
4818                   '-Wl,-z,nocopyreloc',
4819                   '-pie',
4820                   '-rdynamic',
4821                   # crtbegin_dynamic.o should be the last item in ldflags.
4822                   '<(android_ndk_lib)/crtbegin_dynamic.o',
4823                 ],
4824                 'libraries': [
4825                   # crtend_android.o needs to be the last item in libraries.
4826                   # Do not add any libraries after this!
4827                   '<(android_ndk_lib)/crtend_android.o',
4828                 ],
4829               }],
4830               ['_type=="shared_library" or _type=="loadable_module"', {
4831                 'ldflags': [
4832                   '-Wl,-shared,-Bsymbolic',
4833                   # crtbegin_so.o should be the last item in ldflags.
4834                   '<(android_ndk_lib)/crtbegin_so.o',
4835                 ],
4836                 'libraries': [
4837                   # crtend_so.o needs to be the last item in libraries.
4838                   # Do not add any libraries after this!
4839                   '<(android_ndk_lib)/crtend_so.o',
4840                 ],
4841               }],
4842             ],
4843           }],
4844           # Settings for building host targets using the system toolchain.
4845           ['_toolset=="host"', {
4846             'cflags!': [
4847               # Due to issues in Clang build system, using ASan on 32-bit
4848               # binaries on x86_64 host is problematic.
4849               # TODO(eugenis): re-enable.
4850               '-fsanitize=address',
4851             ],
4852             'ldflags!': [
4853               '-fsanitize=address',
4854               '-Wl,-z,noexecstack',
4855               '-Wl,--gc-sections',
4856               '-Wl,-O1',
4857               '-Wl,--as-needed',
4858               '-Wl,--warn-shared-textrel',
4859               '-Wl,--fatal-warnings',
4860             ],
4861           }],
4862           # Settings for building host targets on mac.
4863           ['_toolset=="host" and host_os=="mac"', {
4864             'ldflags!': [
4865               '-Wl,-z,now',
4866               '-Wl,-z,relro',
4867             ],
4868           }],
4869         ],
4870       },
4871     }],
4872     ['OS=="solaris"', {
4873       'cflags!': ['-fvisibility=hidden'],
4874       'cflags_cc!': ['-fvisibility-inlines-hidden'],
4875     }],
4876     ['OS=="mac" or OS=="ios"', {
4877       'target_defaults': {
4878         'mac_bundle': 0,
4879         'xcode_settings': {
4880           'ALWAYS_SEARCH_USER_PATHS': 'NO',
4881           # Don't link in libarclite_macosx.a, see http://crbug.com/156530.
4882           'CLANG_LINK_OBJC_RUNTIME': 'NO',          # -fno-objc-link-runtime
4883           'COPY_PHASE_STRIP': 'NO',
4884           'GCC_C_LANGUAGE_STANDARD': 'c99',         # -std=c99
4885           'GCC_CW_ASM_SYNTAX': 'NO',                # No -fasm-blocks
4886           'GCC_ENABLE_CPP_EXCEPTIONS': 'NO',        # -fno-exceptions
4887           'GCC_ENABLE_CPP_RTTI': 'NO',              # -fno-rtti
4888           'GCC_ENABLE_PASCAL_STRINGS': 'NO',        # No -mpascal-strings
4889           # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden
4890           'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
4891           'GCC_OBJC_CALL_CXX_CDTORS': 'YES',        # -fobjc-call-cxx-cdtors
4892           'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES',      # -fvisibility=hidden
4893           'GCC_THREADSAFE_STATICS': 'NO',           # -fno-threadsafe-statics
4894           'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES',    # -Werror
4895           'GCC_VERSION': '4.2',
4896           'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',  # -Wnewline-eof
4897           'USE_HEADERMAP': 'NO',
4898           'WARNING_CFLAGS': [
4899             '-Wall',
4900             '-Wendif-labels',
4901             '-Wextra',
4902             # Don't warn about unused function parameters.
4903             '-Wno-unused-parameter',
4904             # Don't warn about the "struct foo f = {0};" initialization
4905             # pattern.
4906             '-Wno-missing-field-initializers',
4907           ],
4908           'conditions': [
4909             ['chromium_mac_pch', {'GCC_PRECOMPILE_PREFIX_HEADER': 'YES'},
4910                                  {'GCC_PRECOMPILE_PREFIX_HEADER': 'NO'}
4911             ],
4912             # Note that the prebuilt Clang binaries should not be used for iOS
4913             # development except for ASan builds.
4914             ['clang==1', {
4915               'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',  # -std=c++11
4916               # Warn if automatic synthesis is triggered with
4917               # the -Wobjc-missing-property-synthesis flag.
4918               'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
4919               'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
4920               'WARNING_CFLAGS': [
4921                 # This warns on selectors from Cocoa headers (-length, -set).
4922                 # cfe-dev is currently discussing the merits of this warning.
4923                 # TODO(thakis): Reevaluate what to do with this, based one
4924                 # cfe-dev discussion.
4925                 '-Wno-selector-type-mismatch',
4926               ],
4927               'conditions': [
4928                 ['clang_xcode==0', {
4929                   'CC': '$(SOURCE_ROOT)/<(clang_dir)/clang',
4930                   'LDPLUSPLUS': '$(SOURCE_ROOT)/<(clang_dir)/clang++',
4931                 }],
4932               ],
4933             }],
4934             ['clang==1 and clang_xcode==0 and clang_use_chrome_plugins==1', {
4935               'OTHER_CFLAGS': [
4936                 '<@(clang_chrome_plugins_flags)',
4937               ],
4938             }],
4939             ['clang==1 and clang_xcode==0 and clang_load!=""', {
4940               'OTHER_CFLAGS': [
4941                 '-Xclang', '-load', '-Xclang', '<(clang_load)',
4942               ],
4943             }],
4944             ['clang==1 and clang_xcode==0 and clang_add_plugin!=""', {
4945               'OTHER_CFLAGS': [
4946                 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
4947               ],
4948             }],
4949             ['clang==1 and "<(GENERATOR)"=="ninja"', {
4950               'OTHER_CFLAGS': [
4951                 # See http://crbug.com/110262
4952                 '-fcolor-diagnostics',
4953               ],
4954             }],
4955             ['OS=="ios" and target_subarch!="arm32" and \
4956               "<(GENERATOR)"=="xcode"', {
4957               'OTHER_CFLAGS': [
4958                 # TODO(ios): when building Chrome for iOS on 64-bit platform
4959                 # with Xcode, the -Wshorted-64-to-32 warning is automatically
4960                 # enabled. This cause failures when compiling protobuf code,
4961                 # so disable the warning. http://crbug.com/359107
4962                 '-Wno-shorten-64-to-32',
4963               ],
4964             }],
4965           ],
4966         },
4967         'conditions': [
4968           ['clang==1', {
4969             'variables': {
4970               'clang_dir': '../third_party/llvm-build/Release+Asserts/bin',
4971             },
4972           }],
4973           ['asan==1', {
4974             'xcode_settings': {
4975               'OTHER_CFLAGS': [
4976                 '-fsanitize=address',
4977                 '-mllvm -asan-globals=0',  # http://crbug.com/352073
4978                 '-gline-tables-only',
4979               ],
4980             },
4981           }],
4982           ['asan_coverage!=0 and sanitizer_coverage==0', {
4983             'target_conditions': [
4984               ['_toolset=="target"', {
4985                 'cflags': [
4986                   '-fsanitize-coverage=<(asan_coverage)',
4987                 ],
4988                 'defines': [
4989                   'SANITIZER_COVERAGE',
4990                 ],
4991               }],
4992             ],
4993           }],
4994           ['sanitizer_coverage!=0', {
4995             'target_conditions': [
4996               ['_toolset=="target"', {
4997                 'cflags': [
4998                   '-fsanitize-coverage=<(sanitizer_coverage)',
4999                 ],
5000                 'defines': [
5001                   'SANITIZER_COVERAGE',
5002                 ],
5003               }],
5004             ],
5005           }],
5006         ],
5007         'target_conditions': [
5008           ['_type!="static_library"', {
5009             'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
5010             'conditions': [
5011               ['asan==1', {
5012                 'xcode_settings': {
5013                   'OTHER_LDFLAGS': [
5014                     '-fsanitize=address',
5015                   ],
5016                 },
5017               }],
5018               ['mac_write_linker_maps==1', {
5019                 'xcode_settings': {
5020                   'OTHER_LDFLAGS': [
5021                     '-Wl,-map,>(_target_name).map',
5022                   ],
5023                 },
5024               }],
5025             ],
5026           }],
5027           ['_mac_bundle', {
5028             'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
5029             'target_conditions': [
5030               ['_type=="executable"', {
5031                 'conditions': [
5032                   ['asan==1', {
5033                     'postbuilds': [
5034                       {
5035                         'variables': {
5036                           # Define copy_asan_dylib_path in a variable ending in
5037                           # _path so that gyp understands it's a path and
5038                           # performs proper relativization during dict merging.
5039                           'copy_asan_dylib_path':
5040                             'mac/copy_asan_runtime_dylib.sh',
5041                         },
5042                         'postbuild_name': 'Copy ASan runtime dylib',
5043                         'action': [
5044                           '<(copy_asan_dylib_path)',
5045                         ],
5046                       },
5047                     ],
5048                   }],
5049                 ],
5050               }],
5051             ],
5052           }],
5053         ],  # target_conditions
5054       },  # target_defaults
5055     }],  # OS=="mac" or OS=="ios"
5056     ['OS=="mac"', {
5057       'target_defaults': {
5058         'defines': [
5059           # Prevent Mac OS X AssertMacros.h from defining macros that collide
5060           # with common names, like 'check', 'require', and 'verify'.
5061           # (Included by system header. Also exists on iOS but not included.)
5062           # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h
5063           '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0',
5064         ],
5065         'variables': {
5066           # These should end with %, but there seems to be a bug with % in
5067           # variables that are intended to be set to different values in
5068           # different targets, like these.
5069           'mac_pie': 1,        # Most executables can be position-independent.
5070           # Strip debugging symbols from the target.
5071           'mac_strip': '<(mac_strip_release)',
5072           'conditions': [
5073             ['asan==1', {
5074               'conditions': [
5075                 ['mac_want_real_dsym=="default"', {
5076                   'mac_real_dsym': 1,
5077                 }, {
5078                   'mac_real_dsym': '<(mac_want_real_dsym)'
5079                 }],
5080               ],
5081             }, {
5082               'conditions': [
5083                 ['mac_want_real_dsym=="default"', {
5084                   'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
5085                 }, {
5086                   'mac_real_dsym': '<(mac_want_real_dsym)'
5087                 }],
5088               ],
5089             }],
5090           ],
5091         },
5092         'xcode_settings': {
5093           'GCC_DYNAMIC_NO_PIC': 'NO',               # No -mdynamic-no-pic
5094                                                     # (Equivalent to -fPIC)
5095           # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
5096           'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5097           # Keep pch files below xcodebuild/.
5098           'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders',
5099           'OTHER_CFLAGS': [
5100             # Someday this can be replaced by an 'GCC_STRICT_ALIASING': 'NO'
5101             # xcode_setting, but not until all downstream projects' mac bots are
5102             # using xcode >= 4.6, because that's when the default value of the
5103             # flag in the compiler switched.  Pre-4.6, the value 'NO' for that
5104             # setting is a no-op as far as xcode is concerned, but the compiler
5105             # behaves differently based on whether -fno-strict-aliasing is
5106             # specified or not.
5107             '-fno-strict-aliasing',  # See http://crbug.com/32204.
5108           ],
5109         },
5110         'target_conditions': [
5111           ['_type=="executable"', {
5112             'postbuilds': [
5113               {
5114                 # Arranges for data (heap) pages to be protected against
5115                 # code execution when running on Mac OS X 10.7 ("Lion"), and
5116                 # ensures that the position-independent executable (PIE) bit
5117                 # is set for ASLR when running on Mac OS X 10.5 ("Leopard").
5118                 'variables': {
5119                   # Define change_mach_o_flags in a variable ending in _path
5120                   # so that GYP understands it's a path and performs proper
5121                   # relativization during dict merging.
5122                   'change_mach_o_flags_path':
5123                       'mac/change_mach_o_flags_from_xcode.sh',
5124                   'change_mach_o_flags_options%': [
5125                   ],
5126                   'target_conditions': [
5127                     ['mac_pie==0 or release_valgrind_build==1', {
5128                       # Don't enable PIE if it's unwanted. It's unwanted if
5129                       # the target specifies mac_pie=0 or if building for
5130                       # Valgrind, because Valgrind doesn't understand slide.
5131                       # See the similar mac_pie/release_valgrind_build check
5132                       # below.
5133                       'change_mach_o_flags_options': [
5134                         '--no-pie',
5135                       ],
5136                     }],
5137                   ],
5138                 },
5139                 'postbuild_name': 'Change Mach-O Flags',
5140                 'action': [
5141                   '<(change_mach_o_flags_path)',
5142                   '>@(change_mach_o_flags_options)',
5143                 ],
5144               },
5145             ],
5146             'target_conditions': [
5147               ['mac_pie==1 and release_valgrind_build==0', {
5148                 # Turn on position-independence (ASLR) for executables. When
5149                 # PIE is on for the Chrome executables, the framework will
5150                 # also be subject to ASLR.
5151                 # Don't do this when building for Valgrind, because Valgrind
5152                 # doesn't understand slide. TODO: Make Valgrind on Mac OS X
5153                 # understand slide, and get rid of the Valgrind check.
5154                 'xcode_settings': {
5155                   'OTHER_LDFLAGS': [
5156                     '-Wl,-pie',  # Position-independent executable (MH_PIE)
5157                   ],
5158                 },
5159               }],
5160             ],
5161           }],
5162           ['(_type=="executable" or _type=="shared_library" or \
5163              _type=="loadable_module") and mac_strip!=0', {
5164             'target_conditions': [
5165               ['mac_real_dsym == 1', {
5166                 # To get a real .dSYM bundle produced by dsymutil, set the
5167                 # debug information format to dwarf-with-dsym.  Since
5168                 # strip_from_xcode will not be used, set Xcode to do the
5169                 # stripping as well.
5170                 'configurations': {
5171                   'Release_Base': {
5172                     'xcode_settings': {
5173                       'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
5174                       'DEPLOYMENT_POSTPROCESSING': 'YES',
5175                       'STRIP_INSTALLED_PRODUCT': 'YES',
5176                       'conditions': [
5177                         # Only strip non-ASan builds.
5178                         ['asan==0', {
5179                           'target_conditions': [
5180                             ['_type=="shared_library" or _type=="loadable_module"', {
5181                               # The Xcode default is to strip debugging symbols
5182                               # only (-S).  Local symbols should be stripped as
5183                               # well, which will be handled by -x.  Xcode will
5184                               # continue to insert -S when stripping even when
5185                               # additional flags are added with STRIPFLAGS.
5186                               'STRIPFLAGS': '-x',
5187                             }],  # _type=="shared_library" or _type=="loadable_module"
5188                           ],  # target_conditions
5189                         }, {  # asan != 0
5190                           'STRIPFLAGS': '-S',
5191                         }],
5192                       ],
5193                     },  # xcode_settings
5194                   },  # configuration "Release"
5195                 },  # configurations
5196               }, {  # mac_real_dsym != 1
5197                 # To get a fast fake .dSYM bundle, use a post-build step to
5198                 # produce the .dSYM and strip the executable.  strip_from_xcode
5199                 # only operates in the Release configuration.
5200                 'postbuilds': [
5201                   {
5202                     'variables': {
5203                       # Define strip_from_xcode in a variable ending in _path
5204                       # so that gyp understands it's a path and performs proper
5205                       # relativization during dict merging.
5206                       'strip_from_xcode_path': 'mac/strip_from_xcode',
5207                     },
5208                     'postbuild_name': 'Strip If Needed',
5209                     'action': ['<(strip_from_xcode_path)'],
5210                   },
5211                 ],  # postbuilds
5212               }],  # mac_real_dsym
5213             ],  # target_conditions
5214           }],  # (_type=="executable" or _type=="shared_library" or
5215                #  _type=="loadable_module") and mac_strip!=0
5216         ],  # target_conditions
5217       },  # target_defaults
5218     }],  # OS=="mac"
5219     ['OS=="ios"', {
5220       'includes': [
5221         'ios/coverage.gypi',
5222       ],
5223       'target_defaults': {
5224         'xcode_settings' : {
5225           'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
5227           'conditions': [
5228             # Older Xcodes do not support -Wno-deprecated-register, so pass an
5229             # additional flag to suppress the "unknown compiler option" error.
5230             # Restrict this flag to builds that are either compiling with Xcode
5231             # or compiling with Xcode's Clang.  This will allow Ninja builds to
5232             # continue failing on unknown compiler options.
5233             # TODO(rohitrao): This flag is temporary and should be removed as
5234             # soon as the iOS bots are updated to use Xcode 5.1.
5235             ['clang_xcode==1', {
5236               'WARNING_CFLAGS': [
5237                 '-Wno-unknown-warning-option',
5238               ],
5239             }],
5241             # Limit the valid architectures depending on "target_subarch".
5242             # This need to include the "arm" architectures but also the "x86"
5243             # ones (they are used when building for the simulator).
5244             ['target_subarch=="arm32"', {
5245               'VALID_ARCHS': ['armv7', 'i386'],
5246             }],
5247             ['target_subarch=="arm64"', {
5248               'VALID_ARCHS': ['arm64', 'x86_64'],
5249             }],
5250             ['target_subarch=="both"', {
5251               'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
5252             }],
5253             ['use_system_libcxx==1', {
5254               'target_conditions': [
5255                 # Only use libc++ when building target for iOS not when building
5256                 # tools for the host (OS X) as Mac targets OS X SDK 10.6 which
5257                 # does not support libc++.
5258                 ['_toolset=="target"', {
5259                   'CLANG_CXX_LIBRARY': 'libc++',  # -stdlib=libc++
5260                 }]
5261               ],
5262             }, {
5263               # The default for deployment target of 7.0+ is libc++, so force
5264               # the old behavior unless libc++ is enabled.
5265               'CLANG_CXX_LIBRARY': 'libstdc++',  # -stdlib=libstdc++
5266             }],
5267           ],
5268         },
5269         'target_conditions': [
5270           ['_toolset=="host"', {
5271             'xcode_settings': {
5272               'SDKROOT': 'macosx<(mac_sdk)',  # -isysroot
5273               'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5274               'VALID_ARCHS': [
5275                 'x86_64',
5276               ],
5277               'ARCHS': [
5278                 'x86_64',
5279               ],
5280             },
5281           }],
5282           ['_toolset=="target"', {
5283             'xcode_settings': {
5284               # This section should be for overriding host settings. But,
5285               # since we can't negate the iphone deployment target above, we
5286               # instead set it here for target only.
5287               'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)',
5288               'ARCHS': ['$(ARCHS_STANDARD_INCLUDING_64_BIT)'],
5289             },
5290           }],
5291           ['_type=="executable"', {
5292             'configurations': {
5293               'Release_Base': {
5294                 'xcode_settings': {
5295                   'DEPLOYMENT_POSTPROCESSING': 'YES',
5296                   'STRIP_INSTALLED_PRODUCT': 'YES',
5297                 },
5298               },
5299               'Debug_Base': {
5300                 'xcode_settings': {
5301                   # Remove dSYM to reduce build time.
5302                   'DEBUG_INFORMATION_FORMAT': 'dwarf',
5303                 },
5304               },
5305             },
5306             'xcode_settings': {
5307               'conditions': [
5308                 ['chromium_ios_signing', {
5309                   # iOS SDK wants everything for device signed.
5310                   'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
5311                 }, {
5312                   'CODE_SIGNING_REQUIRED': 'NO',
5313                   'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
5314                 }],
5315               ],
5316             },
5317           }],
5318         ],  # target_conditions
5319       },  # target_defaults
5320     }],  # OS=="ios"
5321     ['OS=="win"', {
5322       'target_defaults': {
5323         'defines': [
5324           '_WIN32_WINNT=0x0603',
5325           'WINVER=0x0603',
5326           'WIN32',
5327           '_WINDOWS',
5328           'NOMINMAX',
5329           'PSAPI_VERSION=1',
5330           '_CRT_RAND_S',
5331           'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
5332           'WIN32_LEAN_AND_MEAN',
5333           '_ATL_NO_OPENGL',
5334           '_SECURE_ATL',
5335           # _HAS_EXCEPTIONS must match ExceptionHandling in msvs_settings.
5336           '_HAS_EXCEPTIONS=0',
5337           # Silence some warnings; we can't switch the the 'recommended'
5338           # versions as they're not available on old OSs.
5339           '_WINSOCK_DEPRECATED_NO_WARNINGS',
5340         ],
5341         'conditions': [
5342           ['buildtype=="Official"', {
5343               # In official builds, targets can self-select an optimization
5344               # level by defining a variable named 'optimize', and setting it
5345               # to one of
5346               # - "size", optimizes for minimal code size - the default.
5347               # - "speed", optimizes for speed over code size.
5348               # - "max", whole program optimization and link-time code
5349               #   generation. This is very expensive and should be used
5350               #   sparingly.
5351               'variables': {
5352                 'optimize%': 'size',
5353               },
5354               'msvs_settings': {
5355                 'VCLinkerTool': {
5356                   # Set /LTCG for the official builds.
5357                   'LinkTimeCodeGeneration': '1',
5358                   'AdditionalOptions': [
5359                     # Set the number of LTCG code-gen threads to eight.
5360                     # The default is four. This gives a 5-10% link speedup.
5361                     '/cgthreads:8',
5362                   ],
5363                 },
5364               },
5365               'target_conditions': [
5366                 ['optimize=="size"', {
5367                     'msvs_settings': {
5368                       'VCCLCompilerTool': {
5369                         # 1, optimizeMinSpace, Minimize Size (/O1)
5370                         'Optimization': '1',
5371                         # 2, favorSize - Favor small code (/Os)
5372                         'FavorSizeOrSpeed': '2',
5373                       },
5374                     },
5375                   },
5376                 ],
5377                 ['optimize=="speed"', {
5378                     'msvs_settings': {
5379                       'VCCLCompilerTool': {
5380                         # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5381                         'Optimization': '2',
5382                         # 1, favorSpeed - Favor fast code (/Ot)
5383                         'FavorSizeOrSpeed': '1',
5384                       },
5385                     },
5386                   },
5387                 ],
5388                 ['optimize=="max"', {
5389                     # Disable Warning 4702 ("Unreachable code") for the WPO/PGO
5390                     # builds. Probably anything that this would catch that
5391                     # wouldn't be caught in a normal build isn't going to
5392                     # actually be a bug, so the incremental value of C4702 for
5393                     # PGO builds is likely very small.
5394                     'msvs_disabled_warnings': [
5395                       4702
5396                     ],
5397                     'msvs_settings': {
5398                       'VCCLCompilerTool': {
5399                         # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5400                         'Optimization': '2',
5401                         # 1, favorSpeed - Favor fast code (/Ot)
5402                         'FavorSizeOrSpeed': '1',
5403                         # This implies link time code generation.
5404                         'WholeProgramOptimization': 'true',
5405                       },
5406                     },
5407                   },
5408                 ],
5409               ],
5410             },
5411           ],
5412           ['msvs_xtree_patched!=1', {
5413             # If xtree hasn't been patched, then we disable C4702. Otherwise,
5414             # it's enabled. This will generally only be true for system-level
5415             # installed Express users.
5416             'msvs_disabled_warnings': [
5417               4702,
5418             ],
5419           }],
5420         ],
5421         'msvs_system_include_dirs': [
5422           '<(windows_sdk_path)/Include/shared',
5423           '<(windows_sdk_path)/Include/um',
5424           '<(windows_sdk_path)/Include/winrt',
5425           '$(VSInstallDir)/VC/atlmfc/include',
5426         ],
5427         'msvs_cygwin_shell': 0,
5428         'msvs_disabled_warnings': [
5429           # C4091: 'typedef ': ignored on left of 'X' when no variable is
5430           #                    declared.
5431           # This happens in a number of Windows headers. Dumb.
5432           4091,
5434           # C4127: conditional expression is constant
5435           # This warning can in theory catch dead code and other problems, but
5436           # triggers in far too many desirable cases where the conditional
5437           # expression is either set by macros or corresponds some legitimate
5438           # compile-time constant expression (due to constant template args,
5439           # conditionals comparing the sizes of different types, etc.).  Some of
5440           # these can be worked around, but it's not worth it.
5441           4127,
5443           # C4351: new behavior: elements of array 'array' will be default
5444           #        initialized
5445           # This is a silly "warning" that basically just alerts you that the
5446           # compiler is going to actually follow the language spec like it's
5447           # supposed to, instead of not following it like old buggy versions
5448           # did.  There's absolutely no reason to turn this on.
5449           4351,
5451           # C4355: 'this': used in base member initializer list
5452           # It's commonly useful to pass |this| to objects in a class'
5453           # initializer list.  While this warning can catch real bugs, most of
5454           # the time the constructors in question don't attempt to call methods
5455           # on the passed-in pointer (until later), and annotating every legit
5456           # usage of this is simply more hassle than the warning is worth.
5457           4355,
5459           # C4503: 'identifier': decorated name length exceeded, name was
5460           #        truncated
5461           # This only means that some long error messages might have truncated
5462           # identifiers in the presence of lots of templates.  It has no effect
5463           # on program correctness and there's no real reason to waste time
5464           # trying to prevent it.
5465           4503,
5467           # C4611: interaction between 'function' and C++ object destruction is
5468           #        non-portable
5469           # This warning is unavoidable when using e.g. setjmp/longjmp.  MSDN
5470           # suggests using exceptions instead of setjmp/longjmp for C++, but
5471           # Chromium code compiles without exception support.  We therefore have
5472           # to use setjmp/longjmp for e.g. JPEG decode error handling, which
5473           # means we have to turn off this warning (and be careful about how
5474           # object destruction happens in such cases).
5475           4611,
5477           # TODO(maruel): These warnings are level 4. They will be slowly
5478           # removed as code is fixed.
5479           4100, # Unreferenced formal parameter
5480           4121, # Alignment of a member was sensitive to packing
5481           4244, # Conversion from 'type1' to 'type2', possible loss of data
5482           4481, # Nonstandard extension used: override specifier 'keyword'
5483           4505, # Unreferenced local function has been removed
5484           4510, # Default constructor could not be generated
5485           4512, # Assignment operator could not be generated
5486           4610, # Object can never be instantiated
5487           4996, # 'X': was declared deprecated (for GetVersionEx).
5488         ],
5489         'msvs_settings': {
5490           'VCCLCompilerTool': {
5491             'AdditionalOptions': ['/MP'],
5492             'MinimalRebuild': 'false',
5493             'BufferSecurityCheck': 'true',
5494             'EnableFunctionLevelLinking': 'true',
5495             'RuntimeTypeInfo': 'false',
5496             'WarningLevel': '4',
5497             'WarnAsError': 'true',
5498             'DebugInformationFormat': '3',
5499             # ExceptionHandling must match _HAS_EXCEPTIONS above.
5500             'ExceptionHandling': '0',
5501           },
5502           'VCLibrarianTool': {
5503             'AdditionalOptions': ['/ignore:4221'],
5504             'AdditionalLibraryDirectories': [
5505               '<(windows_sdk_path)/Lib/win8/um/x86',
5506             ],
5507           },
5508           'VCLinkerTool': {
5509             'AdditionalDependencies': [
5510               'wininet.lib',
5511               'dnsapi.lib',
5512               'version.lib',
5513               'msimg32.lib',
5514               'ws2_32.lib',
5515               'usp10.lib',
5516               'psapi.lib',
5517               'dbghelp.lib',
5518               'winmm.lib',
5519               'shlwapi.lib',
5520             ],
5521             'AdditionalLibraryDirectories': [
5522               '<(windows_sdk_path)/Lib/win8/um/x86',
5523             ],
5524             'GenerateDebugInformation': 'true',
5525             'MapFileName': '$(OutDir)\\$(TargetName).map',
5526             'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
5527             'FixedBaseAddress': '1',
5528             # SubSystem values:
5529             #   0 == not set
5530             #   1 == /SUBSYSTEM:CONSOLE
5531             #   2 == /SUBSYSTEM:WINDOWS
5532             # Most of the executables we'll ever create are tests
5533             # and utilities with console output.
5534             'SubSystem': '1',
5535           },
5536           'VCMIDLTool': {
5537             'GenerateStublessProxies': 'true',
5538             'TypeLibraryName': '$(InputName).tlb',
5539             'OutputDirectory': '$(IntDir)',
5540             'HeaderFileName': '$(InputName).h',
5541             'DLLDataFileName': '$(InputName).dlldata.c',
5542             'InterfaceIdentifierFileName': '$(InputName)_i.c',
5543             'ProxyFileName': '$(InputName)_p.c',
5544           },
5545           'VCResourceCompilerTool': {
5546             'Culture' : '1033',
5547             'AdditionalIncludeDirectories': [
5548               '<(DEPTH)',
5549               '<(SHARED_INTERMEDIATE_DIR)',
5550             ],
5551           },
5552           'target_conditions': [
5553             ['_type=="executable"', {
5554               'VCManifestTool': {
5555                 'EmbedManifest': 'true',
5556               },
5557             }],
5558             ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', {
5559               'VCManifestTool': {
5560                 'AdditionalManifestFiles': [
5561                   '>(win_exe_compatibility_manifest)',
5562                 ],
5563               },
5564             }],
5565           ],
5566           'conditions': [
5567             # Building with Clang on Windows is a work in progress and very
5568             # experimental. See crbug.com/82385.
5569             ['clang==1', {
5570               'VCCLCompilerTool': {
5571                 'AdditionalOptions': [
5572                   '-fmsc-version=1800',
5574                   # Many files use intrinsics without including this header.
5575                   # TODO(hans): Fix those files, or move this to sub-GYPs.
5576                   '/FIIntrin.h',
5578                   # TODO(hans): Make this list shorter eventually.
5579                   '-Qunused-arguments',
5580                   '-Wno-c++11-compat-deprecated-writable-strings',
5581                   '-Wno-deprecated-declarations',
5582                   '-Wno-empty-body',
5583                   '-Wno-enum-conversion',
5584                   '-Wno-extra-tokens',
5585                   '-Wno-ignored-attributes',
5586                   '-Wno-incompatible-pointer-types',
5587                   '-Wno-int-to-void-pointer-cast',
5588                   '-Wno-invalid-noreturn',
5589                   '-Wno-logical-op-parentheses',
5590                   '-Wno-microsoft',
5591                   '-Wno-missing-braces',
5592                   '-Wno-missing-declarations',
5593                   '-Wno-msvc-include',
5594                   '-Wno-null-dereference',
5595                   '-Wno-overloaded-virtual',
5596                   '-Wno-parentheses',
5597                   '-Wno-pointer-sign',
5598                   '-Wno-reorder',
5599                   '-Wno-return-type-c-linkage',
5600                   '-Wno-self-assign',
5601                   '-Wno-sometimes-uninitialized',
5602                   '-Wno-switch',
5603                   '-Wno-tautological-compare',
5604                   '-Wno-unknown-pragmas',
5605                   '-Wno-unsequenced',
5606                   '-Wno-unused-function',
5607                   '-Wno-unused-private-field',
5608                   '-Wno-unused-value',
5609                   '-Wno-unused-variable',
5610                   '-Wno-unused-local-typedef',  # http://crbug.com/411648
5611                   '-Wno-inconsistent-missing-override', #http://crbug.com/428099
5612                 ],
5613               },
5614             }],
5615             ['clang==1 and target_arch=="ia32"', {
5616               'VCCLCompilerTool': {
5617                 'WarnAsError': 'false',
5618                 'AdditionalOptions': [
5619                   '/fallback',
5620                 ],
5621               },
5622             }],
5623           ],
5624         },
5625       },
5626     }],
5627     ['disable_nacl==1', {
5628       'target_defaults': {
5629         'defines': [
5630           'DISABLE_NACL',
5631         ],
5632       },
5633     }],
5634     ['OS=="win" and msvs_use_common_linker_extras', {
5635       'target_defaults': {
5636         'msvs_settings': {
5637           'VCLinkerTool': {
5638             'DelayLoadDLLs': [
5639               'dbghelp.dll',
5640               'dwmapi.dll',
5641               'shell32.dll',
5642               'uxtheme.dll',
5643             ],
5644           },
5645         },
5646         'configurations': {
5647           'x86_Base': {
5648             'msvs_settings': {
5649               'VCLinkerTool': {
5650                 'AdditionalOptions': [
5651                   '/safeseh',
5652                   '/dynamicbase',
5653                   '/ignore:4199',
5654                   '/ignore:4221',
5655                   '/nxcompat',
5656                 ],
5657               },
5658               'conditions': [
5659                 ['syzyasan==0', {
5660                   'VCLinkerTool': {
5661                     'AdditionalOptions': ['/largeaddressaware'],
5662                   },
5663                 }],
5664                 ['asan==1', {
5665                   # TODO(asan/win): Move this down into the general
5666                   # win-target_defaults section once the 64-bit asan runtime
5667                   # exists.  See crbug.com/345874.
5668                   'VCCLCompilerTool': {
5669                     'AdditionalOptions': [
5670                       '-fsanitize=address',
5671                       '-fsanitize-blacklist=<(PRODUCT_DIR)/../../tools/memory/asan/blacklist_win.txt',
5672                     ],
5673                     'AdditionalIncludeDirectories': [
5674                       # MSVC needs to be able to find the sanitizer headers when
5675                       # invoked via /fallback. This is critical for using macros
5676                       # like ASAN_UNPOISON_MEMORY_REGION in files where we fall
5677                       # back.
5678                       '<(DEPTH)/<(make_clang_dir)/lib/clang/3.7.0/include_sanitizer',
5679                     ],
5680                   },
5681                   'VCLinkerTool': {
5682                     'AdditionalLibraryDirectories': [
5683                       # TODO(hans): If make_clang_dir is absolute, this breaks.
5684                       '<(DEPTH)/<(make_clang_dir)/lib/clang/3.7.0/lib/windows',
5685                     ],
5686                   },
5687                   'target_conditions': [
5688                     ['component=="shared_library"', {
5689                       'VCLinkerTool': {
5690                         'AdditionalDependencies': [
5691                            'clang_rt.asan_dynamic-i386.lib',
5692                            'clang_rt.asan_dynamic_runtime_thunk-i386.lib',
5693                         ],
5694                       },
5695                     }],
5696                     ['_type=="executable" and component=="static_library"', {
5697                       'VCLinkerTool': {
5698                         'AdditionalDependencies': [
5699                            'clang_rt.asan-i386.lib',
5700                         ],
5701                       },
5702                     }],
5703                     ['(_type=="shared_library" or _type=="loadable_module") and component=="static_library"', {
5704                       'VCLinkerTool': {
5705                         'AdditionalDependencies': [
5706                            'clang_rt.asan_dll_thunk-i386.lib',
5707                         ],
5708                       },
5709                     }],
5710                   ],
5711                 }],
5712               ],
5713             },
5714           },
5715           'x64_Base': {
5716             'msvs_settings': {
5717               'VCLinkerTool': {
5718                 'AdditionalOptions': [
5719                   # safeseh is not compatible with x64
5720                   '/dynamicbase',
5721                   '/ignore:4199',
5722                   '/ignore:4221',
5723                   '/nxcompat',
5724                 ],
5725               },
5726             },
5727           },
5728         },
5729       },
5730     }],
5731     ['enable_new_npdevice_api==1', {
5732       'target_defaults': {
5733         'defines': [
5734           'ENABLE_NEW_NPDEVICE_API',
5735         ],
5736       },
5737     }],
5738     # Don't warn about the "typedef 'foo' locally defined but not used"
5739     # for gcc 4.8 and higher.
5740     # TODO: remove this flag once all builds work. See crbug.com/227506
5741     ['gcc_version>=48 and clang==0', {
5742       'target_defaults': {
5743         'cflags': [
5744           '-Wno-unused-local-typedefs',
5745         ],
5746       },
5747     }],
5748     ['gcc_version>=48 and clang==0 and host_clang==1', {
5749       'target_defaults': {
5750         'target_conditions': [
5751           ['_toolset=="host"', { 'cflags!': [ '-Wno-unused-local-typedefs' ]}],
5752         ],
5753       },
5754     }],
5755     ['clang==1 and ((OS!="mac" and OS!="ios") or clang_xcode==0) '
5756         'and OS!="win"', {
5757       'make_global_settings': [
5758         ['CC', '<(make_clang_dir)/bin/clang'],
5759         ['CXX', '<(make_clang_dir)/bin/clang++'],
5760         ['CC.host', '$(CC)'],
5761         ['CXX.host', '$(CXX)'],
5762       ],
5763     }],
5764     ['clang==1 and OS=="win"', {
5765       'make_global_settings': [
5766         # On Windows, gyp's ninja generator only looks at CC.
5767         ['CC', '<(make_clang_dir)/bin/clang-cl'],
5768       ],
5769     }],
5770     ['use_lld==1 and OS=="win"', {
5771       'make_global_settings': [
5772         # Limited to Windows because lld-link is the driver that is compatible
5773         # to link.exe.
5774         ['LD', '<(make_clang_dir)/bin/lld-link'],
5775       ],
5776     }],
5777     ['OS=="android" and clang==0', {
5778       # Hardcode the compiler names in the Makefile so that
5779       # it won't depend on the environment at make time.
5780       'make_global_settings': [
5781         ['CC', '<!(/bin/echo -n <(android_toolchain)/*-gcc)'],
5782         ['CXX', '<!(/bin/echo -n <(android_toolchain)/*-g++)'],
5783         ['CC.host', '<(host_cc)'],
5784         ['CXX.host', '<(host_cxx)'],
5785       ],
5786     }],
5787     ['OS=="linux" and target_arch=="mipsel"', {
5788       'make_global_settings': [
5789         ['CC', '<(sysroot)/../bin/mipsel-linux-gnu-gcc'],
5790         ['CXX', '<(sysroot)/../bin/mipsel-linux-gnu-g++'],
5791         ['CC.host', '<(host_cc)'],
5792         ['CXX.host', '<(host_cxx)'],
5793       ],
5794     }],
5795     ['OS=="linux" and target_arch=="arm" and host_arch!="arm" and chromeos==0 and clang==0', {
5796       # Set default ARM cross compiling on linux.  These can be overridden
5797       # using CC/CXX/etc environment variables.
5798       'make_global_settings': [
5799         ['CC', '<!(which arm-linux-gnueabihf-gcc)'],
5800         ['CXX', '<!(which arm-linux-gnueabihf-g++)'],
5801         ['CC.host', '<(host_cc)'],
5802         ['CXX.host', '<(host_cxx)'],
5803       ],
5804     }],
5806     # TODO(yyanagisawa): supports GENERATOR==make
5807     #  make generator doesn't support CC_wrapper without CC
5808     #  in make_global_settings yet.
5809     ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
5810       'make_global_settings': [
5811        ['CC_wrapper', '<(gomadir)/gomacc'],
5812        ['CXX_wrapper', '<(gomadir)/gomacc'],
5813        ['CC.host_wrapper', '<(gomadir)/gomacc'],
5814        ['CXX.host_wrapper', '<(gomadir)/gomacc'],
5815       ],
5816     }],
5817     ['use_lto==1', {
5818       'target_defaults': {
5819         'target_conditions': [
5820           ['_toolset=="target"', {
5821             'cflags': [
5822               '-flto',
5823             ],
5824             'xcode_settings': {
5825               'LLVM_LTO': 'YES',
5826             },
5827           }],
5828           # Work-around for http://openradar.appspot.com/20356002
5829           ['_toolset=="target" and _type!="static_library"', {
5830             'xcode_settings': {
5831               'OTHER_LDFLAGS': [
5832                 '-Wl,-all_load',
5833               ],
5834             },
5835           }],
5836         ],
5837       },
5838     }],
5839     ['use_lto==1 and clang==0', {
5840       'target_defaults': {
5841         'target_conditions': [
5842           ['_toolset=="target"', {
5843             'cflags': [
5844               '-ffat-lto-objects',
5845             ],
5846           }],
5847         ],
5848       },
5849     }],
5850     ['use_lto==1 and clang==1', {
5851       'target_defaults': {
5852         'target_conditions': [
5853           ['_toolset=="target"', {
5854             'arflags': [
5855               '--plugin', '../../<(make_clang_dir)/lib/LLVMgold.so',
5856             ],
5857           }],
5858         ],
5859       },
5860     }],
5861     # Apply a lower LTO optimization level in non-official builds.
5862     ['use_lto==1 and clang==1 and buildtype!="Official"', {
5863       'target_defaults': {
5864         'target_conditions': [
5865           ['_toolset=="target"', {
5866             'ldflags': [
5867               '-Wl,--plugin-opt,O1',
5868             ],
5869           }],
5870           ['_toolset=="target" and _type!="static_library"', {
5871             'xcode_settings':  {
5872               'OTHER_LDFLAGS': [
5873                 '-Wl,-mllvm,-O1',
5874               ],
5875             },
5876           }],
5877         ],
5878       },
5879     }],
5880     ['use_lto==1 and clang==1 and (target_arch=="ia32" or target_arch=="x64")', {
5881       'target_defaults': {
5882         'target_conditions': [
5883           # Required for third_party/zlib/crc_folding.c and various other code
5884           # that uses SSE. TODO(pcc): Remove this once we properly support
5885           # subtarget specific code generation in LLVM.
5886           ['_toolset=="target"', {
5887             'ldflags': [
5888               '-Wl,-plugin-opt,mcpu=corei7-avx',
5889             ],
5890           }],
5891           ['_toolset=="target" and _type!="static_library"', {
5892             'xcode_settings':  {
5893               'OTHER_LDFLAGS': [
5894                 '-Wl,-mcpu,corei7-avx',
5895               ],
5896             },
5897           }],
5898         ],
5899       },
5900     }],
5901     ['use_lto==1 and clang==1 and target_arch=="arm"', {
5902       'target_defaults': {
5903         'target_conditions': [
5904           ['_toolset=="target"', {
5905             # Without this flag, LTO produces a .text section that is larger
5906             # than the maximum call displacement, preventing the linker from
5907             # relocating calls (http://llvm.org/PR22999).
5908             'ldflags': [
5909               '-Wl,-plugin-opt,-function-sections',
5910             ],
5911           }],
5912         ],
5913       },
5914     }],
5915     ['(use_lto==1 or use_lto_o2==1) and clang==0', {
5916       'target_defaults': {
5917         'target_conditions': [
5918           ['_toolset=="target"', {
5919             'ldflags': [
5920               '-flto=32',
5921             ],
5922           }],
5923         ],
5924       },
5925     }],
5926     ['(use_lto==1 or use_lto_o2==1) and clang==1', {
5927       'target_defaults': {
5928         'target_conditions': [
5929           ['_toolset=="target"', {
5930             'ldflags': [
5931               '-flto',
5932             ],
5933           }],
5934         ],
5935       },
5936     }],
5937     ['cfi_vptr==1', {
5938       'target_defaults': {
5939         'target_conditions': [
5940           ['_toolset=="target"', {
5941             'cflags': [
5942               '-fsanitize=cfi-vptr',
5943             ],
5944             'ldflags': [
5945               '-fsanitize=cfi-vptr',
5946             ],
5947             'xcode_settings': {
5948               'OTHER_CFLAGS': [
5949                 '-fsanitize=cfi-vptr',
5950               ],
5951             },
5952           }],
5953           ['_toolset=="target" and _type!="static_library"', {
5954             'xcode_settings':  {
5955               'OTHER_LDFLAGS': [
5956                 '-fsanitize=cfi-vptr',
5957               ],
5958             },
5959           }],
5960         ],
5961       },
5962     }],
5963     ['cfi_derived_cast==1', {
5964       'target_defaults': {
5965         'target_conditions': [
5966           ['_toolset=="target"', {
5967             'cflags': [
5968               '-fsanitize=cfi-derived-cast',
5969             ],
5970             'ldflags': [
5971               '-fsanitize=cfi-derived-cast',
5972             ],
5973             'xcode_settings': {
5974               'OTHER_CFLAGS': [
5975                 '-fsanitize=cfi-derived-cast',
5976               ],
5977             },
5978           }],
5979           ['_toolset=="target" and _type!="static_library"', {
5980             'xcode_settings':  {
5981               'OTHER_LDFLAGS': [
5982                 '-fsanitize=cfi-derived-cast',
5983               ],
5984             },
5985           }],
5986         ],
5987       },
5988     }],
5989     ['cfi_unrelated_cast==1', {
5990       'target_defaults': {
5991         'target_conditions': [
5992           ['_toolset=="target"', {
5993             'cflags': [
5994               '-fsanitize=cfi-unrelated-cast',
5995             ],
5996             'ldflags': [
5997               '-fsanitize=cfi-unrelated-cast',
5998             ],
5999             'xcode_settings': {
6000               'OTHER_CFLAGS': [
6001                 '-fsanitize=cfi-unrelated-cast',
6002               ],
6003             },
6004           }],
6005           ['_toolset=="target" and _type!="static_library"', {
6006             'xcode_settings':  {
6007               'OTHER_LDFLAGS': [
6008                 '-fsanitize=cfi-unrelated-cast',
6009               ],
6010             },
6011           }],
6012         ],
6013       },
6014     }],
6015     ['cfi_vptr==1 or cfi_derived_cast==1 or cfi_unrelated_cast==1', {
6016       'target_defaults': {
6017         'target_conditions': [
6018           ['_toolset=="target"', {
6019             'cflags': [
6020               '-fsanitize-blacklist=<(cfi_blacklist)',
6021             ],
6022             'xcode_settings': {
6023               'OTHER_CFLAGS': [
6024                 '-fsanitize-blacklist=<(cfi_blacklist)',
6025               ],
6026             },
6027           }],
6028         ],
6029       },
6030     }],
6031   ],
6032   'xcode_settings': {
6033     # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
6034     # This block adds *project-wide* configuration settings to each project
6035     # file.  It's almost always wrong to put things here.  Specify your
6036     # custom xcode_settings in target_defaults to add them to targets instead.
6038     'conditions': [
6039       # In an Xcode Project Info window, the "Base SDK for All Configurations"
6040       # setting sets the SDK on a project-wide basis. In order to get the
6041       # configured SDK to show properly in the Xcode UI, SDKROOT must be set
6042       # here at the project level.
6043       ['OS=="mac"', {
6044         'conditions': [
6045           ['mac_sdk_path==""', {
6046             'SDKROOT': 'macosx<(mac_sdk)',  # -isysroot
6047           }, {
6048             'SDKROOT': '<(mac_sdk_path)',  # -isysroot
6049           }],
6050         ],
6051       }],
6052       ['OS=="ios"', {
6053         'conditions': [
6054           ['ios_sdk_path==""', {
6055             'conditions': [
6056               # TODO(justincohen): Ninja only supports simulator for now.
6057               ['"<(GENERATOR)"=="xcode"', {
6058                 'SDKROOT': 'iphoneos<(ios_sdk)',  # -isysroot
6059               }, {
6060                 'SDKROOT': 'iphonesimulator<(ios_sdk)',  # -isysroot
6061               }],
6062             ],
6063           }, {
6064             'SDKROOT': '<(ios_sdk_path)',  # -isysroot
6065           }],
6066         ],
6067       }],
6068       ['OS=="ios"', {
6069         # Target both iPhone and iPad.
6070         'TARGETED_DEVICE_FAMILY': '1,2',
6071       }, {  # OS!="ios"
6072         'conditions': [
6073           ['target_arch=="x64"', {
6074             'ARCHS': [
6075               'x86_64'
6076             ],
6077           }],
6078           ['target_arch=="ia32"', {
6079             'ARCHS': [
6080               'i386'
6081             ],
6082           }],
6083         ],
6084       }],
6085     ],
6087     # The Xcode generator will look for an xcode_settings section at the root
6088     # of each dict and use it to apply settings on a file-wide basis.  Most
6089     # settings should not be here, they should be in target-specific
6090     # xcode_settings sections, or better yet, should use non-Xcode-specific
6091     # settings in target dicts.  SYMROOT is a special case, because many other
6092     # Xcode variables depend on it, including variables such as
6093     # PROJECT_DERIVED_FILE_DIR.  When a source group corresponding to something
6094     # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6095     # files to appear (when present) in the UI as actual files and not red
6096     # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6097     # and therefore SYMROOT, needs to be set at the project level.
6098     'SYMROOT': '<(DEPTH)/xcodebuild',
6099   },