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