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.
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.
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.
21 # Whether we're building a ChromeOS build.
24 # Whether we're building the cast (chromecast) shell
27 # Whether or not we are using the Aura windowing framework.
30 # Whether or not we are building the Ash shell.
33 # Whether or not we are using CRAS, the ChromeOS Audio Server.
36 # Use a raw surface abstraction.
39 # Configure the build for small devices. See crbug.com/318413
43 # Compute the architecture that we're building on.
44 ['OS=="win" or OS=="ios"', {
47 'host_arch%': '<!pymod_do_main(detect_host_arch)',
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
64 # Use the PCI lib to collect GPU information.
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.
73 # Use OpenSSL for representing certificates. When targeting Android,
74 # the platform certificate library is used for certificate
75 # verification. On other targets, this flag also enables OpenSSL for
76 # certificate verification, but this configuration is unsupported.
77 'use_openssl_certs%': 0,
79 # Disable viewport meta tag by default.
80 'enable_viewport%': 0,
82 # Enable HiDPI support.
85 # Enable top chrome material design.
86 'enable_topchrome_md%' : 0,
88 # Override buildtype to select the desired build flavor.
89 # Dev - everyday build for development/testing
90 # Official - release build (generally implies additional processing)
91 # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp
92 # conversion is done), some of the things which are now controlled by
93 # 'branding', such as symbol generation, will need to be refactored
94 # based on 'buildtype' (i.e. we don't care about saving symbols for
95 # non-Official # builds).
98 # Override branding to select the desired branding flavor.
99 'branding%': 'Chromium',
102 # ChromeOS and Windows use Aura and Ash.
103 ['chromeos==1 or OS=="win" or OS=="linux"', {
108 ['chromecast==1 and OS!="android"', {
118 # Whether we're a traditional desktop unix.
119 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and chromeos==0', {
125 # Embedded implies ozone.
131 'target_arch%': 'arm',
133 # Default architecture we're building for is the architecture we're
134 # building on, and possibly sub-architecture (for iOS builds).
135 'target_arch%': '<(host_arch)',
139 # Copy conditionally-set variables out one scope.
140 'chromeos%': '<(chromeos)',
141 'chromecast%': '<(chromecast)',
142 'desktop_linux%': '<(desktop_linux)',
143 'use_aura%': '<(use_aura)',
144 'use_ash%': '<(use_ash)',
145 'use_cras%': '<(use_cras)',
146 'use_ozone%': '<(use_ozone)',
147 'embedded%': '<(embedded)',
148 'use_libpci%': '<(use_libpci)',
149 'use_openssl%': '<(use_openssl)',
150 'use_openssl_certs%': '<(use_openssl_certs)',
151 'enable_viewport%': '<(enable_viewport)',
152 'enable_hidpi%': '<(enable_hidpi)',
153 'enable_topchrome_md%': '<(enable_topchrome_md)',
154 'buildtype%': '<(buildtype)',
155 'branding%': '<(branding)',
156 'branding_path_component%': '<(branding)',
157 'host_arch%': '<(host_arch)',
158 'target_arch%': '<(target_arch)',
160 'target_subarch%': '',
162 # The channel to build on Android: stable, beta, dev, canary, or
163 # default. "default" should be used on non-official builds.
164 'android_channel%': 'default',
166 # Set ARM architecture version.
169 # Use aurax11 for clipboard implementation. This is true on linux_aura.
170 'use_clipboard_aurax11%': 0,
174 # If no gomadir is set, it uses the default gomadir.
178 # The system root for cross-compiles. Default: none.
183 # The system libdir used for this ABI.
184 'system_libdir%': 'lib',
186 # Default MIPS arch variant. This is set in the conditions block
187 # below for MIPS targets.
188 'mips_arch_variant%': '',
190 # MIPS DSP ASE revision. Possible values are:
197 ['branding == "Chrome"', {
198 'branding_path_component%': 'google_chrome',
201 ['branding == "Chromium"', {
202 'branding_path_component%': 'chromium',
210 # Set default value of toolkit_views based on OS.
211 ['OS=="mac" or OS=="win" or chromeos==1 or use_aura==1', {
217 # Embedded builds use aura without ash or views.
224 # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux.
225 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', {
229 # Enable Top Chrome Material Design on Chrome OS, and Windows.
230 ['chromeos==1 or OS=="win"', {
231 'enable_topchrome_md%': 1,
234 # Enable the OpenSSL backend on Mac OS and Windows.
235 ['OS=="mac" or OS=="win"', {
239 # Enable App Launcher everywhere but mobile.
240 ['OS!="ios" and OS!="android"', {
241 'enable_app_list%': 1,
243 'enable_app_list%': 0,
246 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="android")', {
247 'use_default_render_theme%': 1,
249 'use_default_render_theme%': 0,
253 'use_ozone_evdev%': 1,
255 'use_ozone_evdev%': 0,
258 # Set default gomadir.
260 'gomadir': 'c:\\goma\\goma-win',
262 'gomadir': '<!(/bin/echo -n ${HOME}/goma)',
265 # Set the default "target_subarch" on iOS. Valid values are "arm32",
266 # "arm64" and "both" (meaning a fat binary).
268 'target_subarch%': 'arm64',
271 # Set arch variants for MIPS platforms.
272 ['target_arch=="mips64el"', {
275 'mips_arch_variant%': 'r6',
277 'mips_arch_variant%': 'r2',
282 ['target_arch=="mipsel"', {
283 'mips_arch_variant%': 'r1',
288 # Copy conditionally-set variables out one scope.
289 'chromeos%': '<(chromeos)',
290 'chromecast%': '<(chromecast)',
291 'host_arch%': '<(host_arch)',
292 'target_arch%': '<(target_arch)',
293 'target_subarch%': '<(target_subarch)',
294 'mips_arch_variant%': '<(mips_arch_variant)',
295 'mips_dsp_rev%': '<(mips_dsp_rev)',
296 'toolkit_views%': '<(toolkit_views)',
297 'desktop_linux%': '<(desktop_linux)',
298 'use_aura%': '<(use_aura)',
299 'use_ash%': '<(use_ash)',
300 'use_cras%': '<(use_cras)',
301 'use_libpci%': '<(use_libpci)',
302 'use_ozone%': '<(use_ozone)',
303 'use_ozone_evdev%': '<(use_ozone_evdev)',
304 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
305 'embedded%': '<(embedded)',
306 'use_openssl%': '<(use_openssl)',
307 'use_openssl_certs%': '<(use_openssl_certs)',
308 'enable_viewport%': '<(enable_viewport)',
309 'enable_hidpi%': '<(enable_hidpi)',
310 'enable_topchrome_md%': '<(enable_topchrome_md)',
311 'android_channel%': '<(android_channel)',
312 'use_goma%': '<(use_goma)',
313 'gomadir%': '<(gomadir)',
314 'enable_app_list%': '<(enable_app_list)',
315 'use_default_render_theme%': '<(use_default_render_theme)',
316 'buildtype%': '<(buildtype)',
317 'branding%': '<(branding)',
318 'branding_path_component%': '<(branding_path_component)',
319 'arm_version%': '<(arm_version)',
320 'sysroot%': '<(sysroot)',
321 'chroot_cmd%': '<(chroot_cmd)',
322 'system_libdir%': '<(system_libdir)',
324 # Set to 1 to enable fast builds. Set to 2 for even faster builds
325 # (it disables debug info for fastest compilation - only for use
326 # on compile-only bots).
329 # Set to 1 to not store any build metadata, e.g. ifdef out all __DATE__
330 # and __TIME__. Set to 0 to reenable the use of these macros in the code
331 # base. See http://crbug.com/314403.
332 'dont_embed_build_metadata%': 1,
334 # Set to 1 to force Visual C++ to use legacy debug information format /Z7.
335 # This is useful for parallel compilation tools which can't support /Zi.
336 # Only used on Windows.
339 # Set to 1 to enable dcheck in Release build.
340 'dcheck_always_on%': 0,
342 # Set to 1 to make a build that disables unshipped tracing events.
343 # Note: this setting is ignored if buildtype=="Official".
344 'tracing_like_official_build%': 0,
346 # Disable image loader component extension by default.
347 'image_loader_extension%': 0,
349 # Set NEON compilation flags.
352 # Detect NEON support at run-time.
353 'arm_neon_optional%': 0,
355 # Use libjpeg-turbo as the JPEG codec used by Chromium.
356 'use_libjpeg_turbo%': 1,
358 # Use system libjpeg. Note that the system's libjepg will be used even if
359 # use_libjpeg_turbo is set.
360 'use_system_libjpeg%': 0,
362 # By default, component is set to static_library and it can be overriden
363 # by the GYP command line or by ~/.gyp/include.gypi.
364 'component%': 'static_library',
366 # /analyze is off by default on Windows because it is very slow and noisy.
367 # Enable with GYP_DEFINES=win_analyze=1
370 # Set to select the Title Case versions of strings in GRD files.
371 'use_titlecase_in_grd%': 0,
373 # Use translations provided by volunteers at launchpad.net. This
374 # currently only works on Linux.
375 'use_third_party_translations%': 0,
377 # Remoting compilation is enabled by default. Set to 0 to disable.
380 # Configuration policy is enabled by default. Set to 0 to disable.
381 'configuration_policy%': 1,
383 # Variable safe_browsing is used to control the build time configuration
384 # for safe browsing feature. Safe browsing can be compiled in 4 different
385 # levels: 0 disables it, 1 enables it fully, and 2 enables only UI and
386 # reporting features for use with Data Saver on Mobile, and 3 enables
387 # extended mobile protection via an external API. When 3 is fully
388 # deployed, it will replace 2.
391 # Web speech is enabled by default. Set to 0 to disable.
392 'enable_web_speech%': 1,
394 # Notifications are compiled in by default. Set to 0 to disable.
395 'notifications%' : 1,
397 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for
398 # regular builds and 1 for ASan builds.
399 'mac_want_real_dsym%': 'default',
401 # If this is set, the clang plugins used on the buildbot will be used.
402 # Run tools/clang/scripts/update.sh to make sure they are compiled.
403 # This causes 'clang_chrome_plugins_flags' to be set.
404 # Has no effect if 'clang' is not set as well.
405 'clang_use_chrome_plugins%': 1,
407 # Enable building with ASAN (Clang's -fsanitize=address option).
408 # -fsanitize=address only works with clang, but asan=1 implies clang=1
409 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addresssanitizer
411 'asan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/asan/blacklist.txt',
412 # Enable coverage gathering instrumentation in sanitizer tools. This flag
413 # also controls coverage granularity (1 for function-level coverage, 2
414 # for block-level coverage).
415 'sanitizer_coverage%': 0,
416 # Deprecated, only works if |sanitizer_coverage| isn't set.
417 # TODO(glider): remove this flag.
419 # Enable intra-object-overflow detection in ASan (experimental).
420 'asan_field_padding%': 0,
422 # Enable Chromium overrides of the default configurations for various
423 # dynamic tools (like ASan).
424 'use_sanitizer_options%': 0,
426 # Enable building with SyzyAsan.
427 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo
430 # Enable crash reporting via Kasko.
433 # Enable building with LSan (Clang's -fsanitize=leak option).
434 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1
435 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaksanitizer
438 # Enable building with TSan (Clang's -fsanitize=thread option).
439 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1
440 # See http://clang.llvm.org/docs/ThreadSanitizer.html
442 'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/tsan_v2/ignores.txt',
444 # Enable building with MSan (Clang's -fsanitize=memory option).
445 # MemorySanitizer only works with clang, but msan=1 implies clang=1
446 # See http://clang.llvm.org/docs/MemorySanitizer.html
448 'msan_blacklist%': '<(PRODUCT_DIR)/../../tools/msan/blacklist.txt',
449 # Track where uninitialized memory originates from. From fastest to
450 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2
451 # - track the chain of stores leading from allocation site to use site.
452 'msan_track_origins%': 2,
454 # Enable building with UBSan (Clang's -fsanitize=undefined option).
455 # -fsanitize=undefined only works with clang, but ubsan=1 implies clang=1
456 # See http://clang.llvm.org/docs/UsersManual.html
458 'ubsan_blacklist%': '<(PRODUCT_DIR)/../../tools/ubsan/blacklist.txt',
459 'ubsan_vptr_blacklist%': '<(PRODUCT_DIR)/../../tools/ubsan/vptr_blacklist.txt',
461 # Enable building with UBsan's vptr (Clang's -fsanitize=vptr option).
462 # -fsanitize=vptr only works with clang, but ubsan_vptr=1 implies clang=1
465 # Use dynamic libraries instrumented by one of the sanitizers
466 # instead of the standard system libraries. Set this flag to build the
467 # libraries from source.
468 'use_instrumented_libraries%': 0,
470 # Use dynamic libraries instrumented by one of the sanitizers
471 # instead of the standard system libraries. Set this flag to download
472 # prebuilt binaries from GCS.
473 'use_prebuilt_instrumented_libraries%': 0,
475 # Use libc++ (third_party/libc++ and third_party/libc++abi) instead of
476 # stdlibc++ as standard library. This is intended to use for instrumented
478 'use_custom_libcxx%': 0,
480 # Use system libc++ instead of the default C++ library, usually libstdc++.
481 # This is intended for iOS builds only.
482 'use_system_libcxx%': 0,
484 # Use a modified version of Clang to intercept allocated types and sizes
485 # for allocated objects. clang_type_profiler=1 implies clang=1.
486 # See http://dev.chromium.org/developers/deep-memory-profiler/cpp-object-type-identifier
487 # TODO(dmikurube): Support mac. See http://crbug.com/123758#c11
488 'clang_type_profiler%': 0,
490 # Set to true to instrument the code with function call logger.
491 # See src/third_party/cygprofile/cyg-profile.cc for details.
492 'order_profiling%': 0,
494 # Use the provided profiled order file to link Chrome image with it.
495 # This makes Chrome faster by better using CPU cache when executing code.
496 # This is known as PGO (profile guided optimization).
497 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-effort
498 'order_text_section%' : "",
500 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
501 # libraries on linux x86-64 and arm, plus ASLR.
504 # Whether one-click signin is enabled or not.
505 'enable_one_click_signin%': 0,
507 # Whether to back up data before sync.
508 'enable_pre_sync_backup%': 0,
510 # Enable Chrome browser extensions
511 'enable_extensions%': 1,
514 'enable_google_now%': 1,
516 # Enable basic printing support and UI.
517 'enable_basic_printing%': 1,
519 # Enable printing with print preview. It does not imply
520 # enable_basic_printing. It's possible to build Chrome with preview only.
521 'enable_print_preview%': 1,
523 # Set the version of CLD.
524 # 0: Don't specify the version. This option is for the Finch testing.
529 # For CLD2, the size of the tables that should be included in the build
530 # Only evaluated if cld_version == 2 or if building the CLD2 dynamic data
532 # See third_party/cld_2/cld_2.gyp for more information.
533 # 0: Small tables, lower accuracy
534 # 2: Large tables, high accuracy
535 'cld2_table_size%': 2,
537 # Enable spell checker.
538 'enable_spellcheck%': 1,
540 # Webrtc compilation is enabled by default. Set to 0 to disable.
543 # Media router support is enabled by default. Set to 0 to disable.
544 'enable_media_router%': 1,
546 # Enables use of the session service, which is enabled by default.
547 # Support for disabling depends on the platform.
548 'enable_session_service%': 1,
550 # Enables theme support, which is enabled by default. Support for
551 # disabling depends on the platform.
554 # Enables autofill dialog and associated features; disabled by default.
555 'enable_autofill_dialog%' : 0,
557 # Defaults Wallet integration in Autofill dialog to use production
558 # servers. Unofficial builds won't have the proper API keys.
559 'enable_prod_wallet_service%': 0,
561 # Enables support for background apps.
562 'enable_background%': 1,
564 # Enable the task manager by default.
565 'enable_task_manager%': 1,
567 # Enables used resource whitelist generation; disabled by default.
568 'enable_resource_whitelist_generation%': 0,
570 # Enable FILE support by default.
571 'disable_file_support%': 0,
573 # Enable FTP support by default.
574 'disable_ftp_support%': 0,
576 # Use native android functions in place of ICU. Not supported by most
578 'use_icu_alternatives_on_android%': 0,
580 # Use of precompiled headers on Windows.
582 # This variable may be explicitly set to 1 (enabled) or 0
583 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
584 # This setting will override the default.
587 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders
589 'chromium_win_pch%': 0,
592 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts',
593 # Set this to true when building with Clang.
594 # See http://code.google.com/p/chromium/wiki/Clang for details.
595 # If this is set, clang is used as both host and target compiler in
596 # cross-compile builds.
599 # Use experimental lld linker instead of the platform's default linker.
602 # Enable plugin installation by default.
603 'enable_plugin_installation%': 1,
605 # Specifies whether to use canvas_skia.cc in place of platform
606 # specific implementations of gfx::Canvas. Affects text drawing in the
608 # TODO(asvitkine): Enable this on all platforms and delete this flag.
609 # http://crbug.com/105550
610 'use_canvas_skia%': 0,
612 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work
613 # with one of those tools.
614 'build_for_tool%': '',
616 # If no directory is specified then a temporary directory will be used.
617 'test_isolation_outdir%': '',
619 'wix_path%': '<(DEPTH)/third_party/wix',
621 # Supervised users are enabled by default.
622 'enable_supervised_users%': 1,
624 # Platform sends memory pressure signals natively.
625 'native_memory_pressure_signals%': 0,
627 'spdy_proxy_auth_property%' : '',
628 'spdy_proxy_auth_value%' : '',
630 'enable_service_discovery%': 0,
631 'enable_wifi_bootstrapping%': 0,
632 'enable_hangout_services_extension%': 0,
634 # Enable the Syzygy optimization step.
635 'syzygy_optimize%': 0,
637 # Enable hole punching for the protected video.
640 # Automatically select platforms under ozone. Turn this off to
641 # build only explicitly selected platforms.
642 'ozone_auto_platforms%': 1,
644 # If this is set clang is used as host compiler, but not as target
645 # compiler. Always do this by default.
648 # Variables to control Link-Time Optimization (LTO).
649 # On Android, the variable use_lto enables LTO on code compiled with -Os,
650 # and use_lto_o2 enables LTO on code compiled with -O2. On other
651 # platforms, use_lto enables LTO in all translation units, and use_lto_o2
654 # On Linux and Android, when using LLVM LTO, the script
655 # build/download_gold_plugin.py must be run to download a linker plugin.
656 # On Mac, LLVM needs to be built from scratch using
657 # tools/clang/scripts/update.py and the absolute path to
658 # third_party/llvm-build/Release+Asserts/lib must be added to
659 # $DYLD_LIBRARY_PATH to pick up the right version of the linker plugin.
661 # On Android, the variables must *not* be enabled at the same time.
662 # In this case LTO would 'merge' the optimization flags at link-time
663 # which would lead to all code be optimized with -O2. See crbug.com/407544
667 # Libxkbcommon usage.
670 # Control Flow Integrity for virtual calls and casts.
671 # See http://clang.llvm.org/docs/ControlFlowIntegrity.html
674 'cfi_blacklist%': '<(PRODUCT_DIR)/../../tools/cfi/blacklist.txt',
676 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa.
677 'mac_views_browser%': 0,
679 # By default, use ICU data file (icudtl.dat).
680 'icu_use_data_file_flag%': 1,
682 # Turn on JNI generation optimizations by default.
683 'optimize_jni_generation%': 1,
686 # A flag for POSIX platforms
693 # A flag for BSD platforms
694 ['OS=="freebsd" or OS=="openbsd"', {
701 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris")', {
707 # libudev usage. This currently only affects the content layer.
708 ['OS=="linux" and embedded==0', {
714 # Flags to use X11 on non-Mac POSIX platforms.
715 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
722 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
728 # Flags to use pango and cairo.
729 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', {
738 ['OS=="linux" and embedded==0', {
744 # We always use skia text rendering in Aura on Windows, since GDI
745 # doesn't agree with our BackingStore.
746 # TODO(beng): remove once skia text rendering is on by default.
747 ['use_aura==1 and OS=="win"', {
748 'enable_skia_text%': 1,
751 # A flag to enable or disable our compile-time dependency
752 # on gnome-keyring. If that dependency is disabled, no gnome-keyring
753 # support will be available. This option is useful
754 # for Linux distributions and for Aura.
755 ['OS!="linux" or chromeos==1', {
756 'use_gnome_keyring%': 0,
758 'use_gnome_keyring%': 1,
761 ['OS=="mac" or OS=="ios"', {
762 # Mac and iOS want Title Case strings
763 'use_titlecase_in_grd%': 1,
766 # Enable loader extensions on Chrome OS.
768 'image_loader_extension%': 1,
770 'image_loader_extension%': 0,
773 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
774 'enable_one_click_signin%': 1,
775 'enable_pre_sync_backup%': 1,
779 'enable_extensions%': 0,
780 'enable_google_now%': 0,
782 'enable_spellcheck%': 0,
786 'arm_neon_optional%': 1,
787 'native_memory_pressure_signals%': 1,
788 'enable_basic_printing%': 1,
789 'enable_print_preview%': 0,
790 'enable_task_manager%':0,
794 # Android OS includes support for proprietary codecs regardless of
795 # building Chromium or Google Chrome. We also ship Google Chrome and
796 # Chromecast with proprietary codecs.
797 ['OS=="android" or branding=="Chrome" or chromecast==1', {
798 'proprietary_codecs%': 1,
800 'proprietary_codecs%': 0,
803 ['OS=="mac" or OS=="ios"', {
804 'native_memory_pressure_signals%': 1,
807 # Enable autofill dialog when not on iOS.
809 'enable_autofill_dialog%': 1,
812 ['buildtype=="Official"', {
813 'enable_prod_wallet_service%': 1,
821 'disable_ftp_support%': 1,
822 'enable_extensions%': 0,
823 'enable_google_now%': 0,
825 'cld2_table_size%': 0,
826 'enable_basic_printing%': 0,
827 'enable_print_preview%': 0,
828 'enable_session_service%': 0,
829 'enable_spellcheck%': 0,
835 'enable_supervised_users%': 0,
836 'enable_task_manager%': 0,
837 'use_system_libcxx%': 1,
840 # Use GPU accelerated cross process image transport by default
841 # on linux builds with the Aura window manager
842 ['use_aura==1 and OS=="linux"', {
843 'ui_compositor_image_transport%': 1,
845 'ui_compositor_image_transport%': 0,
848 # Turn precompiled headers on by default.
849 ['OS=="win" and buildtype!="Official"', {
850 'chromium_win_pch%': 1
853 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', {
854 'enable_plugin_installation%': 0,
856 'enable_plugin_installation%': 1,
859 # Whether PPAPI is enabled.
860 ['OS=="android" or OS=="ios" or embedded==1', {
861 'enable_plugins%': 0,
863 'enable_plugins%': 1,
866 # linux_use_bundled_gold: whether to use the gold linker binary checked
867 # into third_party/binutils. Force this off via GYP_DEFINES when you
868 # are using a custom toolchain and need to control -B in ldflags.
869 # Do not use 32-bit gold on 32-bit hosts as it runs out address space
870 # for component=static_library builds.
871 ['(OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch=="arm")', {
872 'linux_use_bundled_gold%': 1,
874 'linux_use_bundled_gold%': 0,
877 # linux_use_bundled_binutils: whether to use the binary binutils
878 # checked into third_party/binutils. These are not multi-arch so cannot
879 # be used except on x86 and x86-64 (the only two architectures which
880 # are currently checke in). Force this off via GYP_DEFINES when you
881 # are using a custom toolchain and need to control -B in cflags.
882 ['OS=="linux" and (target_arch=="x64")', {
883 'linux_use_bundled_binutils%': 1,
885 'linux_use_bundled_binutils%': 0,
888 # linux_use_gold_flags: whether to use build flags that rely on gold.
889 # On by default for x64 Linux.
890 ['OS=="linux" and target_arch=="x64"', {
891 'linux_use_gold_flags%': 1,
893 'linux_use_gold_flags%': 0,
896 # linux_use_debug_fission: whether to use split DWARF debug info
897 # files. This can reduce link time significantly, but is incompatible
898 # with some utilities such as icecc and ccache. Requires gold and
899 # gcc >= 4.8 or clang.
900 # http://gcc.gnu.org/wiki/DebugFission
901 ['OS=="linux" and target_arch=="x64"', {
902 'linux_use_debug_fission%': 1,
904 'linux_use_debug_fission%': 0,
907 ['OS=="android" or OS=="ios"', {
908 'enable_captive_portal_detection%': 0,
909 'enable_media_router%': 0,
911 'enable_captive_portal_detection%': 1,
912 'enable_media_router%': 1,
915 # Enable Skia UI text drawing incrementally on different platforms.
916 # http://crbug.com/105550
918 # On Aura, this allows per-tile painting to be used in the browser
920 ['OS!="android" and OS!="ios"', {
921 'use_canvas_skia%': 1,
925 'enable_basic_printing%': 0,
926 'enable_print_preview%': 1,
929 # Do not enable the Settings App on ChromeOS.
930 ['enable_app_list==1 and chromeos==0', {
931 'enable_settings_app%': 1,
933 'enable_settings_app%': 0,
936 ['OS=="linux" and target_arch=="arm" and chromeos==0', {
937 # sysroot needs to be an absolute path otherwise it generates
938 # incorrect results when passed to pkg-config
939 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_arm-sysroot',
940 }], # OS=="linux" and target_arch=="arm" and chromeos==0
942 ['OS=="linux" and ((branding=="Chrome" and buildtype=="Official" and chromeos==0) or use_sysroot==1)' , {
944 ['target_arch=="x64"', {
945 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_amd64-sysroot',
947 ['target_arch=="ia32"', {
948 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_i386-sysroot',
951 }], # OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0
953 ['OS=="linux" and target_arch=="mipsel"', {
954 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot',
955 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu-gcc',
958 # Whether tests targets should be run, archived or just have the
959 # dependencies verified. All the tests targets have the '_run' suffix,
960 # e.g. base_unittests_run runs the target base_unittests. The test
961 # target always calls tools/swarming_client/isolate.py. See the script's
962 # --help for more information. Meant to be overriden with GYP_DEFINES.
963 # TODO(maruel): Remove the conditions as more configurations are
965 ['OS!="ios" and OS!="android" and chromeos==0', {
966 'test_isolation_mode%': 'check',
968 'test_isolation_mode%': 'noop',
970 # Whether Android build uses OpenMAX DL FFT.
971 ['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")', {
972 # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mipsel.
973 # When enabled, this will also enable WebAudio support on
974 # Android for these architectures. Default is enabled. Whether
975 # WebAudio is actually available depends on runtime settings
977 'use_openmax_dl_fft%': 1,
979 'use_openmax_dl_fft%': 0,
981 ['OS=="win" or OS=="linux"', {
985 # Turns on compiler optimizations in V8 in Debug build, except
986 # on android_clang, where we're hitting a weird linker error.
987 # TODO(dpranke): http://crbug.com/266155 .
989 'v8_optimized_debug%': 1,
991 'v8_optimized_debug%': 2,
994 # Disable various features by default on embedded.
997 'enable_basic_printing%': 0,
998 'enable_print_preview%': 0,
1001 ['OS=="win" or OS=="mac"', {
1002 'enable_wifi_bootstrapping%' : 1,
1005 # Path to sas.dll, which provides the SendSAS function.
1006 # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs.85).aspx
1007 ['target_arch=="x64"', {
1008 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/amd64',
1010 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
1014 # Setting this to '0' will cause V8's startup snapshot to be
1015 # embedded in the binary instead of being a external files.
1016 'v8_use_external_startup_data%': 1,
1018 # Set this to 1 to enable use of concatenated impulse responses
1019 # for the HRTF panner in WebAudio.
1020 'use_concatenated_impulse_responses': 1,
1022 # You can set the variable 'use_official_google_api_keys' to 1
1023 # to use the Google-internal file containing official API keys
1024 # for Google Chrome even in a developer build. Setting this
1025 # variable explicitly to 1 will cause your build to fail if the
1026 # internal file is missing.
1028 # The variable is documented here, but not handled in this file;
1029 # see //google_apis/determine_use_official_keys.gypi for the
1032 # Set the variable to 0 to not use the internal file, even when
1033 # it exists in your checkout.
1035 # Leave it unset in your include.gypi to have the variable
1036 # implicitly set to 1 if you have
1037 # src/google_apis/internal/google_chrome_api_keys.h in your
1038 # checkout, and implicitly set to 0 if not.
1040 # Note that official builds always behave as if the variable
1041 # was explicitly set to 1, i.e. they always use official keys,
1042 # and will fail to build if the internal file is missing.
1044 # NOTE: You MUST NOT explicitly set the variable to 2 in your
1045 # include.gypi or by other means. Due to subtleties of GYP, this
1046 # is not the same as leaving the variable unset, even though its
1048 # //google_apis/determine_use_official_keys.gypi is 2.
1050 # Set these to bake the specified API keys and OAuth client
1051 # IDs/secrets into your build.
1053 # If you create a build without values baked in, you can instead
1054 # set environment variables to provide the keys at runtime (see
1055 # src/google_apis/google_api_keys.h for details). Features that
1056 # require server-side APIs may fail to work if no keys are
1059 # Note that if you are building an official build or if
1060 # use_official_google_api_keys has been set to 1 (explicitly or
1061 # implicitly), these values will be ignored and the official
1062 # keys will be used instead.
1063 'google_api_key%': '',
1064 'google_default_client_id%': '',
1065 'google_default_client_secret%': '',
1066 # Native Client is enabled by default.
1067 'disable_nacl%': '0',
1069 # Sets the default version name and code for Android app, by default we
1070 # do a developer build.
1071 'android_app_version_name%': 'Developer Build',
1072 'android_app_version_code%': 1,
1075 # Copy conditionally-set variables out one scope.
1076 'branding%': '<(branding)',
1077 'branding_path_component%': '<(branding_path_component)',
1078 'buildtype%': '<(buildtype)',
1079 'target_arch%': '<(target_arch)',
1080 'target_subarch%': '<(target_subarch)',
1081 'mips_arch_variant%': '<(mips_arch_variant)',
1082 'mips_dsp_rev%': '<(mips_dsp_rev)',
1083 'host_arch%': '<(host_arch)',
1084 'toolkit_views%': '<(toolkit_views)',
1085 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
1086 'use_aura%': '<(use_aura)',
1087 'use_ash%': '<(use_ash)',
1088 'use_cras%': '<(use_cras)',
1089 'use_libpci%': '<(use_libpci)',
1090 'use_openssl%': '<(use_openssl)',
1091 'use_openssl_certs%': '<(use_openssl_certs)',
1092 'use_nss_certs%': '<(use_nss_certs)',
1093 'use_udev%': '<(use_udev)',
1094 'os_bsd%': '<(os_bsd)',
1095 'os_posix%': '<(os_posix)',
1096 'use_dbus%': '<(use_dbus)',
1097 'use_glib%': '<(use_glib)',
1098 'use_pango%': '<(use_pango)',
1099 'use_cairo%': '<(use_cairo)',
1100 'use_ozone%': '<(use_ozone)',
1101 'use_ozone_evdev%': '<(use_ozone_evdev)',
1102 'use_xkbcommon%': '<(use_xkbcommon)',
1103 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
1104 'desktop_linux%': '<(desktop_linux)',
1105 'use_x11%': '<(use_x11)',
1106 'use_gnome_keyring%': '<(use_gnome_keyring)',
1107 'linux_fpic%': '<(linux_fpic)',
1108 'chromeos%': '<(chromeos)',
1109 'chromecast%': '<(chromecast)',
1110 'enable_viewport%': '<(enable_viewport)',
1111 'enable_hidpi%': '<(enable_hidpi)',
1112 'enable_topchrome_md%': '<(enable_topchrome_md)',
1113 'image_loader_extension%': '<(image_loader_extension)',
1114 'fastbuild%': '<(fastbuild)',
1115 'dont_embed_build_metadata%': '<(dont_embed_build_metadata)',
1116 'win_z7%': '<(win_z7)',
1117 'dcheck_always_on%': '<(dcheck_always_on)',
1118 'tracing_like_official_build%': '<(tracing_like_official_build)',
1119 'arm_version%': '<(arm_version)',
1120 'arm_neon%': '<(arm_neon)',
1121 'arm_neon_optional%': '<(arm_neon_optional)',
1122 'sysroot%': '<(sysroot)',
1123 'chroot_cmd%': '<(chroot_cmd)',
1124 'system_libdir%': '<(system_libdir)',
1125 'component%': '<(component)',
1126 'win_analyze%': '<(win_analyze)',
1127 'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_generation)',
1128 'use_titlecase_in_grd%': '<(use_titlecase_in_grd)',
1129 'use_third_party_translations%': '<(use_third_party_translations)',
1130 'remoting%': '<(remoting)',
1131 'enable_one_click_signin%': '<(enable_one_click_signin)',
1132 'enable_pre_sync_backup%': '<(enable_pre_sync_backup)',
1133 'enable_media_router%': '<(enable_media_router)',
1134 'enable_webrtc%': '<(enable_webrtc)',
1135 'chromium_win_pch%': '<(chromium_win_pch)',
1136 'configuration_policy%': '<(configuration_policy)',
1137 'safe_browsing%': '<(safe_browsing)',
1138 'enable_web_speech%': '<(enable_web_speech)',
1139 'notifications%': '<(notifications)',
1140 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
1141 'mac_want_real_dsym%': '<(mac_want_real_dsym)',
1143 'asan_blacklist%': '<(asan_blacklist)',
1144 'asan_coverage%': '<(asan_coverage)',
1145 'sanitizer_coverage%': '<(sanitizer_coverage)',
1146 'asan_field_padding%': '<(asan_field_padding)',
1147 'use_sanitizer_options%': '<(use_sanitizer_options)',
1148 'syzyasan%': '<(syzyasan)',
1149 'kasko%': '<(kasko)',
1150 'syzygy_optimize%': '<(syzygy_optimize)',
1153 'msan_blacklist%': '<(msan_blacklist)',
1154 'msan_track_origins%': '<(msan_track_origins)',
1156 'tsan_blacklist%': '<(tsan_blacklist)',
1157 'ubsan%': '<(ubsan)',
1158 'ubsan_blacklist%': '<(ubsan_blacklist)',
1159 'ubsan_vptr_blacklist%': '<(ubsan_vptr_blacklist)',
1160 'ubsan_vptr%': '<(ubsan_vptr)',
1161 'use_instrumented_libraries%': '<(use_instrumented_libraries)',
1162 'use_prebuilt_instrumented_libraries%': '<(use_prebuilt_instrumented_libraries)',
1163 'use_custom_libcxx%': '<(use_custom_libcxx)',
1164 'use_system_libcxx%': '<(use_system_libcxx)',
1165 'clang_type_profiler%': '<(clang_type_profiler)',
1166 'order_profiling%': '<(order_profiling)',
1167 'order_text_section%': '<(order_text_section)',
1168 'enable_extensions%': '<(enable_extensions)',
1169 'enable_plugin_installation%': '<(enable_plugin_installation)',
1170 'enable_plugins%': '<(enable_plugins)',
1171 'enable_session_service%': '<(enable_session_service)',
1172 'enable_themes%': '<(enable_themes)',
1173 'enable_autofill_dialog%': '<(enable_autofill_dialog)',
1174 'enable_prod_wallet_service%': '<(enable_prod_wallet_service)',
1175 'enable_background%': '<(enable_background)',
1176 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
1177 'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
1178 'linux_use_gold_flags%': '<(linux_use_gold_flags)',
1179 'linux_use_debug_fission%': '<(linux_use_debug_fission)',
1180 'use_canvas_skia%': '<(use_canvas_skia)',
1181 'test_isolation_mode%': '<(test_isolation_mode)',
1182 'test_isolation_outdir%': '<(test_isolation_outdir)',
1183 'enable_basic_printing%': '<(enable_basic_printing)',
1184 'enable_print_preview%': '<(enable_print_preview)',
1185 'enable_spellcheck%': '<(enable_spellcheck)',
1186 'enable_google_now%': '<(enable_google_now)',
1187 'cld_version%': '<(cld_version)',
1188 'cld2_table_size%': '<(cld2_table_size)',
1189 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1190 'disable_file_support%': '<(disable_file_support)',
1191 'disable_ftp_support%': '<(disable_ftp_support)',
1192 'use_icu_alternatives_on_android%': '<(use_icu_alternatives_on_android)',
1193 'enable_task_manager%': '<(enable_task_manager)',
1194 'sas_dll_path%': '<(sas_dll_path)',
1195 'wix_path%': '<(wix_path)',
1196 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1197 'use_system_libjpeg%': '<(use_system_libjpeg)',
1198 'android_channel%': '<(android_channel)',
1199 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1200 'gyp_managed_install%': 0,
1201 'create_standalone_apk%': 1,
1202 'enable_app_list%': '<(enable_app_list)',
1203 'use_default_render_theme%': '<(use_default_render_theme)',
1204 'enable_settings_app%': '<(enable_settings_app)',
1205 'google_api_key%': '<(google_api_key)',
1206 'google_default_client_id%': '<(google_default_client_id)',
1207 'google_default_client_secret%': '<(google_default_client_secret)',
1208 'enable_supervised_users%': '<(enable_supervised_users)',
1209 'native_memory_pressure_signals%': '<(native_memory_pressure_signals)',
1210 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
1211 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
1212 'enable_mdns%' : '<(enable_mdns)',
1213 'enable_service_discovery%' : '<(enable_service_discovery)',
1214 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)',
1215 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)',
1216 'v8_optimized_debug%': '<(v8_optimized_debug)',
1217 'proprietary_codecs%': '<(proprietary_codecs)',
1218 'use_goma%': '<(use_goma)',
1219 'gomadir%': '<(gomadir)',
1220 'use_lto%': '<(use_lto)',
1221 'use_lto_o2%': '<(use_lto_o2)',
1222 'video_hole%': '<(video_hole)',
1223 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)',
1224 'cfi_vptr%': '<(cfi_vptr)',
1225 'cfi_blacklist%': '<(cfi_blacklist)',
1226 'mac_views_browser%': '<(mac_views_browser)',
1227 'android_app_version_name%': '<(android_app_version_name)',
1228 'android_app_version_code%': '<(android_app_version_code)',
1230 # Use system protobuf instead of bundled one.
1231 'use_system_protobuf%': 0,
1233 # Use system yasm instead of bundled one.
1234 'use_system_yasm%': 0,
1236 # Use system ICU instead of bundled one.
1237 'use_system_icu%' : 0,
1239 # Default to enabled PIE; this is important for ASLR but we may need to be
1240 # able to turn it off for various reasons.
1241 'linux_disable_pie%': 0,
1243 # The release channel that this build targets. This is used to restrict
1244 # channel-specific build options, like which installer packages to create.
1245 # The default is 'all', which does no channel-specific filtering.
1248 # Override chromium_mac_pch and set it to 0 to suppress the use of
1249 # precompiled headers on the Mac. Prefix header injection may still be
1250 # used, but prefix headers will not be precompiled. This is useful when
1251 # using distcc to distribute a build to compile slaves that don't
1252 # share the same compiler executable as the system driving the compilation,
1253 # because precompiled headers rely on pointers into a specific compiler
1254 # executable's image. Setting this to 0 is needed to use an experimental
1255 # Linux-Mac cross compiler distcc farm.
1256 'chromium_mac_pch%': 1,
1258 # The default value for mac_strip in target_defaults. This cannot be
1259 # set there, per the comment about variable% in a target_defaults.
1260 'mac_strip_release%': 0,
1262 # Set to 1 to enable java code coverage. Instruments classes during build
1263 # to produce .ec files during runtime.
1264 'emma_coverage%': 0,
1266 # EMMA filter string consisting of a list of inclusion/exclusion patterns
1267 # separated with whitespace and/or comma. Only has effect if
1268 # 'emma_coverage=1'.
1271 # Set to 1 to enable running Android lint on java/class files.
1274 # Although base/allocator lets you select a heap library via an
1275 # environment variable, the libcmt shim it uses sometimes gets in
1276 # the way. To disable it entirely, and switch to normal msvcrt, do e.g.
1277 # 'win_use_allocator_shim': 0,
1278 # 'win_release_RuntimeLibrary': 2
1279 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build.
1280 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt
1282 # TODO(bradnelson): eliminate this when possible.
1283 # To allow local gyp files to prevent release.vsprops from being included.
1284 # Yes(1) means include release.vsprops.
1285 # Once all vsprops settings are migrated into gyp, this can go away.
1286 'msvs_use_common_release%': 1,
1288 # TODO(bradnelson): eliminate this when possible.
1289 # To allow local gyp files to override additional linker options for msvs.
1290 # Yes(1) means set use the common linker options.
1291 'msvs_use_common_linker_extras%': 1,
1293 # TODO(sgk): eliminate this if possible.
1294 # It would be nicer to support this via a setting in 'target_defaults'
1295 # in chrome/app/locales/locales.gypi overriding the setting in the
1296 # 'Debug' configuration in the 'target_defaults' dict below,
1297 # but that doesn't work as we'd like.
1298 'msvs_debug_link_incremental%': '2',
1300 # Needed for some of the largest modules.
1301 'msvs_debug_link_nonincremental%': '1',
1303 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows
1304 # to get incremental linking to be faster in debug builds.
1305 'incremental_chrome_dll%': '0',
1307 # Experimental setting to break chrome.dll into multiple pieces based on
1309 'chrome_multiple_dll%': '0',
1311 # Experimental setting to optimize Chrome's DLLs with PGO.
1312 'chrome_pgo_phase%': '0',
1314 # Whether the VS xtree header has been patched to disable warning 4702. If
1315 # it has, then we don't need to disable 4702 (unreachable code warning).
1316 # The patch is preapplied to the internal toolchain and hence all bots.
1317 'msvs_xtree_patched%': '<!pymod_do_main(win_is_xtree_patched)',
1320 'clang%': '<(clang)',
1321 'host_clang%': '<(host_clang)',
1322 'make_clang_dir%': '<(make_clang_dir)',
1323 'use_lld%': '<(use_lld)',
1325 # Control which version of clang to use when building for iOS. If set to
1326 # '1', uses the version of clang that ships with Xcode. If set to '0', uses
1327 # the version of clang that ships with the Chromium source. This variable
1328 # is automatically set to '1' when using the Xcode generator.
1331 # These two variables can be set in GYP_DEFINES while running
1332 # |gclient runhooks| to let clang run a plugin in every compilation.
1333 # Only has an effect if 'clang=1' is in GYP_DEFINES as well.
1335 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dylib clang_add_plugin=print-fns' gclient runhooks
1338 'clang_add_plugin%': '',
1340 # Tell ld64 to write map files describing binary layout. Useful
1341 # for looking at what contributes to binary size, e.g. with
1342 # https://github.com/nico/bloat
1343 'mac_write_linker_maps%': 0,
1345 # The default type of gtest.
1346 'gtest_target_type%': 'executable',
1348 # Enable sampling based profiler.
1349 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
1351 # Profile without optimizing out stack frames when profiling==1.
1352 'profiling_full_stack_frames%': '0',
1354 # And if we want to dump symbols for Breakpad-enabled builds.
1355 'linux_dump_symbols%': 0,
1356 # And if we want to strip the binary after dumping symbols.
1357 'linux_strip_binary%': 0,
1358 # If we want stack unwind support for backtrace().
1359 'debug_unwind_tables%': 1,
1360 'release_unwind_tables%': 1,
1362 # Override where to find binutils
1363 'binutils_version%': 0,
1364 'binutils_dir%': '',
1367 # Default of 'use_allocator' is set to 'none' if OS=='android' later.
1368 'use_allocator%': 'tcmalloc',
1370 # Set to 1 to link against libgnome-keyring instead of using dlopen().
1371 'linux_link_gnome_keyring%': 0,
1372 # Set to 1 to link against gsettings APIs instead of using dlopen().
1373 'linux_link_gsettings%': 0,
1375 # Enable use of OpenMAX DL FFT routines.
1376 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
1378 # Enable new NPDevice API.
1379 'enable_new_npdevice_api%': 0,
1381 # .gyp files or targets should set chromium_code to 1 if they build
1382 # Chromium-specific code, as opposed to external code. This variable is
1383 # used to control such things as the set of warnings to enable, and
1384 # whether warnings are treated as errors.
1385 'chromium_code%': 0,
1387 # Disable fatal linker warnings, similarly to how we make it possible
1388 # to disable -Werror (e.g. for different toolchain versions).
1389 'disable_fatal_linker_warnings%': 0,
1391 'release_valgrind_build%': 0,
1393 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
1394 'enable_wexit_time_destructors%': 0,
1396 # Build libpeerconnection as a static library by default.
1397 'libpeer_target_type%': 'static_library',
1399 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
1400 'internal_gles2_conform_tests%': 0,
1402 # Set to 1 to compile with the Khronos GL-CTS conformance tests.
1403 'internal_khronos_glcts_tests%': 0,
1405 # Set to 1 to compile the filter fuzzer.
1406 'internal_filter_fuzzer%': 0,
1408 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
1409 # so Cocoa is happy (http://crbug.com/20441).
1411 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB',
1412 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he',
1413 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv',
1414 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
1415 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk',
1416 'vi', 'zh-CN', 'zh-TW',
1419 # Pseudo locales are special locales which are used for testing and
1420 # debugging. They don't get copied to the final app. For more info,
1421 # check out https://www.chromium.org/developers/testing/fake-bidi
1428 # If debug_devtools is set to 1, JavaScript files for DevTools are
1429 # stored as is and loaded from disk. Otherwise, a concatenated file
1430 # is stored in resources.pak. It is still possible to load JS files
1431 # from disk by passing --debug-devtools cmdline switch.
1432 'debug_devtools%': 0,
1434 # The Java Bridge is not compiled in by default.
1437 # Code signing for iOS binaries. The bots need to be able to disable this.
1438 'chromium_ios_signing%': 1,
1440 # This flag is only used when disable_nacl==0 and disables all those
1441 # subcomponents which would require the installation of a native_client
1442 # untrusted toolchain.
1443 'disable_nacl_untrusted%': 0,
1445 # PNaCl toolchain does not support sanitizers. Disable by default.
1446 'enable_nacl_nonsfi_test%': 0,
1448 # Disable Dart by default.
1451 # Copy out the setting of disable_nacl.
1452 'disable_nacl%': '<(disable_nacl)',
1454 # Portable Native Client is enabled by default.
1455 'disable_pnacl%': 0,
1457 # Whether to build full debug version for Debug configuration on Android.
1458 # Compared to full debug version, the default Debug configuration on Android
1459 # has no full v8 debug, has size optimization and linker gc section, so that
1460 # we can build a debug version with acceptable size and performance.
1461 'android_full_debug%': 0,
1463 # Contains data about the attached devices for gyp_managed_install.
1464 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1466 'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
1467 'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
1469 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.1',
1470 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1472 # Whether we are using the rlz library or not. Platforms like Android send
1473 # rlz codes for searches but do not use the library.
1476 # Turns on the i18n support in V8.
1477 'v8_enable_i18n_support': 1,
1479 # Compile d8 for the host toolset.
1480 'v8_toolset_for_d8': 'host',
1482 # Use brlapi from brltty for braille display support.
1485 # Relative path to icu.gyp from this file.
1486 'icu_gyp_path': '../third_party/icu/icu.gyp',
1488 # IPC fuzzer is disabled by default.
1489 'enable_ipc_fuzzer%': 0,
1491 # Force disable libstdc++ debug mode.
1492 'disable_glibcxx_debug%': 0,
1494 # Set to 1 to compile with MSE support for MPEG2 TS
1495 'enable_mpeg2ts_stream_parser%': 0,
1497 # Support ChromeOS touchpad gestures with ozone.
1498 'use_evdev_gestures%': 0,
1500 # Default ozone platform (if no --ozone-platform flag).
1501 'ozone_platform%': "",
1503 # Ozone platforms to include in the build.
1504 'ozone_platform_caca%': 0,
1505 'ozone_platform_cast%': 0,
1506 'ozone_platform_dri%': 0,
1507 'ozone_platform_drm%': 0,
1508 'ozone_platform_egltest%': 0,
1509 'ozone_platform_gbm%': 0,
1510 'ozone_platform_ozonex%': 0,
1511 'ozone_platform_test%': 0,
1513 # Experiment: http://crbug.com/426914
1516 # Used to set libjpeg_gyp_path. Chrome OS ui/gfx/gfx.gyp uses the IJG path
1517 # for robust login screen decoding.
1518 'libjpeg_ijg_gyp_path': '<(DEPTH)/third_party/libjpeg/libjpeg.gyp',
1519 'libjpeg_turbo_gyp_path': '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp',
1522 ['buildtype=="Official"', {
1523 # Continue to embed build meta data in Official builds, basically the
1524 # time it was built.
1525 # TODO(maruel): This decision should be revisited because having an
1526 # official deterministic build has high value too but MSVC toolset can't
1527 # generate anything deterministic with WPO enabled AFAIK.
1528 'dont_embed_build_metadata%': 0,
1530 # Enable the Syzygy optimization step for the official builds.
1531 ['OS=="win" and buildtype=="Official" and syzyasan!=1 and clang!=1', {
1532 'syzygy_optimize%': 1,
1534 'syzygy_optimize%': 0,
1536 # Get binutils version so we can enable debug fission if we can.
1537 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1539 # compiler_version doesn't work with clang
1540 # TODO(mithro): Land https://codereview.chromium.org/199793014/ so
1541 # compiler_version works with clang.
1542 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so
1543 # that it takes effect here.
1544 ['clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', {
1545 'binutils_version%': '<!pymod_do_main(compiler_version target assembler)',
1547 # On Android we know the binutils version in the toolchain.
1549 'binutils_version%': 222,
1551 ['host_arch=="x64"', {
1552 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1554 ['host_arch=="ia32"', {
1555 'binutils_dir%': 'third_party/binutils/Linux_ia32/Release/bin',
1557 # Our version of binutils in third_party/binutils
1558 ['linux_use_bundled_binutils==1', {
1559 'binutils_version%': 224,
1563 'binutils_version%': 0,
1565 # The version of GCC in use, set later in platforms that use GCC and have
1566 # not explicitly chosen to build with clang. Currently, this means all
1567 # platforms except Windows, Mac and iOS.
1568 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1569 # it takes effect here.
1570 ['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', {
1573 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1574 # We directly set the gcc version since we know what we use.
1577 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1578 'gcc_version%': '<!pymod_do_main(compiler_version target compiler)',
1582 'host_gcc_version%': 0,
1585 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=="True"', {
1586 'directx_sdk_path%': '<(directx_sdk_default_path)',
1588 'directx_sdk_path%': '$(DXSDK_DIR)',
1591 'windows_driver_kit_path%': '$(WDK_DIR)',
1593 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1595 ['target_arch=="mipsel" or target_arch=="mips64el"', {
1598 'nacl_untrusted_build%': 0,
1599 'use_allocator%': 'none',
1601 ['OS=="linux" and target_arch=="mipsel"', {
1602 'sysroot%': '<(sysroot)',
1605 # Use a 64-bit linker to avoid running out of address space. The
1606 # buildbots should have a 64-bit kernel and a 64-bit libc installed.
1607 ['host_arch=="ia32" and target_arch=="ia32"', {
1608 # TODO(thestig) This is a horrible way to force the desired
1609 # configuration. Our gyp variable scoping is likely wrong and
1610 # needs to be cleaned up. The GN configuration should be changed
1612 'binutils_version%': 224,
1613 'linux_use_bundled_binutils%': '1',
1614 'linux_use_bundled_gold%': '1',
1615 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1617 # All Chrome builds have breakpad symbols, but only process the
1618 # symbols from official builds.
1619 ['(branding=="Chrome" and buildtype=="Official")', {
1620 'linux_dump_symbols%': 1,
1622 # Omit unwind support in official release builds to save space. We
1623 # can use breakpad for these builds.
1624 'release_unwind_tables%': 0,
1627 }], # os_posix==1 and OS!="mac" and OS!="ios"
1630 'enable_background%': 0,
1631 'icu_use_data_file_flag%': 1,
1632 'enable_web_speech%': 0,
1633 'use_system_libxml%': 1,
1634 'use_system_sqlite%': 1,
1636 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1637 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
1638 'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr',
1639 'uk', 'vi', 'zh-CN', 'zh-TW',
1642 # iOS SDK and deployment target support. The |ios_sdk| value is left
1643 # blank so that when it is set in the project files it will be the
1644 # "current" iOS SDK. Forcing a specific SDK even if it is "current"
1645 # causes Xcode to spit out a warning for every single project file for
1646 # not using the "current" SDK.
1648 'ios_sdk_path%': '',
1649 'ios_deployment_target%': '7.0',
1652 # ios_product_name is set to the name of the .app bundle as it should
1654 ['branding=="Chrome"', {
1655 'ios_product_name%': 'Chrome',
1656 }, { # else: branding!="Chrome"
1657 'ios_product_name%': 'Chromium',
1659 ['branding=="Chrome" and buildtype=="Official"', {
1661 }, { # else: branding!="Chrome" or buildtype!="Official"
1667 # Location of Android NDK.
1670 # Standard libraries can use the relative path to the NDK.
1671 'android_ndk_root%': '../../third_party/android_tools/ndk/',
1672 # Unfortunately, it is required to use the absolute path to the SDK
1673 # because it us passed to ant which uses a different relative path
1675 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/sdk/',
1676 # Similarly, gdbserver and the Android toolchain need to use the
1677 # absolute path to the NDK because they are used at different levels
1679 'android_ndk_absolute_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/ndk/',
1680 'android_host_arch%': '<!(uname -m)',
1681 # Android API-level of the SDK used for compilation.
1682 'android_sdk_version%': '22',
1683 'android_sdk_build_tools_version%': '22.0.0',
1684 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
1686 # Copy conditionally-set variables out one scope.
1687 'android_ndk_root%': '<(android_ndk_root)',
1688 'android_ndk_absolute_root%': '<(android_ndk_absolute_root)',
1689 'android_sdk_root%': '<(android_sdk_root)',
1690 'android_sdk_version%': '<(android_sdk_version)',
1691 'android_libcpp_root': '<(android_ndk_root)/sources/cxx-stl/llvm-libc++',
1692 'host_os%': '<(host_os)',
1694 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_version)',
1695 # Android SDK build tools (e.g. dx, aapt, aidl)
1696 'android_sdk_tools%': '<(android_sdk_root)/build-tools/<(android_sdk_build_tools_version)',
1698 # Android API level 16 is JB (Android 4.1) which is the minimum
1699 # platform requirement for Chrome on Android, we use it for native
1702 ['target_arch == "ia32"', {
1703 'android_app_abi%': 'x86',
1704 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86/gdbserver/gdbserver',
1705 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-16/arch-x86',
1706 'android_ndk_lib_dir%': 'usr/lib',
1707 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1709 ['target_arch == "x64"', {
1710 'android_app_abi%': 'x86_64',
1711 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86_64/gdbserver/gdbserver',
1712 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-x86_64',
1713 'android_ndk_lib_dir%': 'usr/lib64',
1714 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86_64-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1716 ['target_arch=="arm"', {
1719 'android_app_abi%': 'armeabi',
1721 'android_app_abi%': 'armeabi-v7a',
1724 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm/gdbserver/gdbserver',
1725 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-16/arch-arm',
1726 'android_ndk_lib_dir%': 'usr/lib',
1727 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/arm-linux-androideabi-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1729 ['target_arch == "arm64"', {
1730 'android_app_abi%': 'arm64-v8a',
1731 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm64/gdbserver/gdbserver',
1732 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-arm64',
1733 'android_ndk_lib_dir%': 'usr/lib',
1734 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1736 ['target_arch == "mipsel"', {
1737 'android_app_abi%': 'mips',
1738 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips/gdbserver/gdbserver',
1739 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-16/arch-mips',
1740 'android_ndk_lib_dir%': 'usr/lib',
1741 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mipsel-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1743 ['target_arch == "mips64el"', {
1744 'android_app_abi%': 'mips64',
1745 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips64/gdbserver/gdbserver',
1746 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-mips64',
1747 'android_ndk_lib_dir%': 'usr/lib64',
1748 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mips64el-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1752 # Copy conditionally-set variables out one scope.
1753 'android_app_abi%': '<(android_app_abi)',
1754 'android_gdbserver%': '<(android_gdbserver)',
1755 'android_ndk_root%': '<(android_ndk_root)',
1756 'android_ndk_sysroot%': '<(android_ndk_sysroot)',
1757 'android_sdk_root%': '<(android_sdk_root)',
1758 'android_sdk_version%': '<(android_sdk_version)',
1759 'android_toolchain%': '<(android_toolchain)',
1761 'android_ndk_include': '<(android_ndk_sysroot)/usr/include',
1762 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
1763 'android_sdk_tools%': '<(android_sdk_tools)',
1764 'android_sdk%': '<(android_sdk)',
1765 'android_sdk_jar%': '<(android_sdk)/android.jar',
1767 'android_libcpp_root': '<(android_libcpp_root)',
1768 'android_libcpp_include': '<(android_libcpp_root)/libcxx/include',
1769 'android_libcpp_libs_dir': '<(android_libcpp_root)/libs/<(android_app_abi)',
1770 'host_os%': '<(host_os)',
1772 # Location of the "objcopy" binary, used by both gyp and scripts.
1773 'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)',
1775 # Location of the "strip" binary, used by both gyp and scripts.
1776 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
1778 # Location of the "readelf" binary.
1779 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1781 # Determines whether we should optimize JNI generation at the cost of
1782 # breaking assumptions in the build system that when inputs have changed
1783 # the outputs should always change as well. This is meant purely for
1784 # developer builds, to avoid spurious re-linking of native files.
1785 'optimize_jni_generation%': '<(optimize_jni_generation)',
1787 # Always uses openssl.
1789 'use_openssl_certs%': 1,
1791 'proprietary_codecs%': '<(proprietary_codecs)',
1792 'safe_browsing%': 2,
1793 'enable_web_speech%': 0,
1795 'build_ffmpegsumo%': 0,
1796 'use_allocator%': 'none',
1798 # Disable Native Client.
1801 # Android does not support background apps.
1802 'enable_background%': 0,
1804 # Sessions are store separately in the Java side.
1805 'enable_session_service%': 0,
1809 'gtest_target_type%': 'shared_library',
1812 'use_system_fontconfig%': 0,
1814 'use_system_fontconfig%': 1,
1817 'enable_mpeg2ts_stream_parser%': 1,
1818 'ffmpeg_branding%': 'ChromeOS',
1819 'ozone_platform_ozonex%': 1,
1820 'use_playready%': 0,
1822 ['target_arch=="arm"', {
1824 'arm_tune%': 'cortex-a9',
1830 ['chromecast==1 and OS!="android"', {
1831 'ozone_platform_cast%': 1
1833 ['OS=="linux" and target_arch!="mipsel"', {
1838 # All Chrome builds have breakpad symbols, but only process the
1839 # symbols from official builds.
1840 ['(branding=="Chrome" and buildtype=="Official")', {
1841 'mac_strip_release%': 1,
1845 ['OS=="mac" or OS=="ios"', {
1849 # Mac OS X SDK and deployment target support. The SDK identifies
1850 # the version of the system headers that will be used, and
1851 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
1852 # macro. "Maximum allowed" refers to the operating system version
1853 # whose APIs are available in the headers. The deployment target
1854 # identifies the minimum system version that the built products are
1855 # expected to function on. It corresponds to the
1856 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these
1857 # macros are available, #include <AvailabilityMacros.h>. Additional
1858 # documentation on these macros is available at
1859 # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTION3
1860 # Chrome normally builds with the Mac OS X 10.6 SDK and sets the
1861 # deployment target to 10.6. Other projects, such as O3D, may
1862 # override these defaults.
1864 # Normally, mac_sdk_min is used to find an SDK that Xcode knows
1865 # about that is at least the specified version. In official builds,
1866 # the SDK must match mac_sdk_min exactly. If the SDK is installed
1867 # someplace that Xcode doesn't know about, set mac_sdk_path to the
1868 # path to the SDK; when set to a non-empty string, SDK detection
1869 # based on mac_sdk_min will be bypassed entirely.
1872 'mac_sdk_min%': '10.8',
1873 }, { # else OS!="ios"
1874 'mac_sdk_min%': '10.6',
1877 'mac_sdk_path%': '',
1879 'mac_deployment_target%': '10.6',
1882 'mac_sdk_min': '<(mac_sdk_min)',
1883 'mac_sdk_path': '<(mac_sdk_path)',
1884 'mac_deployment_target': '<(mac_deployment_target)',
1886 # Compile in Breakpad support by default so that it can be
1887 # tested, even if it is not enabled by default at runtime.
1888 'mac_breakpad_compiled_in%': 1,
1890 # mac_product_name is set to the name of the .app bundle as it should
1891 # appear on disk. This duplicates data from
1892 # chrome/app/theme/chromium/BRANDING and
1893 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get
1894 # these names into the build system.
1895 ['branding=="Chrome"', {
1896 'mac_product_name%': 'Google Chrome',
1897 }, { # else: branding!="Chrome"
1898 'mac_product_name%': 'Chromium',
1900 # Official mac builds require a specific OS X SDK, but iOS and
1901 # non-official mac builds do not.
1902 ['branding=="Chrome" and buildtype=="Official" and OS=="mac"', {
1903 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac_sdk_min) --sdk_path=<(mac_sdk_path))',
1905 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))',
1907 ['branding=="Chrome" and buildtype=="Official"', {
1908 # Enable uploading crash dumps.
1909 'mac_breakpad_uploads%': 1,
1910 # Enable dumping symbols at build time for use by Mac Breakpad.
1912 # Enable Keystone auto-update support.
1914 }, { # else: branding!="Chrome" or buildtype!="Official"
1915 'mac_breakpad_uploads%': 0,
1920 }], # OS=="mac" or OS=="ios"
1923 # This is the architecture convention used in WinSDK paths.
1924 ['target_arch=="ia32"', {
1925 'winsdk_arch%': 'x86',
1927 'winsdk_arch%': '<(target_arch)',
1929 ['component=="shared_library" or MSVS_VERSION == "2015"', {
1930 # TODO(scottmg): The allocator shimming doesn't work on the 2015 CRT
1931 # and we are hoping to be able to remove it if an additional feature
1932 # lands in the 2015 CRT API. For now, don't shim and revisit once
1933 # VS2015 is RTM: http://crbug.com/481611.
1934 'win_use_allocator_shim%': 0,
1936 ['component=="static_library"', {
1937 # Turn on multiple dll by default on Windows when in static_library.
1938 'chrome_multiple_dll%': 1,
1940 ['asan==1 or syzyasan==1', {
1941 'win_use_allocator_shim%': 0,
1946 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', {
1947 # Only enabled by default for ninja because it's buggy in VS.
1948 # Not enabled for component=static_library because some targets
1949 # are too large and the toolchain fails due to the size of the
1951 'incremental_chrome_dll%': 1,
1953 # Don't do incremental linking for large modules on 32-bit or when
1954 # component=static_library as the toolchain fails due to the size of
1956 ['MSVS_OS_BITS==32 or component=="static_library"', {
1957 'msvs_large_module_debug_link_mode%': '1', # No
1959 'msvs_large_module_debug_link_mode%': '2', # Yes
1962 'nacl_win64_defines': [
1963 # This flag is used to minimize dependencies when building
1964 # Native Client loader for 64-bit Windows.
1967 # Need to include allocator target, but exclude tcmalloc files.
1968 'use_allocator%': 'winheap',
1971 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios" and embedded==0', {
1977 ['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win") and chromecast==0', {
1978 'enable_pepper_cdms%': 1,
1980 'enable_pepper_cdms%': 0,
1983 ['OS=="android" or chromecast==1', {
1984 'enable_browser_cdms%': 1,
1986 'enable_browser_cdms%': 0,
1989 # Native Client glibc toolchain is enabled
1990 # by default except on arm, mips and mips64.
1991 ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"', {
1992 'disable_glibc%': 1,
1994 'disable_glibc%': 0,
1997 # Set the relative path from this file to the GYP file of the JPEG
1998 # library used by Chromium.
1999 ['use_system_libjpeg==1 or use_libjpeg_turbo==0', {
2000 # Configuration for using the system libjeg is here.
2001 'libjpeg_gyp_path': '<(libjpeg_ijg_gyp_path)',
2003 'libjpeg_gyp_path': '<(libjpeg_turbo_gyp_path)',
2006 # Options controlling the use of GConf (the classic GNOME configuration
2007 # system) and GIO, which contains GSettings (the new GNOME config system).
2008 ['chromeos==1 or embedded==1', {
2016 # Set up -D and -E flags passed into grit.
2017 ['branding=="Chrome"', {
2018 # TODO(mmoss) The .grd files look for _google_chrome, but for
2019 # consistency they should look for google_chrome_build like C++.
2020 'grit_defines': ['-D', '_google_chrome',
2021 '-E', 'CHROMIUM_BUILD=google_chrome'],
2023 'grit_defines': ['-D', '_chromium',
2024 '-E', 'CHROMIUM_BUILD=chromium'],
2027 'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'],
2029 ['desktop_linux==1', {
2030 'grit_defines': ['-D', 'desktop_linux'],
2032 ['toolkit_views==1', {
2033 'grit_defines': ['-D', 'toolkit_views'],
2036 'grit_defines': ['-D', 'use_aura'],
2039 'grit_defines': ['-D', 'use_ash'],
2041 ['use_nss_certs==1', {
2042 'grit_defines': ['-D', 'use_nss_certs'],
2045 'grit_defines': ['-D', 'use_ozone'],
2047 ['image_loader_extension==1', {
2048 'grit_defines': ['-D', 'image_loader_extension'],
2051 'grit_defines': ['-D', 'remoting'],
2053 ['use_titlecase_in_grd==1', {
2054 'grit_defines': ['-D', 'use_titlecase'],
2056 ['use_third_party_translations==1', {
2057 'grit_defines': ['-D', 'use_third_party_translations'],
2059 'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia',
2060 'ka', 'ku', 'kw', 'ms', 'ug'
2066 '-E', 'ANDROID_JAVA_TAGGED_ONLY=true',
2067 '--no-output-all-resource-defines',
2070 ['OS=="mac" or OS=="ios"', {
2071 'grit_defines': ['-D', 'scale_factors=2x'],
2075 'enable_coverage%': 0,
2079 '--no-output-all-resource-defines',
2081 # iOS uses a whitelist to filter resources.
2082 'grit_whitelist%': '<(DEPTH)/build/ios/grit_whitelist.txt',
2084 # Enable host builds when generating with ninja-ios.
2086 ['"<(GENERATOR)"=="ninja"', {
2090 # Use the version of clang shipped with Xcode when building official
2091 # version of Chrome for iOS.
2093 # TODO(eugenebut): Remove enable_coverage check once
2094 # libclang_rt.profile_ios.a is bundled with Chromium's clang.
2095 # http://crbug.com/450379
2096 ['buildtype=="Official" or enable_coverage', {
2101 ['enable_extensions==1', {
2102 'grit_defines': ['-D', 'enable_extensions'],
2104 ['enable_plugins!=0', {
2105 'grit_defines': ['-D', 'enable_plugins'],
2107 ['enable_basic_printing==1 or enable_print_preview==1', {
2108 'grit_defines': ['-D', 'enable_printing'],
2110 ['enable_print_preview==1', {
2111 'grit_defines': ['-D', 'enable_print_preview'],
2113 ['enable_themes==1', {
2114 'grit_defines': ['-D', 'enable_themes'],
2116 ['enable_app_list==1', {
2117 'grit_defines': ['-D', 'enable_app_list'],
2119 ['enable_settings_app==1', {
2120 'grit_defines': ['-D', 'enable_settings_app'],
2122 ['enable_google_now==1', {
2123 'grit_defines': ['-D', 'enable_google_now'],
2125 ['use_concatenated_impulse_responses==1', {
2126 'grit_defines': ['-D', 'use_concatenated_impulse_responses'],
2128 ['enable_media_router==1', {
2129 'grit_defines': ['-D', 'enable_media_router'],
2131 ['enable_webrtc==1', {
2132 'grit_defines': ['-D', 'enable_webrtc'],
2134 ['enable_hangout_services_extension==1', {
2135 'grit_defines': ['-D', 'enable_hangout_services_extension'],
2137 ['enable_task_manager==1', {
2138 'grit_defines': ['-D', 'enable_task_manager'],
2140 ['notifications==1', {
2141 'grit_defines': ['-D', 'enable_notifications'],
2143 ['enable_wifi_bootstrapping==1', {
2144 'grit_defines': ['-D', 'enable_wifi_bootstrapping'],
2146 ['mac_views_browser==1', {
2147 'grit_defines': ['-D', 'mac_views_browser'],
2149 ['enable_resource_whitelist_generation==1 and OS!="win"', {
2150 'grit_rc_header_format': ['-h', '#define {textual_id} _Pragma("whitelisted_resource_{numeric_id}") {numeric_id}'],
2152 ['enable_resource_whitelist_generation==1 and OS=="win"', {
2153 'grit_rc_header_format': ['-h', '#define {textual_id} __pragma(message("whitelisted_resource_{numeric_id}")) {numeric_id}'],
2155 ['enable_mdns==1 or OS=="mac"', {
2156 'grit_defines': ['-D', 'enable_service_discovery'],
2157 'enable_service_discovery%': 1
2159 ['clang_use_chrome_plugins==1', {
2165 ['OS=="mac" or OS=="ios"', {
2166 'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.dylib',
2167 }, { # OS != "mac" or OS != "ios"
2168 'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.so',
2172 'clang_dynlib_flags%': '-Xclang -load -Xclang <(clang_lib_path) ',
2174 # On Windows, the plugin is built directly into clang, so there's
2175 # no need to load it dynamically.
2176 'clang_dynlib_flags%': '',
2178 # https://crbug.com/441916
2179 ['OS=="android" or OS=="linux" or OS=="mac"', {
2180 'clang_plugin_args%': '-Xclang -plugin-arg-find-bad-constructs -Xclang check-templates ',
2181 }, { # OS != "linux"
2182 'clang_plugin_args%': ''
2186 # If you change these, also change build/config/clang/BUILD.gn.
2187 'clang_chrome_plugins_flags%':
2188 '<(clang_dynlib_flags)'
2189 '-Xclang -add-plugin -Xclang find-bad-constructs <(clang_plugin_args)',
2191 ['asan==1 or msan==1 or lsan==1 or tsan==1', {
2193 'use_allocator%': 'none',
2194 'use_sanitizer_options%': 1,
2197 # Allowed level of identical code folding in the gold linker.
2198 ['OS=="linux" and target_arch=="x64"', {
2199 # --icf=safe disables much more folding on x86_64 than elsewhere, see
2200 # http://crbug.com/492177. Turning it on saves over 12 MB of binary
2201 # size, but it seems to regress cold startup time by over a second
2202 # (see http://crbug.com/492809).
2203 # TODO(thakis): Check if disabling ICF would inmprove android cold start
2204 # times by several seconds too.
2205 'gold_icf_level%': 'safe',
2207 'gold_icf_level%': 'all',
2210 ['OS=="linux" and asan==0 and msan==0 and lsan==0 and tsan==0', {
2211 # PNaCl toolchain Non-SFI build only supports linux OS build.
2212 # Also, it does not support sanitizers.
2213 'enable_nacl_nonsfi_test%': 1,
2215 ['asan==1 and OS=="linux" and chromeos==0', {
2216 'use_custom_libcxx%': 1,
2224 ['asan==1 and OS=="mac"', {
2225 'mac_strip_release': 1,
2228 'use_custom_libcxx%': 1,
2231 # Use a just-built, MSan-instrumented libc++ instead of the system-wide
2232 # libstdc++. This is required to avoid false positive reports whenever
2233 # the C++ standard library is used.
2234 'use_custom_libcxx%': 1,
2235 # Running the V8-generated code on an ARM simulator is a powerful hack
2236 # that allows the tool to see the memory accesses from JITted code.
2237 # Without this flag, JS code causes false positive reports from MSan.
2238 'v8_target_arch': 'arm64',
2241 ['OS=="linux" and clang_type_profiler==1', {
2243 'clang_use_chrome_plugins%': 0,
2245 ['host_arch=="x64"', {
2246 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_x64',
2248 ['host_arch=="ia32"', {
2249 # 32-bit Clang is unsupported. It may not build. Put your 32-bit
2250 # Clang in this directory at your own risk if needed for some
2251 # purpose (e.g. to compare 32-bit and 64-bit behavior like memory
2252 # usage). Any failure by this compiler should not close the tree.
2253 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32',
2258 # On valgrind bots, override the optimizer settings so we don't inline too
2259 # much and make the stacks harder to figure out.
2261 # TODO(rnk): Kill off variables that no one else uses and just implement
2262 # them under a build_for_tool== condition.
2263 ['build_for_tool=="memcheck" or build_for_tool=="tsan"', {
2265 'mac_debug_optimization': '1',
2266 'mac_release_optimization': '1',
2267 'release_optimize': '1',
2268 'no_gc_sections': 1,
2269 'debug_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2270 '-fno-builtin -fno-optimize-sibling-calls',
2271 'release_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2272 '-fno-builtin -fno-optimize-sibling-calls',
2274 # MSVS flags for TSan on Pin and Windows.
2275 'win_debug_RuntimeChecks': '0',
2276 'win_debug_disable_iterator_debugging': '1',
2277 'win_debug_Optimization': '1',
2278 'win_debug_InlineFunctionExpansion': '0',
2279 'win_release_InlineFunctionExpansion': '0',
2280 'win_release_OmitFramePointers': '0',
2282 'use_allocator': 'tcmalloc',
2283 'release_valgrind_build': 1,
2285 'component': 'static_library',
2286 'use_system_zlib': 0,
2289 # Build tweaks for DrMemory.
2290 # TODO(rnk): Combine with tsan config to share the builder.
2291 # http://crbug.com/108155
2292 ['build_for_tool=="drmemory"', {
2293 # These runtime checks force initialization of stack vars which blocks
2294 # DrMemory's uninit detection.
2295 'win_debug_RuntimeChecks': '0',
2296 # Iterator debugging is slow.
2297 'win_debug_disable_iterator_debugging': '1',
2298 # Try to disable optimizations that mess up stacks in a release build.
2299 # DrM-i#1054 (https://github.com/DynamoRIO/drmemory/issues/1054)
2300 # /O2 and /Ob0 (disable inline) cannot be used together because of a
2301 # compiler bug, so we use /Ob1 instead.
2302 'win_release_InlineFunctionExpansion': '1',
2303 'win_release_OmitFramePointers': '0',
2304 # Ditto for debug, to support bumping win_debug_Optimization.
2305 'win_debug_InlineFunctionExpansion': 0,
2306 'win_debug_OmitFramePointers': 0,
2307 # Keep the code under #ifndef NVALGRIND.
2308 'release_valgrind_build': 1,
2311 # Enable RLZ on Win, Mac, iOS and ChromeOS.
2312 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos==1)', {
2316 # Set default compiler flags depending on ARM version.
2317 ['arm_version==6', {
2318 'arm_arch%': 'armv6',
2321 'arm_float_abi%': 'softfp',
2324 ['arm_version==7', {
2325 'arm_arch%': 'armv7-a',
2326 'arm_tune%': 'generic-armv7-a',
2331 'arm_fpu%': 'vfpv3-d16',
2334 'arm_float_abi%': 'softfp',
2336 'arm_float_abi%': 'hard',
2342 # Set default compiler flags for MIPS floating-point support.
2343 ['target_arch=="mipsel"', {
2344 'mips_float_abi%': 'hard',
2346 ['target_arch=="mipsel" and mips_arch_variant=="r2"', {
2347 'mips_fpu_mode%': 'fp32',
2350 # Enable brlapi by default for chromeos.
2355 ['use_ozone==1 and ozone_auto_platforms==1', {
2356 # Use test as the default platform.
2357 'ozone_platform%': 'test',
2359 # Build all platforms whose deps are in install-build-deps.sh.
2360 # Only these platforms will be compile tested by buildbots.
2361 'ozone_platform_dri%': 1,
2362 'ozone_platform_drm%': 1,
2363 'ozone_platform_test%': 1,
2364 'ozone_platform_egltest%': 1,
2367 ['desktop_linux==1 and use_aura==1 and use_x11==1', {
2368 'use_clipboard_aurax11%': 1,
2371 ['OS=="win" and use_goma==1', {
2372 # goma doesn't support pch yet.
2373 'chromium_win_pch': 0,
2374 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
2376 ['win_z7==0 and fastbuild==0', {
2382 ['OS=="win" and (clang==1 or asan==1)', {
2383 'chromium_win_pch': 0,
2387 'host_cc': '<(make_clang_dir)/bin/clang',
2388 'host_cxx': '<(make_clang_dir)/bin/clang++',
2390 'host_cc': '<!(which gcc)',
2391 'host_cxx': '<!(which g++)',
2394 # The seccomp-bpf sandbox is only supported on five architectures
2396 # Do not disable seccomp_bpf anywhere without talking to
2397 # security@chromium.org!
2398 ['((OS=="linux" or OS=="android") and '
2399 '(target_arch=="ia32" or target_arch=="x64" or '
2400 'target_arch=="arm" or target_arch=="mipsel" or '
2401 'target_arch=="arm64"))', {
2402 'use_seccomp_bpf%': 1,
2404 'use_seccomp_bpf%': 0,
2411 ['branding=="Chrome" and buildtype=="Official"', {
2412 'enable_hangout_services_extension%': 1,
2414 'enable_hangout_services_extension%': 0,
2418 # The path to the ANGLE library.
2419 'angle_path': '<(DEPTH)/third_party/angle',
2421 # List of default apps to install in new profiles. The first list contains
2422 # the source files as found in svn. The second list, used only for linux,
2423 # contains the destination location for each of the files. When a crx
2424 # is added or removed from the list, the chrome/browser/resources/
2425 # default_apps/external_extensions.json file must also be updated.
2427 # README: GN version of these is in the target //chrome:default_apps
2428 # (there's no global variable like in GYP). Be sure to update that target
2429 # if you change these lists!
2430 'default_apps_list': [
2431 'browser/resources/default_apps/external_extensions.json',
2432 'browser/resources/default_apps/gmail.crx',
2433 'browser/resources/default_apps/search.crx',
2434 'browser/resources/default_apps/youtube.crx',
2435 'browser/resources/default_apps/drive.crx',
2436 'browser/resources/default_apps/docs.crx',
2438 'default_apps_list_linux_dest': [
2439 '<(PRODUCT_DIR)/default_apps/external_extensions.json',
2440 '<(PRODUCT_DIR)/default_apps/gmail.crx',
2441 '<(PRODUCT_DIR)/default_apps/search.crx',
2442 '<(PRODUCT_DIR)/default_apps/youtube.crx',
2443 '<(PRODUCT_DIR)/default_apps/drive.crx',
2444 '<(PRODUCT_DIR)/default_apps/docs.crx',
2447 # Whether to allow building of the GPU-related isolates.
2448 'archive_gpu_tests%': 0,
2450 # Whether to allow building of chromoting related isolates.
2451 'archive_chromoting_tests%': 0,
2453 'target_defaults': {
2455 # The condition that operates on chromium_code is in a target_conditions
2456 # section, and will not have access to the default fallback value of
2457 # chromium_code at the top of this file, or to the chromium_code
2458 # variable placed at the root variables scope of .gyp files, because
2459 # those variables are not set at target scope. As a workaround,
2460 # if chromium_code is not set at target scope, define it in target scope
2461 # to contain whatever value it has during early variable expansion.
2462 # That's enough to make it available during target conditional
2464 'chromium_code%': '<(chromium_code)',
2466 'component%': '<(component)',
2468 'chromecast%': '<(chromecast)',
2470 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx
2471 'win_release_Optimization%': '2', # 2 = /O2
2472 'win_debug_Optimization%': '0', # 0 = /Od
2474 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx
2475 # Tri-state: blank is default, 1 on, 0 off
2476 'win_release_OmitFramePointers%': '0',
2477 # Tri-state: blank is default, 1 on, 0 off
2478 'win_debug_OmitFramePointers%': '',
2480 # See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx
2481 'win_debug_RuntimeChecks%': '3', # 3 = all checks enabled, 0 = off
2483 # See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx
2484 'win_debug_InlineFunctionExpansion%': '', # empty = default, 0 = off,
2485 'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max
2487 # VS inserts quite a lot of extra checks to algorithms like
2488 # std::partial_sort in Debug build which make them O(N^2)
2489 # instead of O(N*logN). This is particularly slow under memory
2490 # tools like ThreadSanitizer so we want it to be disablable.
2491 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2492 'win_debug_disable_iterator_debugging%': '0',
2494 # An application manifest fragment to declare compatibility settings for
2495 # 'executable' targets. Ignored in other target type.
2496 'win_exe_compatibility_manifest%':
2497 '<(DEPTH)\\build\\win\\compatibility.manifest',
2499 'release_extra_cflags%': '',
2500 'debug_extra_cflags%': '',
2502 'release_valgrind_build%': '<(release_valgrind_build)',
2504 # the non-qualified versions are widely assumed to be *nix-only
2505 'win_release_extra_cflags%': '',
2506 'win_debug_extra_cflags%': '',
2508 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
2509 'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)',
2511 # Only used by Windows build for now. Can be used to build into a
2512 # differet output directory, e.g., a build_dir_prefix of VS2010_ would
2513 # output files in src/build/VS2010_{Debug,Release}.
2514 'build_dir_prefix%': '',
2516 # Targets are by default not nacl untrusted code.
2517 'nacl_untrusted_build%': 0,
2519 'pnacl_compile_flags': [
2520 # pnacl uses the clang compiler so we need to suppress all the
2521 # same warnings as we do for clang.
2522 # TODO(sbc): Remove these if/when they are removed from the clang
2524 '-Wno-unused-function',
2525 '-Wno-char-subscripts',
2526 '-Wno-c++11-extensions',
2527 '-Wno-unnamed-type-template-args',
2530 # By default, Android targets have their exported JNI symbols stripped,
2531 # so we test the manual JNI registration code paths that are required
2532 # when using the crazy linker. To allow use of native JNI exports (lazily
2533 # resolved by the JVM), targets can enable this variable, which will stop
2534 # the stripping from happening. Only targets which do not need to be
2535 # compatible with the crazy linker are permitted to set this.
2536 'use_native_jni_exports%': 0,
2539 ['OS=="win" and component=="shared_library"', {
2540 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2541 'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL)
2542 'win_debug_RuntimeLibrary%': '3', # 3 = /MDd (debug DLL)
2544 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2545 'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
2546 'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static)
2549 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2550 'mac_release_optimization%': 's', # Use -Os unless overridden
2551 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2553 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2554 'mac_release_optimization%': '2', # Use -O2 unless overridden
2555 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2558 'host_os%': '<(host_os)', # See comment above chromium_code.
2561 'clang_warning_flags': [
2564 # Don't die on dtoa code that uses a char as an array index.
2565 # This is required solely for base/third_party/dmg_fp/dtoa.cc.
2566 '-Wno-char-subscripts',
2568 # TODO(thakis): This used to be implied by -Wno-unused-function,
2569 # which we no longer use. Check if it makes sense to remove
2570 # this as well. http://crbug.com/316352
2571 '-Wno-unneeded-internal-declaration',
2573 # Warns on switches on enums that cover all enum values but
2574 # also contain a default: branch. Chrome is full of that.
2575 '-Wno-covered-switch-default',
2577 # Warns when a const char[] is converted to bool.
2578 '-Wstring-conversion',
2580 # C++11-related flags:
2582 # This warns on using ints as initializers for floats in
2583 # initializer lists (e.g. |int a = f(); CGSize s = { a, a };|),
2584 # which happens in several places in chrome code. Not sure if
2585 # this is worth fixing.
2586 '-Wno-c++11-narrowing',
2588 # Clang considers the `register` keyword as deprecated, but e.g.
2589 # code generated by flex (used in angle) contains that keyword.
2590 # http://crbug.com/255186
2591 '-Wno-deprecated-register',
2593 # TODO(hans): Get this cleaned up.
2594 '-Wno-inconsistent-missing-override',
2597 'includes': [ 'set_clang_warning_flags.gypi', ],
2599 # Don't use deprecated V8 APIs anywhere.
2600 'V8_DEPRECATION_WARNINGS',
2603 '<(SHARED_INTERMEDIATE_DIR)',
2607 # When compiling Objective C, warns if a method is used whose
2608 # availability is newer than the deployment target.
2609 'xcode_settings': { 'WARNING_CFLAGS': ['-Wpartial-availability']},
2611 ['(OS=="mac" or OS=="ios") and asan==1', {
2613 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
2616 ['OS=="win" and asan==1 and component=="shared_library"', {
2618 '<(DEPTH)/build/win/asan.gyp:asan_dynamic_runtime',
2621 ['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', {
2622 'cflags_cc!': ['-fno-rtti'],
2625 '-gline-tables-only',
2626 '-fintercept-allocation-functions',
2628 'defines': ['TYPE_PROFILING'],
2630 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
2633 ['branding=="Chrome"', {
2634 'defines': ['GOOGLE_CHROME_BUILD'],
2635 }, { # else: branding!="Chrome"
2636 'defines': ['CHROMIUM_BUILD'],
2638 ['OS=="mac" and component=="shared_library"', {
2640 'DYLIB_INSTALL_NAME_BASE': '@rpath',
2641 'LD_RUNPATH_SEARCH_PATHS': [
2642 # For unbundled binaries.
2644 # For bundled binaries, to get back from Binary.app/Contents/MacOS.
2645 '@loader_path/../../..',
2649 ['clang==1 or host_clang==1', {
2650 # This is here so that all files get recompiled after a clang roll and
2651 # when turning clang on or off.
2652 # (defines are passed via the command line, and build systems rebuild
2653 # things when their commandline changes). Nothing should ever read this
2655 'defines': ['CR_CLANG_REVISION=<!(python <(DEPTH)/tools/clang/scripts/update.py --print-revision)'],
2658 'defines': ['ENABLE_RLZ'],
2660 ['component=="shared_library"', {
2661 'defines': ['COMPONENT_BUILD'],
2663 ['toolkit_views==1', {
2664 'defines': ['TOOLKIT_VIEWS=1'],
2666 ['ui_compositor_image_transport==1', {
2667 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'],
2670 'defines': ['USE_AURA=1'],
2673 'defines': ['USE_ASH=1'],
2676 'defines': ['USE_PANGO=1'],
2679 'defines': ['USE_CAIRO=1'],
2682 'defines': ['USE_CRAS=1'],
2685 'defines': ['USE_OZONE=1'],
2687 ['use_default_render_theme==1', {
2688 'defines': ['USE_DEFAULT_RENDER_THEME=1'],
2690 ['use_libjpeg_turbo==1', {
2691 'defines': ['USE_LIBJPEG_TURBO=1'],
2694 'defines': ['USE_X11=1'],
2696 ['use_clipboard_aurax11==1', {
2697 'defines': ['USE_CLIPBOARD_AURAX11=1'],
2699 ['enable_one_click_signin==1', {
2700 'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
2702 ['enable_pre_sync_backup==1', {
2703 'defines': ['ENABLE_PRE_SYNC_BACKUP'],
2705 ['image_loader_extension==1', {
2706 'defines': ['IMAGE_LOADER_EXTENSION=1'],
2709 'defines': ['ENABLE_PROFILING=1'],
2712 'defines': ['ENABLE_REMOTING=1'],
2714 ['enable_webrtc==1', {
2715 'defines': ['ENABLE_WEBRTC=1'],
2717 ['enable_media_router==1', {
2718 'defines': ['ENABLE_MEDIA_ROUTER=1'],
2720 ['proprietary_codecs==1', {
2721 'defines': ['USE_PROPRIETARY_CODECS'],
2723 ['enable_mpeg2ts_stream_parser==1', {
2724 'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
2728 ['enable_viewport==1', {
2729 'defines': ['ENABLE_VIEWPORT'],
2731 ['enable_pepper_cdms==1', {
2732 'defines': ['ENABLE_PEPPER_CDMS'],
2734 ['enable_browser_cdms==1', {
2735 'defines': ['ENABLE_BROWSER_CDMS'],
2737 ['configuration_policy==1', {
2738 'defines': ['ENABLE_CONFIGURATION_POLICY'],
2740 ['notifications==1', {
2741 'defines': ['ENABLE_NOTIFICATIONS'],
2743 ['enable_hidpi==1', {
2744 'defines': ['ENABLE_HIDPI=1'],
2746 ['enable_topchrome_md==1', {
2747 'defines': ['ENABLE_TOPCHROME_MD=1'],
2749 ['native_memory_pressure_signals==1', {
2750 'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'],
2753 'defines': ['USE_UDEV'],
2757 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
2760 ['OS=="win" and fastbuild==2', {
2761 # Completely disable debug information.
2764 'GenerateDebugInformation': 'false',
2766 'VCCLCompilerTool': {
2767 'DebugInformationFormat': '0',
2771 ['OS=="win" and fastbuild==1', {
2774 # This tells the linker to generate .pdbs, so that
2775 # we can get meaningful stack traces.
2776 'GenerateDebugInformation': 'true',
2778 'VCCLCompilerTool': {
2779 # No debug info to be generated by compiler.
2780 'DebugInformationFormat': '0',
2784 ['(OS=="android" or OS=="linux") and fastbuild==2', {
2785 'variables': { 'debug_extra_cflags': '-g0', },
2787 ['(OS=="android" or OS=="linux") and fastbuild==1', {
2788 # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2790 'variables': { 'debug_extra_cflags': '-g0', },
2792 # Android builds symbols on release by default, disable them.
2793 ['OS=="android" and fastbuild==2', {
2794 'variables': { 'release_extra_cflags': '-g0', },
2796 ['OS=="android" and fastbuild==1', {
2797 # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2799 'variables': { 'release_extra_cflags': '-g0', },
2803 ['dont_embed_build_metadata==1', {
2805 'DONT_EMBED_BUILD_METADATA',
2807 }], # dont_embed_build_metadata==1
2808 ['dcheck_always_on!=0', {
2809 'defines': ['DCHECK_ALWAYS_ON=1'],
2810 }], # dcheck_always_on!=0
2811 ['tracing_like_official_build!=0', {
2812 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'],
2813 }], # tracing_like_official_build!=0
2815 'defines': ['NO_TCMALLOC'],
2817 ['win_use_allocator_shim==1', {
2818 'defines': ['ALLOCATOR_SHIM'],
2824 'ADDRESS_SANITIZER',
2825 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2826 'MEMORY_SANITIZER_INITIAL_SIZE',
2830 # SyzyAsan needs /PROFILE turned on to produce appropriate pdbs.
2838 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2839 'MEMORY_SANITIZER_INITIAL_SIZE',
2847 '<(DEPTH)/third_party/kasko/include',
2853 '_CRT_SECURE_NO_DEPRECATE',
2854 '_SCL_SECURE_NO_DEPRECATE',
2855 # This define is required to pull in the new Win8 interfaces from
2856 # system headers like ShObjIdl.h.
2857 'NTDDI_VERSION=0x06030000',
2858 # This is required for ATL to use XP-safe versions of its functions.
2859 '_USING_V110_SDK71_',
2862 '<(DEPTH)/third_party/wtl/include',
2867 # Generates debug info when win_z7=1
2868 # even if fastbuild=1 (that makes GenerateDebugInformation false).
2870 'GenerateDebugInformation': 'true',
2872 'VCCLCompilerTool': {
2873 'DebugInformationFormat': '1',
2879 # This is prohibited when running /analyze.
2880 '_USING_V110_SDK71_',
2883 'VCCLCompilerTool': {
2884 # Set WarnAsError to false to disable this setting for most
2885 # projects so that compilation continues.
2886 'WarnAsError': 'false',
2887 # When win_analyze is specified add the /analyze switch.
2888 # Also add /WX- to force-disable WarnAsError for projects that
2889 # override WarnAsError.
2890 # Also, disable various noisy warnings that have low value.
2891 'AdditionalOptions': [
2894 '/wd6011', # Dereferencing NULL pointer
2895 '/wd6312', # Possible infinite loop: use of the constant
2896 # EXCEPTION_CONTINUE_EXECUTION in the exception-filter
2897 '/wd6326', # Potential comparison of constant with constant
2898 '/wd28159', # Consider using 'GetTickCount64'
2899 '/wd28204', # Inconsistent SAL annotations
2900 '/wd28251', # Inconsistent SAL annotations
2901 '/wd28252', # Inconsistent SAL annotations
2902 '/wd28253', # Inconsistent SAL annotations
2903 '/wd28196', # The precondition is not satisfied
2904 '/wd28301', # Inconsistent SAL annotations
2905 '/wd6340', # Sign mismatch in function parameter
2906 '/wd28182', # Dereferencing NULL pointer
2907 # C6285 is ~16% of raw warnings and has low value
2908 '/wd6285', # non-zero constant || non-zero constant
2909 # C6334 is ~80% of raw warnings and has low value
2910 '/wd6334', # sizeof applied to an expression with an operator
2922 ['use_playready==1', {
2924 'PLAYREADY_CDM_AVAILABLE',
2929 ['enable_task_manager==1', {
2931 'ENABLE_TASK_MANAGER=1',
2934 ['enable_extensions==1', {
2936 'ENABLE_EXTENSIONS=1',
2939 ['OS=="win" and branding=="Chrome"', {
2940 'defines': ['ENABLE_SWIFTSHADER'],
2942 ['enable_dart==1', {
2943 'defines': ['WEBKIT_USING_DART=1'],
2945 ['enable_plugin_installation==1', {
2946 'defines': ['ENABLE_PLUGIN_INSTALLATION=1'],
2948 ['enable_plugins==1', {
2949 'defines': ['ENABLE_PLUGINS=1'],
2951 ['enable_session_service==1', {
2952 'defines': ['ENABLE_SESSION_SERVICE=1'],
2954 ['enable_themes==1', {
2955 'defines': ['ENABLE_THEMES=1'],
2957 ['enable_autofill_dialog==1', {
2958 'defines': ['ENABLE_AUTOFILL_DIALOG=1'],
2960 ['enable_prod_wallet_service==1', {
2961 # In GN, this is set on the autofill tagets only. See
2962 # //components/autofill/core/browser:wallet_service
2963 'defines': ['ENABLE_PROD_WALLET_SERVICE=1'],
2965 ['enable_background==1', {
2966 'defines': ['ENABLE_BACKGROUND=1'],
2968 ['enable_google_now==1', {
2969 'defines': ['ENABLE_GOOGLE_NOW=1'],
2971 ['cld_version!=0', {
2972 'defines': ['CLD_VERSION=<(cld_version)'],
2974 ['enable_basic_printing==1 or enable_print_preview==1', {
2975 # Convenience define for ENABLE_BASIC_PRINTING || ENABLE_PRINT_PREVIEW.
2976 'defines': ['ENABLE_PRINTING=1'],
2978 ['enable_basic_printing==1', {
2979 # Enable basic printing support and UI.
2980 'defines': ['ENABLE_BASIC_PRINTING=1'],
2982 ['enable_print_preview==1', {
2983 # Enable printing with print preview.
2984 # Can be defined without ENABLE_BASIC_PRINTING.
2985 'defines': ['ENABLE_PRINT_PREVIEW=1'],
2987 ['enable_spellcheck==1', {
2988 'defines': ['ENABLE_SPELLCHECK=1'],
2990 ['enable_captive_portal_detection==1', {
2991 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
2993 ['enable_app_list==1', {
2994 'defines': ['ENABLE_APP_LIST=1'],
2996 ['enable_settings_app==1', {
2997 'defines': ['ENABLE_SETTINGS_APP=1'],
2999 ['disable_file_support==1', {
3000 'defines': ['DISABLE_FILE_SUPPORT=1'],
3002 ['disable_ftp_support==1', {
3003 'defines': ['DISABLE_FTP_SUPPORT=1'],
3005 ['enable_supervised_users==1', {
3006 'defines': ['ENABLE_SUPERVISED_USERS=1'],
3008 ['spdy_proxy_auth_property != ""', {
3009 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
3011 ['spdy_proxy_auth_value != ""', {
3012 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'],
3014 ['enable_mdns==1', {
3015 'defines': ['ENABLE_MDNS=1'],
3017 ['enable_service_discovery==1', {
3018 'defines' : [ 'ENABLE_SERVICE_DISCOVERY=1' ],
3020 ['enable_wifi_bootstrapping==1', {
3021 'defines' : [ 'ENABLE_WIFI_BOOTSTRAPPING=1' ],
3023 ['enable_hangout_services_extension==1', {
3024 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'],
3026 ['enable_ipc_fuzzer==1', {
3027 'defines': ['ENABLE_IPC_FUZZER=1'],
3030 'defines': ['VIDEO_HOLE=1'],
3032 ['v8_use_external_startup_data==1', {
3033 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA'],
3036 # SAFE_BROWSING_SERVICE - browser manages a safe-browsing service.
3037 # SAFE_BROWSING_DB_LOCAL - service manages a local database.
3038 # SAFE_BROWSING_DB_REMOTE - service talks via API to a database
3039 # SAFE_BROWSING_CSD - enable client-side phishing detection.
3040 ['safe_browsing==1', {
3042 # TODO(nparker): Remove existing uses of FULL_SAFE_BROWSING
3043 'FULL_SAFE_BROWSING',
3044 'SAFE_BROWSING_CSD',
3045 'SAFE_BROWSING_DB_LOCAL',
3046 'SAFE_BROWSING_SERVICE',
3049 ['safe_browsing==2', {
3051 # TODO(nparker): Remove existing uses of MOBILE_SAFE_BROWSING
3052 'MOBILE_SAFE_BROWSING',
3053 'SAFE_BROWSING_SERVICE',
3056 ['safe_browsing==3', {
3058 # TODO(nparker): Remove existing uses of MOBILE_SAFE_BROWSING
3059 'MOBILE_SAFE_BROWSING',
3060 'SAFE_BROWSING_DB_REMOTE',
3061 'SAFE_BROWSING_SERVICE',
3064 ], # conditions for 'target_defaults'
3065 'target_conditions': [
3066 ['<(use_libpci)==1', {
3067 'defines': ['USE_LIBPCI=1'],
3069 ['<(use_openssl)==1', {
3070 'defines': ['USE_OPENSSL=1'],
3072 ['<(use_openssl_certs)==1', {
3073 'defines': ['USE_OPENSSL_CERTS=1'],
3075 ['>(nacl_untrusted_build)==1', {
3078 'USE_OPENSSL_CERTS=1',
3081 ['<(use_glib)==1 and >(nacl_untrusted_build)==0', {
3082 'defines': ['USE_GLIB=1'],
3084 ['<(use_nss_certs)==1 and >(nacl_untrusted_build)==0', {
3085 'defines': ['USE_NSS_CERTS=1'],
3087 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', {
3088 'defines': ['OS_CHROMEOS=1'],
3090 ['enable_wexit_time_destructors==1 and OS!="win"', {
3091 # TODO: Enable on Windows too, http://crbug.com/404525
3092 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']},
3094 ['chromium_code==0', {
3096 [ 'os_posix==1 and OS!="mac" and OS!="ios"', {
3097 # We don't want to get warnings from third-party code,
3098 # so remove any existing warning-enabling flags like -Wall.
3104 # Don't warn about hash_map in third-party code.
3108 # Don't warn about printf format problems.
3109 # This is off by default in gcc but on in Ubuntu's gcc(!).
3113 # Necessary because llvm.org/PR10448 is WONTFIX (crbug.com/90453).
3117 # TODO: Fix all warnings on chromeos too.
3118 [ 'os_posix==1 and OS!="mac" and OS!="ios" and (clang!=1 or chromeos==1)', {
3123 [ 'os_posix==1 and os_bsd!=1 and OS!="mac" and OS!="android"', {
3125 # Don't warn about ignoring the return value from e.g. close().
3126 # This is off by default in some gccs but on by default in others.
3127 # BSD systems do not support this option, since they are usually
3128 # using gcc 4.2.1, which does not have this flag yet.
3129 '-Wno-unused-result',
3134 '_CRT_SECURE_NO_DEPRECATE',
3135 '_CRT_NONSTDC_NO_WARNINGS',
3136 '_CRT_NONSTDC_NO_DEPRECATE',
3137 '_SCL_SECURE_NO_DEPRECATE',
3139 'msvs_disabled_warnings': [
3143 'VCCLCompilerTool': {
3144 'WarningLevel': '3',
3145 'WarnAsError': 'true',
3146 'Detect64BitPortabilityProblems': 'false',
3150 ['buildtype=="Official"', {
3152 'VCCLCompilerTool': { 'WarnAsError': 'false' },
3155 [ 'component=="shared_library"', {
3156 # TODO(darin): Unfortunately, some third_party code depends on base.
3157 'msvs_disabled_warnings': [
3158 4251, # class 'std::xx' needs to have dll-interface.
3164 [ 'OS=="mac" or OS=="ios"', {
3166 'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
3169 ['buildtype=="Official"', {
3171 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror
3178 # TODO(ios): Fix remaining warnings in third-party code, then
3179 # remove this; the Mac cleanup didn't get everything that's
3180 # flagged in an iOS build.
3181 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',
3182 'RUN_CLANG_STATIC_ANALYZER': 'NO',
3183 # Several internal ios directories generate numerous warnings for
3184 # -Wobjc-missing-property-synthesis.
3185 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
3191 # Rules for excluding e.g. foo_win.cc from the build on non-Windows.
3192 'filename_rules.gypi',
3194 # In Chromium code, we define __STDC_foo_MACROS in order to get the
3195 # C99 macros on Mac and Linux.
3197 '__STDC_CONSTANT_MACROS',
3198 '__STDC_FORMAT_MACROS',
3202 # turn on warnings for signed/unsigned mismatch on chromium code.
3204 'VCCLCompilerTool': {
3205 'AdditionalOptions': ['/we4389'],
3209 ['OS=="win" and component=="shared_library"', {
3210 'msvs_disabled_warnings': [
3211 4251, # class 'std::xx' needs to have dll-interface.
3216 ], # target_conditions for 'target_defaults'
3217 'default_configuration': 'Debug',
3219 # VCLinkerTool LinkIncremental values below:
3221 # 1 == /INCREMENTAL:NO
3223 # Debug links incremental, Release does not.
3225 # Abstract base configurations to cover common attributes.
3229 'msvs_configuration_attributes': {
3230 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(ConfigurationName)',
3231 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
3232 'CharacterSet': '1',
3234 # Add the default import libs.
3237 'AdditionalDependencies': [
3254 'AdditionalOptions': [
3255 # Suggested by Microsoft Devrel to avoid
3256 # LINK : fatal error LNK1248: image size (80000000) exceeds maximum allowable size (80000000)
3257 # which started happening more regularly after VS2013 Update 4.
3258 # Needs to be a bit lower for VS2015, or else errors out.
3259 '/maxilksize:0x7ff00000',
3268 'MinimumRequiredVersion': '5.01', # XP.
3269 'TargetMachine': '1',
3271 'VCLibrarianTool': {
3272 'TargetMachine': '1',
3275 'msvs_configuration_platform': 'Win32',
3279 'msvs_configuration_platform': 'x64',
3282 # Make sure to understand http://crbug.com/361720 if you want to
3284 'MinimumRequiredVersion': '5.02', # Server 2003.
3285 'TargetMachine': '17', # x86 - 64
3286 'AdditionalLibraryDirectories!':
3287 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3288 'AdditionalLibraryDirectories':
3289 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3290 # Doesn't exist x64 SDK. Should use oleaut32 in any case.
3291 'IgnoreDefaultLibraryNames': [ 'olepro32.lib' ],
3293 'VCLibrarianTool': {
3294 'AdditionalLibraryDirectories!':
3295 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3296 'AdditionalLibraryDirectories':
3297 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3298 'TargetMachine': '17', # x64
3305 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3306 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3309 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)',
3311 '<@(debug_extra_cflags)',
3315 'VCCLCompilerTool': {
3316 'Optimization': '<(win_debug_Optimization)',
3317 'PreprocessorDefinitions': ['_DEBUG'],
3318 'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)',
3319 'RuntimeLibrary': '<(win_debug_RuntimeLibrary)',
3321 # According to MSVS, InlineFunctionExpansion=0 means
3322 # "default inlining", not "/Ob0".
3323 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3324 ['win_debug_InlineFunctionExpansion==0', {
3325 'AdditionalOptions': ['/Ob0'],
3327 ['win_debug_InlineFunctionExpansion!=""', {
3328 'InlineFunctionExpansion':
3329 '<(win_debug_InlineFunctionExpansion)',
3331 ['win_debug_disable_iterator_debugging==1', {
3332 'PreprocessorDefinitions': ['_HAS_ITERATOR_DEBUGGING=0'],
3335 # if win_debug_OmitFramePointers is blank, leave as default
3336 ['win_debug_OmitFramePointers==1', {
3337 'OmitFramePointers': 'true',
3339 ['win_debug_OmitFramePointers==0', {
3340 'OmitFramePointers': 'false',
3341 # The above is not sufficient (http://crbug.com/106711): it
3342 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3343 # perform FPO regardless, so we must explicitly disable.
3344 # We still want the false setting above to avoid having
3345 # "/Oy /Oy-" and warnings about overriding.
3346 'AdditionalOptions': ['/Oy-'],
3349 'AdditionalOptions': [ '<@(win_debug_extra_cflags)', ],
3352 'LinkIncremental': '<(msvs_debug_link_incremental)',
3353 # ASLR makes debugging with windbg difficult because Chrome.exe and
3354 # Chrome.dll share the same base name. As result, windbg will
3355 # name the Chrome.dll module like chrome_<base address>, where
3356 # <base address> typically changes with each launch. This in turn
3357 # means that breakpoints in Chrome.dll don't stick from one launch
3358 # to the next. For this reason, we turn ASLR off in debug builds.
3359 # Note that this is a three-way bool, where 0 means to pick up
3360 # the default setting, 1 is off and 2 is on.
3361 'RandomizedBaseAddress': 1,
3363 'VCResourceCompilerTool': {
3364 'PreprocessorDefinitions': ['_DEBUG'],
3368 ['OS=="linux" or OS=="android"', {
3369 'target_conditions': [
3370 ['_toolset=="target"', {
3372 '<@(debug_extra_cflags)',
3377 ['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', {
3378 # Enable libstdc++ debugging facilities to help catch problems
3379 # early, see http://crbug.com/65151 .
3380 # TODO(phajdan.jr): Should we enable this for all of POSIX?
3381 'defines': ['_GLIBCXX_DEBUG=1',],
3383 ['release_valgrind_build==0', {
3386 '-fstack-protector-all', # Implies -fstack-protector
3392 # Allow comparing the address of references and 'this' against 0
3393 # in debug builds. Technically, these can never be null in
3394 # well-defined C/C++ and Clang can optimize such checks away in
3395 # release builds, but they may be used in asserts in debug builds.
3396 '-Wno-undefined-bool-conversion',
3397 '-Wno-tautological-undefined-compare',
3401 '-Wno-undefined-bool-conversion',
3402 '-Wno-tautological-undefined-compare',
3406 'VCCLCompilerTool': {
3407 'AdditionalOptions': [
3408 '-Wno-undefined-bool-conversion',
3409 '-Wno-tautological-undefined-compare',
3422 'DEAD_CODE_STRIPPING': 'YES', # -Wl,-dead_strip
3423 'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)',
3424 'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ],
3427 'VCCLCompilerTool': {
3428 'RuntimeLibrary': '<(win_release_RuntimeLibrary)',
3430 # In official builds, each target will self-select
3431 # an optimization level.
3432 ['buildtype!="Official"', {
3433 'Optimization': '<(win_release_Optimization)',
3436 # According to MSVS, InlineFunctionExpansion=0 means
3437 # "default inlining", not "/Ob0".
3438 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3439 ['win_release_InlineFunctionExpansion==0', {
3440 'AdditionalOptions': ['/Ob0'],
3442 ['win_release_InlineFunctionExpansion!=""', {
3443 'InlineFunctionExpansion':
3444 '<(win_release_InlineFunctionExpansion)',
3447 # if win_release_OmitFramePointers is blank, leave as default
3448 ['win_release_OmitFramePointers==1', {
3449 'OmitFramePointers': 'true',
3451 ['win_release_OmitFramePointers==0', {
3452 'OmitFramePointers': 'false',
3453 # The above is not sufficient (http://crbug.com/106711): it
3454 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3455 # perform FPO regardless, so we must explicitly disable.
3456 # We still want the false setting above to avoid having
3457 # "/Oy /Oy-" and warnings about overriding.
3458 'AdditionalOptions': ['/Oy-'],
3461 # Put data in separate COMDATs. This allows the linker
3462 # to put bit-identical constants at the same address even if
3463 # they're unrelated constants, which saves binary size.
3464 # This optimization can't be used when ASan is enabled because
3465 # it is not compatible with the ASan ODR checker.
3466 'AdditionalOptions': ['/Gw'],
3469 'AdditionalOptions': [
3470 '/d2Zi+', # Improve debugging of Release builds.
3471 '/Zc:inline', # Remove unreferenced COMDAT (faster links).
3472 '<@(win_release_extra_cflags)',
3476 # LinkIncremental is a tri-state boolean, where 0 means default
3477 # (i.e., inherit from parent solution), 1 means false, and
3479 'LinkIncremental': '1',
3480 # This corresponds to the /PROFILE flag which ensures the PDB
3481 # file contains FIXUP information (growing the PDB file by about
3482 # 5%) but does not otherwise alter the output binary. This
3483 # information is used by the Syzygy optimization tool when
3484 # decomposing the release image.
3489 ['msvs_use_common_release', {
3490 'includes': ['release.gypi'],
3492 ['release_valgrind_build==0 and tsan==0', {
3495 'DYNAMIC_ANNOTATIONS_ENABLED=0',
3499 'MEMORY_TOOL_REPLACES_ALLOCATOR',
3500 'MEMORY_SANITIZER_INITIAL_SIZE',
3501 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3502 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3506 'defines': ['NO_TCMALLOC'],
3508 # _FORTIFY_SOURCE isn't really supported by Clang now, see
3509 # http://llvm.org/bugs/show_bug.cgi?id=16821.
3510 # It seems to work fine with Ubuntu 12 headers though, so use it
3511 # in official builds.
3512 ['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")', {
3513 'target_conditions': [
3514 ['chromium_code==1', {
3515 # Non-chromium code is not guaranteed to compile cleanly
3516 # with _FORTIFY_SOURCE. Also, fortified build may fail
3517 # when optimizations are disabled, so only do that for Release
3520 '_FORTIFY_SOURCE=2',
3525 ['OS=="linux" or OS=="android"', {
3526 'target_conditions': [
3527 ['_toolset=="target"', {
3529 '<@(release_extra_cflags)',
3532 ['enable_resource_whitelist_generation==1', {
3534 '-Wunknown-pragmas -Wno-error=unknown-pragmas',
3543 'NS_BLOCK_ASSERTIONS=1',
3549 # Concrete configurations
3552 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'],
3555 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3560 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3561 'target_conditions': [
3562 [ '_type=="executable"', {
3563 # To get a real .dSYM bundle produced by dsymutil, set the
3564 # debug information format to dwarf-with-dsym. Since
3565 # strip_from_xcode will not be used, set Xcode to do the
3566 # stripping as well.
3568 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
3569 'DEPLOYMENT_POSTPROCESSING': 'YES',
3570 'STRIP_INSTALLED_PRODUCT': 'YES',
3577 # TODO(bradnelson): add a gyp mechanism to make this more graceful.
3579 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'],
3582 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'],
3590 'target_defaults': {
3595 # TODO(glider): enable the default options on other systems.
3597 ['use_sanitizer_options==1 and ((OS=="linux" and (chromeos==0 or target_arch!="ia32")) or OS=="mac")', {
3599 '<(DEPTH)/build/sanitizers/sanitizers.gyp:sanitizer_options',
3605 # TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580
3606 ['os_posix==1 and disable_fatal_linker_warnings==0 and use_evdev_gestures==0 and (chromeos==0 or target_arch!="arm")', {
3607 'target_defaults': {
3609 '-Wl,--fatal-warnings',
3613 # -Wl,-z,-defs doesn't work with the sanitiziers, http://crbug.com/452065
3614 ['(OS=="linux" or OS=="android") and asan==0 and msan==0 and tsan==0 and ubsan==0 and ubsan_vptr==0', {
3615 'target_defaults': {
3621 ['os_posix==1 and chromeos==0', {
3622 # Chrome OS enables -fstack-protector-strong via its build wrapper,
3623 # and we want to avoid overriding this, so stack-protector is only
3624 # enabled when not building on Chrome OS.
3625 # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc
3627 'target_defaults': {
3629 '-fstack-protector',
3630 '--param=ssp-buffer-size=4',
3634 ['os_posix==1 and OS=="linux"', {
3636 '_LARGEFILE_SOURCE',
3637 '_LARGEFILE64_SOURCE',
3638 '_FILE_OFFSET_BITS=64',
3641 ['os_posix==1 and OS!="mac" and OS!="ios"', {
3642 'target_defaults': {
3643 # Enable -Werror by default, but put it in a variable so it can
3644 # be disabled in ~/.gyp/include.gypi on the valgrind builders.
3646 'werror%': '-Werror',
3647 'libraries_for_target%': '',
3650 '_FILE_OFFSET_BITS=64',
3653 '<(werror)', # See note above about the werror variable.
3655 '-fno-strict-aliasing', # See http://crbug.com/32204
3657 # Don't warn about unused function params. We use those everywhere.
3658 '-Wno-unused-parameter',
3659 # Don't warn about the "struct foo f = {0};" initialization pattern.
3660 '-Wno-missing-field-initializers',
3661 # Don't export any symbols (for example, to plugins we dlopen()).
3662 # Note: this is *required* to make some plugins work.
3663 '-fvisibility=hidden',
3669 '-fno-threadsafe-statics',
3670 # Make inline functions have hidden visiblity by default.
3671 # Surprisingly, not covered by -fvisibility=hidden.
3672 '-fvisibility-inlines-hidden',
3673 # GCC turns on -Wsign-compare for C++ under -Wall, but clang doesn't,
3674 # so we specify it explicitly. (llvm.org/PR10448, crbug.com/90453)
3678 '-pthread', '-Wl,-z,noexecstack',
3681 '<(libraries_for_target)',
3686 'debug_optimize%': '0',
3692 '-O>(debug_optimize)',
3697 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3698 # TODO(jdduke) Re-enable on mips after resolving linking
3699 # issues with libc++ (crbug.com/456380).
3701 # Warn in case of text relocations.
3702 '-Wl,--warn-shared-textrel',
3705 ['OS=="android" and android_full_debug==0', {
3706 # Some configurations are copied from Release_Base to reduce
3709 'debug_optimize%': 's',
3713 '-ffunction-sections',
3720 ['OS=="android" and android_full_debug==0 and target_arch!="arm64"', {
3721 # We don't omit frame pointers on arm64 since they are required
3722 # to correctly unwind stackframes which contain system library
3723 # function frames (crbug.com/391706).
3725 '-fomit-frame-pointer',
3728 ['OS=="linux" and target_arch=="ia32"', {
3730 '-Wl,--no-as-needed',
3733 ['debug_unwind_tables==1', {
3734 'cflags': ['-funwind-tables'],
3736 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3737 'defines': ['NO_UNWIND_TABLES'],
3739 # TODO(mostynb): shuffle clang/gcc_version/binutils_version
3740 # definitions in to the right scope to use them when setting
3741 # linux_use_debug_fission, so it can be used here alone.
3742 ['linux_use_debug_fission==1 and linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
3743 'cflags': ['-gsplit-dwarf'],
3749 'release_optimize%': '2',
3750 # Binaries become big and gold is unable to perform GC
3751 # and remove unused sections for some of test targets
3752 # on 32 bit platform.
3753 # (This is currently observed only in chromeos valgrind bots)
3754 # The following flag is to disable --gc-sections linker
3755 # option for these bots.
3756 'no_gc_sections%': 0,
3758 # TODO(bradnelson): reexamine how this is done if we change the
3759 # expansion of configurations
3760 'release_valgrind_build%': 0,
3763 '-O<(release_optimize)',
3764 # Don't emit the GCC version ident directives, they just end up
3765 # in the .comment section taking up binary size.
3767 # Put data and code in their own sections, so that unused symbols
3768 # can be removed at link time with --gc-sections.
3770 '-ffunction-sections',
3773 # Specifically tell the linker to perform optimizations.
3774 # See http://lwn.net/Articles/192624/ .
3779 ['no_gc_sections==0', {
3781 '-Wl,--gc-sections',
3784 ['OS=="android" and target_arch!="arm64"', {
3785 # We don't omit frame pointers on arm64 since they are required
3786 # to correctly unwind stackframes which contain system library
3787 # function frames (crbug.com/391706).
3789 '-fomit-frame-pointer',
3792 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3793 # TODO(jdduke) Re-enable on mips after resolving linking
3794 # issues with libc++ (crbug.com/456380).
3796 # Warn in case of text relocations.
3797 '-Wl,--warn-shared-textrel',
3802 'release_optimize%': 's',
3807 '-fno-omit-frame-pointer',
3811 ['profiling_full_stack_frames==1', {
3814 '-fno-optimize-sibling-calls',
3819 ['release_unwind_tables==1', {
3820 'cflags': ['-funwind-tables'],
3822 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3823 'defines': ['NO_UNWIND_TABLES'],
3826 # Non-unique section names appears to make linker dead stripping
3827 # less effective. See http://crbug.com/483026#c20
3828 # TODO(hans): Remove this if resolved upstream.
3830 '-funique-section-names',
3837 ['target_arch=="ia32"', {
3838 'target_conditions': [
3839 ['_toolset=="target"', {
3841 # Needed so that libs with .s files (e.g. libicudata.a)
3842 # are compatible with the general 32-bit-ness.
3845 # All floating-point computations on x87 happens in 80-bit
3846 # precision. Because the C and C++ language standards allow
3847 # the compiler to keep the floating-point values in higher
3848 # precision than what's specified in the source and doing so
3849 # is more efficient than constantly rounding up to 64-bit or
3850 # 32-bit precision as specified in the source, the compiler,
3851 # especially in the optimized mode, tries very hard to keep
3852 # values in x87 floating-point stack (in 80-bit precision)
3853 # as long as possible. This has important side effects, that
3854 # the real value used in computation may change depending on
3855 # how the compiler did the optimization - that is, the value
3856 # kept in 80-bit is different than the value rounded down to
3857 # 64-bit or 32-bit. There are possible compiler options to
3858 # make this behavior consistent (e.g. -ffloat-store would keep
3859 # all floating-values in the memory, thus force them to be
3860 # rounded to its original precision) but they have significant
3861 # runtime performance penalty.
3863 # -mfpmath=sse -msse2 makes the compiler use SSE instructions
3864 # which keep floating-point values in SSE registers in its
3865 # native precision (32-bit for single precision, and 64-bit
3866 # for double precision values). This means the floating-point
3867 # value used during computation does not change depending on
3868 # how the compiler optimized the code, since the value is
3869 # always kept in its specified precision.
3871 # Refer to http://crbug.com/348761 for rationale behind SSE2
3872 # being a minimum requirement for 32-bit Linux builds and
3873 # http://crbug.com/313032 for an example where this has "bit"
3878 '-mmmx', # Allows mmintrin.h for MMX intrinsics.
3885 # Use gold linker for Android ia32 target.
3891 # Install packages have started cropping up with
3892 # different headers between the 32-bit and 64-bit
3893 # versions, so we have to shadow those differences off
3894 # and make sure a 32-bit-on-64-bit build picks up the
3896 # For android build, use NDK headers instead of host headers
3897 ['host_arch!="ia32" and OS!="android"', {
3906 ['target_arch=="x64"', {
3907 'target_conditions': [
3908 ['_toolset=="target"', {
3910 # Use gold linker for Android x64 target.
3927 ['target_arch=="arm"', {
3928 'target_conditions': [
3929 ['_toolset=="target"', {
3933 # The codesourcery arm-2009q3 toolchain warns at that the ABI
3934 # has changed whenever it encounters a varargs function. This
3935 # silences those warnings, as they are not helpful and
3936 # clutter legitimate warnings.
3940 ['clang==1 and arm_arch!="" and OS!="android"', {
3942 '-target arm-linux-gnueabihf',
3945 '-target arm-linux-gnueabihf',
3950 '-march=<(arm_arch)',
3953 ['use_lto==1 or use_lto_o2==1', {
3955 '-march=<(arm_arch)',
3960 ['clang==1 and OS!="android"', {
3962 # We need to disable clang's builtin assembler as it can't
3963 # handle several asm files, crbug.com/124610
3964 '-no-integrated-as',
3969 '-mtune=<(arm_tune)',
3972 ['use_lto==1 or use_lto_o2==1', {
3974 '-mtune=<(arm_tune)',
3984 ['use_lto==1 or use_lto_o2==1', {
3991 ['arm_float_abi!=""', {
3993 '-mfloat-abi=<(arm_float_abi)',
3996 ['use_lto==1 or use_lto_o2==1', {
3998 '-mfloat-abi=<(arm_float_abi)',
4008 ['use_lto==1 or use_lto_o2==1', {
4016 # Most of the following flags are derived from what Android
4017 # uses by default when building for arm, reference for which
4018 # can be found in the following file in the Android NDK:
4019 # toolchains/arm-linux-androideabi-4.9/setup.mk
4021 # The tree-sra optimization (scalar replacement for
4022 # aggregates enabling subsequent optimizations) leads to
4023 # invalid code generation when using the Android NDK's
4024 # compiler (r5-r7). This can be verified using
4025 # webkit_unit_tests' WTF.Checked_int8_t test.
4027 # The following option is disabled to improve binary
4028 # size and performance in gcc 4.9.
4029 '-fno-caller-saves',
4032 # Android now supports .relro sections properly.
4033 # NOTE: While these flags enable the generation of .relro
4034 # sections, the generated libraries can still be loaded on
4035 # older Android platform versions.
4042 ['gcc_version==48 and clang==0', {
4044 # The following 5 options are disabled to save on
4045 # binary size in GCC 4.8.
4046 '-fno-partial-inlining',
4047 '-fno-early-inlining',
4048 '-fno-tree-copy-prop',
4049 '-fno-tree-loop-optimize',
4050 '-fno-move-loop-invariants',
4054 'cflags': [ '-mthumb-interwork' ],
4058 # Thumb code with frame pointer makes chrome crash
4061 '-mapcs-frame', # Required by -fno-omit-frame-pointer.
4062 # The perf report sometimes incorrectly attributes
4063 # code from tail calls.
4064 '-fno-optimize-sibling-calls',
4067 '-fomit-frame-pointer',
4072 # Clang does not support the following options.
4074 '-mthumb-interwork',
4075 '-finline-limit=64',
4077 '-fno-caller-saves',
4081 # TODO(hans) Enable integrated-as (crbug.com/124610).
4082 '-no-integrated-as',
4083 '-B<(android_toolchain)', # Else /usr/bin/as gets picked up.
4086 ['clang==1 and linux_use_bundled_gold==0', {
4088 # Let clang find the ld.gold in the NDK.
4089 '--gcc-toolchain=<(android_toolchain)/..',
4094 '-marm', # Required for frame pointer based stack traces.
4101 # We set arm_arch to "" so that -march compiler option
4102 # is not set. Otherwise a gcc bug that would complain
4103 # about it conflicting with '-mcpu=cortex-a9'. The flag
4104 # '-march=armv7-a' is actually redundant anyway because
4105 # it is enabled by default when we built the toolchain.
4106 # And using '-mcpu=cortex-a9' should be sufficient.
4109 # Breakpad requires symbols with debugging information
4113 # We want to statically link libstdc++/libgcc_s.
4114 '-static-libstdc++',
4118 # Some components in Chromium (e.g. v8, skia, ffmpeg)
4119 # define their own cflags for arm builds that could
4120 # conflict with the flags we set here (e.g.
4121 # '-mcpu=cortex-a9'). Remove these flags explicitly.
4130 ['target_arch=="arm64"', {
4131 'target_conditions': [
4132 ['_toolset=="target"', {
4136 '-fstack-protector', # stack protector is always enabled on arm64.
4143 ['target_arch=="mipsel"', {
4144 'target_conditions': [
4145 ['_toolset=="target"', {
4147 ['mips_arch_variant=="r6"', {
4150 'cflags': [ '-target mipsel-linux-gnu', '-march=mips32r6', ],
4151 'ldflags': [ '-target mipsel-linux-gnu', ],
4153 'cflags': ['-mips32r6', '-Wa,-mips32r6', ],
4155 ['clang==0 and OS=="android"', {
4156 'ldflags': ['-mips32r6', '-Wl,-melf32ltsmip',],
4160 ['mips_arch_variant=="r2"', {
4162 ['mips_float_abi=="hard" and mips_fpu_mode!=""', {
4163 'cflags': ['-m<(mips_fpu_mode)'],
4168 'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32r2'],
4169 'ldflags': [ '-target mipsel-linux-android', ],
4173 'cflags': ['-mips32r2', '-Wa,-mips32r2', ],
4177 ['mips_arch_variant=="r1"', {
4182 'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32'],
4183 'ldflags': [ '-target mipsel-linux-android', ],
4187 'cflags': ['-mips32', '-Wa,-mips32', ],
4193 # Clang does not support the following options.
4194 '-finline-limit=64',
4197 # TODO(gordanac) Enable integrated-as.
4198 '-no-integrated-as',
4199 '-B<(android_toolchain)', # Else /usr/bin/as gets picked up.
4202 # Let clang find the ld in the NDK.
4203 '--gcc-toolchain=<(android_toolchain)/..',
4206 ['mips_dsp_rev==1', {
4207 'cflags': ['-mdsp'],
4209 ['mips_dsp_rev==2', {
4210 'cflags': ['-mdspr2'],
4214 '-m<(mips_float_abi)-float'
4217 '-Wl,--no-keep-memory'
4220 '-Wno-uninitialized',
4225 ['target_arch=="mips64el"', {
4226 'target_conditions': [
4227 ['_toolset=="target"', {
4229 ['mips_arch_variant=="r6"', {
4230 'cflags': ['-mips64r6', '-Wa,-mips64r6'],
4231 'ldflags': ['-mips64r6'],
4233 ['mips_arch_variant=="r2"', {
4234 'cflags': ['-mips64r2', '-Wa,-mips64r2'],
4235 'ldflags': ['-mips64r2'],
4239 '-Wno-uninitialized',
4253 'target_conditions': [
4254 ['_toolset=="target"', {
4256 '--sysroot=<(sysroot)',
4259 '--sysroot=<(sysroot)',
4260 '<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))',
4266 # TODO(thakis): Remove, http://crbug.com/263960
4267 '-Wno-reserved-user-defined-literal',
4270 # gnu++11 instead of c++11 is needed because some code uses
4271 # typeof() (a GNU extension).
4272 # TODO(thakis): Eventually switch this to c++11 instead,
4273 # http://crbug.com/427584
4277 ['clang==0 and host_clang==1', {
4278 'target_conditions': [
4279 ['_toolset=="host"', {
4280 'cflags_cc': [ '-std=gnu++11', ],
4284 ['clang==1 and clang_use_chrome_plugins==1', {
4286 '<@(clang_chrome_plugins_flags)',
4289 ['clang==1 and clang_load!=""', {
4291 '-Xclang', '-load', '-Xclang', '<(clang_load)',
4294 ['clang==1 and clang_add_plugin!=""', {
4296 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
4299 ['clang==1 and target_arch=="ia32"', {
4301 # Else building libyuv gives clang's register allocator issues,
4302 # see llvm.org/PR15798 / crbug.com/233709
4303 '-momit-leaf-frame-pointer',
4304 # Align the stack on 16-byte boundaries, http://crbug.com/418554.
4305 '-mstack-alignment=16',
4309 ['clang==1 and "<(GENERATOR)"=="ninja"', {
4311 # See http://crbug.com/110262
4312 '-fcolor-diagnostics',
4315 # Common options for AddressSanitizer, LeakSanitizer,
4316 # ThreadSanitizer and MemorySanitizer.
4317 ['asan==1 or lsan==1 or tsan==1 or msan==1 or ubsan==1 or ubsan_vptr==1', {
4318 'target_conditions': [
4319 ['_toolset=="target"', {
4321 '-fno-omit-frame-pointer',
4322 '-gline-tables-only',
4325 '-fomit-frame-pointer',
4330 ['asan==1 or lsan==1 or tsan==1 or msan==1', {
4331 'target_conditions': [
4332 ['_toolset=="target"', {
4334 # Functions interposed by the sanitizers can make ld think
4335 # that some libraries aren't needed when they actually are,
4336 # http://crbug.com/234010. As workaround, disable --as-needed.
4340 'MEMORY_TOOL_REPLACES_ALLOCATOR',
4341 'MEMORY_SANITIZER_INITIAL_SIZE',
4347 'target_conditions': [
4348 ['_toolset=="target"', {
4350 '-fsanitize=address',
4351 # TODO(earthdok): Re-enable. http://crbug.com/427202
4352 #'-fsanitize-blacklist=<(asan_blacklist)',
4355 '-fsanitize=address',
4362 '-mllvm -asan-globals=0', # http://crbug.com/352073
4368 'target_conditions': [
4369 ['_toolset=="target"', {
4371 # FIXME: work on enabling more flags and getting rid of false
4372 # positives. http://crbug.com/174801.
4373 '-fsanitize=bounds',
4374 '-fsanitize=float-divide-by-zero',
4375 '-fsanitize=integer-divide-by-zero',
4377 '-fsanitize=object-size',
4378 '-fsanitize=return',
4379 '-fsanitize=returns-nonnull-attribute',
4380 '-fsanitize=shift-exponent',
4381 '-fsanitize=signed-integer-overflow',
4382 '-fsanitize=unreachable',
4383 '-fsanitize=vla-bound',
4384 '-fsanitize-blacklist=<(ubsan_blacklist)',
4385 # Employ the experimental PBQP register allocator to avoid
4386 # slow compilation on files with too many basic blocks.
4387 # See http://crbug.com/426271.
4388 '-mllvm -regalloc=pbqp',
4389 # Speculatively use coalescing to slightly improve the code
4390 # generated by PBQP regallocator. May increase compile time.
4391 '-mllvm -pbqp-coalescing',
4400 '-fsanitize=undefined',
4403 'UNDEFINED_SANITIZER',
4409 'target_conditions': [
4410 ['_toolset=="target"', {
4413 '-fsanitize-blacklist=<(ubsan_vptr_blacklist)',
4425 'UNDEFINED_SANITIZER',
4430 ['asan_coverage!=0 and sanitizer_coverage==0', {
4431 'target_conditions': [
4432 ['_toolset=="target"', {
4434 '-fsanitize-coverage=<(asan_coverage)',
4437 'SANITIZER_COVERAGE',
4442 ['sanitizer_coverage!=0', {
4443 'target_conditions': [
4444 ['_toolset=="target"', {
4446 '-fsanitize-coverage=<(sanitizer_coverage)',
4449 'SANITIZER_COVERAGE',
4454 ['asan_field_padding!=0', {
4455 'target_conditions': [
4456 ['_toolset=="target"', {
4458 '-fsanitize-address-field-padding=<(asan_field_padding)',
4464 'target_conditions': [
4465 ['_toolset=="target"', {
4474 'WTF_USE_LEAK_SANITIZER=1',
4480 'target_conditions': [
4481 ['_toolset=="target"', {
4483 '-fsanitize=thread',
4484 '-fsanitize-blacklist=<(tsan_blacklist)',
4487 '-fsanitize=thread',
4491 'DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1',
4492 'WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1',
4498 'target_conditions': [
4499 ['_toolset=="target"', {
4501 '-fsanitize=memory',
4502 '-fsanitize-memory-track-origins=<(msan_track_origins)',
4503 '-fsanitize-blacklist=<(msan_blacklist)',
4506 '-fsanitize=memory',
4514 ['use_instrumented_libraries==1', {
4516 '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:instrumented_libraries',
4519 ['use_prebuilt_instrumented_libraries==1', {
4521 '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:prebuilt_instrumented_libraries',
4524 ['use_custom_libcxx==1', {
4526 '<(DEPTH)/buildtools/third_party/libc++/libc++.gyp:libcxx_proxy',
4529 ['order_profiling!=0 and (chromeos==1 or OS=="linux" or OS=="android")', {
4530 'target_conditions' : [
4531 # crazy_linker has an upstream gyp file we can't edit, and we
4532 # don't want to instrument it.
4533 ['_toolset=="target" and _target_name!="crazy_linker"', {
4535 '-finstrument-functions',
4536 # Allow mmx intrinsics to inline, so that the
4537 #0 compiler can expand the intrinsics.
4538 '-finstrument-functions-exclude-file-list=mmintrin.h',
4541 ['_toolset=="target" and OS=="android"', {
4543 # Avoids errors with current NDK:
4544 # "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"
4545 '-finstrument-functions-exclude-file-list=arm_neon.h,SaturatedArithmeticARM.h',
4550 ['linux_dump_symbols==1', {
4553 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0', {
4554 'target_conditions': [
4555 ['_toolset=="target"', {
4557 # Attempt to use less memory to prevent the linker from
4558 # running out of address space. Considering installing a
4559 # 64-bit kernel and switching to a 64-bit linker.
4560 '-Wl,--no-keep-memory',
4567 ['use_allocator!="tcmalloc"', {
4568 'defines': ['NO_TCMALLOC'],
4570 ['linux_use_gold_flags==1', {
4571 # Newer gccs and clangs support -fuse-ld, use the flag to force gold
4573 # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
4574 'ldflags': [ '-fuse-ld=gold', ],
4576 'target_conditions': [
4577 ['_toolset=="target"', {
4579 # Experimentation found that using four linking threads
4580 # saved ~20% of link time.
4581 # https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/281527606915bb36
4582 # Only apply this to the target linker, since the host
4583 # linker might not be gold, but isn't used much anyway.
4584 # TODO(raymes): Disable threading because gold is frequently
4585 # crashing on the bots: crbug.com/161942.
4587 # '-Wl,--thread-count=4',
4590 # TODO(thestig): Enable this for disabled cases.
4591 [ 'buildtype!="Official" and chromeos==0 and release_valgrind_build==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', {
4593 '-Wl,--detect-odr-violations',
4600 ['release_valgrind_build==0 and order_profiling==0 and asan==0 and msan==0 and lsan==0 and tsan==0', {
4601 'target_conditions': [
4602 ['_toolset=="target"', {
4604 '-Wl,--icf=<(gold_icf_level)',
4611 ['linux_use_bundled_binutils==1', {
4613 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4616 ['linux_use_bundled_gold==1 and '
4617 'not (clang==0 and (use_lto==1 or use_lto_o2==1))', {
4618 # Put our binutils, which contains gold in the search path. We pass
4619 # the path to gold to the compiler. gyp leaves unspecified what the
4620 # cwd is when running the compiler, so the normal gyp path-munging
4621 # fails us. This hack gets the right path.
4623 # Disabled when using GCC LTO because GCC also uses the -B search
4624 # path at link time to find "as", and our bundled "as" can only
4627 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4630 # Some binutils 2.23 releases may or may not have new dtags enabled,
4631 # but they are all compatible with --disable-new-dtags,
4632 # because the new dynamic tags are not created by default.
4633 ['binutils_version>=223', {
4634 # Newer binutils don't set DT_RPATH unless you disable "new" dtags
4635 # and the new DT_RUNPATH doesn't work without --no-as-needed flag.
4636 # FIXME(mithro): Figure out the --as-needed/--no-as-needed flags
4637 # inside this file to allow usage of --no-as-needed and removal of
4640 '-Wl,--disable-new-dtags',
4643 ['gcc_version>=47 and clang==0', {
4644 'target_conditions': [
4645 ['_toolset=="target"', {
4648 # See comment for -Wno-c++11-narrowing.
4650 # TODO(thakis): Remove, http://crbug.com/263960
4651 '-Wno-literal-suffix',
4656 ['host_gcc_version>=47 and clang==0 and host_clang==0', {
4657 'target_conditions': [
4658 ['_toolset=="host"', {
4661 # See comment for -Wno-c++11-narrowing.
4663 # TODO(thakis): Remove, http://crbug.com/263960
4664 '-Wno-literal-suffix',
4672 # FreeBSD-specific options; note that most FreeBSD options are set above,
4675 'target_defaults': {
4677 '-Wl,--no-keep-memory',
4681 # Android-specific options; note that most are set above with Linux.
4684 # This is a unique identifier for a given build. It's used for
4685 # identifying various build artifacts corresponding to a particular
4686 # build of chrome (e.g. where to find archived symbols).
4687 'chrome_build_id%': '',
4689 # Figure this out early since it needs symbols from libgcc.a, so it
4690 # has to be before that in the set of libraries.
4691 ['component=="shared_library"', {
4692 'android_libcpp_library': 'c++_shared',
4694 'android_libcpp_library': 'c++_static',
4698 # Placing this variable here prevents from forking libvpx, used
4699 # by remoting. Remoting is off, so it needn't built,
4700 # so forking it's deps seems like overkill.
4701 # But this variable need defined to properly run gyp.
4702 # A proper solution is to have an OS==android conditional
4703 # in third_party/libvpx/libvpx.gyp to define it.
4704 'libvpx_path': 'lib/linux/arm',
4706 'target_defaults': {
4708 'release_extra_cflags%': '',
4710 # If we're using the components build, append "cr" to all shared
4711 # libraries to avoid naming collisions with android system library
4712 # versions with the same name (e.g. skia, icu).
4713 ['component=="shared_library"', {
4714 'android_product_extension': 'cr.so',
4716 'android_product_extension': 'so',
4720 'target_conditions': [
4721 ['_type=="shared_library"', {
4722 'product_extension': '<(android_product_extension)',
4725 # Settings for building device targets using Android's toolchain.
4726 # These are based on the setup.mk file from the Android NDK.
4728 # The NDK Android executable link step looks as follows:
4730 # $(TARGET_CRTBEGIN_DYNAMIC_O) <-- crtbegin.o
4731 # $(PRIVATE_OBJECTS) <-- The .o that we built
4732 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4733 # $(TARGET_LIBGCC) <-- libgcc.a
4734 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4735 # $(PRIVATE_LDLIBS) <-- System .so
4736 # $(TARGET_CRTEND_O) <-- crtend.o
4738 # For now the above are approximated for executables by adding
4739 # crtbegin.o to the end of the ldflags and 'crtend.o' to the end
4742 # The NDK Android shared library link step looks as follows:
4744 # $(PRIVATE_OBJECTS) <-- The .o that we built
4745 # -l,--whole-archive
4746 # $(PRIVATE_WHOLE_STATIC_LIBRARIES)
4747 # -l,--no-whole-archive
4748 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4749 # $(TARGET_LIBGCC) <-- libgcc.a
4750 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4751 # $(PRIVATE_LDLIBS) <-- System .so
4753 # For now, assume that whole static libraries are not needed.
4755 # For both executables and shared libraries, add the proper
4756 # libgcc.a to the start of libraries which puts it in the
4757 # proper spot after .o and .a files get linked in.
4759 # TODO: The proper thing to do longer-tem would be proper gyp
4760 # support for a custom link command line.
4761 ['_toolset=="target"', {
4763 '-pthread', # Not supported by Android toolchain.
4766 '-ffunction-sections',
4769 '-fstack-protector',
4771 '-finline-limit=64',
4772 '<@(release_extra_cflags)',
4773 '--sysroot=<(android_ndk_sysroot)',
4774 # NOTE: The libc++ header include paths below are specified in
4775 # cflags rather than include_dirs because they need to come
4776 # after include_dirs.
4777 # The include ordering here is important; change with caution.
4778 '-isystem<(android_libcpp_include)',
4779 '-isystem<(android_ndk_root)/sources/cxx-stl/llvm-libc++abi/libcxxabi/include',
4780 '-isystem<(android_ndk_root)/sources/android/support/include',
4784 '__GNU_SOURCE=1', # Necessary for clone()
4785 'CHROME_BUILD_ID="<(chrome_build_id)"',
4786 # The NDK has these things, but doesn't define the constants
4787 # to say that it does. Define them here instead.
4791 '-pthread', # Not supported by Android toolchain.
4794 '-Wl,--no-undefined',
4795 '--sysroot=<(android_ndk_sysroot)',
4797 '-L<(android_libcpp_libs_dir)',
4798 # Don't allow visible symbols from libgcc or libc++ to be
4800 '-Wl,--exclude-libs=libgcc.a',
4801 '-Wl,--exclude-libs=libc++_static.a',
4802 # Don't allow visible symbols from libraries that contain
4803 # assembly code with symbols that aren't hidden properly.
4804 # http://crbug.com/448386
4805 '-Wl,--exclude-libs=libcommon_audio.a',
4806 '-Wl,--exclude-libs=libcommon_audio_neon.a',
4807 '-Wl,--exclude-libs=libcommon_audio_sse2.a',
4808 '-Wl,--exclude-libs=libiSACFix.a',
4809 '-Wl,--exclude-libs=libisac_neon.a',
4810 '-Wl,--exclude-libs=libopus.a',
4811 '-Wl,--exclude-libs=libvpx.a',
4814 '-l<(android_libcpp_library)',
4816 # Manually link the libgcc.a that the cross compiler uses.
4817 '<!(<(android_toolchain)/*-gcc -print-libgcc-file-name)',
4823 ['component=="static_library"', {
4824 'target_conditions': [
4825 ['use_native_jni_exports==0', {
4826 # Use a linker version script to strip JNI exports from
4827 # binaries which have not specifically asked to use them.
4829 '-Wl,--version-script=<!(cd <(DEPTH) && pwd -P)/build/android/android_no_jni_exports.lst',
4836 # Clang with libc++ does not require an explicit atomic
4837 # library reference.
4841 # Work around incompatibilities between bionic and clang
4843 '-D__compiler_offsetof=__builtin_offsetof',
4844 '-Dnan=__builtin_nan',
4847 ['target_arch=="arm"', {
4849 '-target arm-linux-androideabi',
4852 '-target arm-linux-androideabi',
4855 ['target_arch=="ia32"', {
4857 '-target x86-linux-androideabi',
4860 '-target x86-linux-androideabi',
4863 # Place holder for x64 support, not tested.
4864 # TODO: Enable clang support for Android x64. http://crbug.com/346626
4865 ['target_arch=="x64"', {
4867 '-target x86_64-linux-androideabi',
4870 '-target x86_64-linux-androideabi',
4877 # Android build relies on -Wl,--gc-sections removing
4878 # unreachable code. ASan instrumentation for globals inhibits
4879 # this and results in a library with unresolvable relocations.
4880 # TODO(eugenis): find a way to reenable this.
4881 '-mllvm -asan-globals=0',
4884 ['target_arch == "arm" and order_profiling==0', {
4886 # Enable identical code folding to reduce size.
4887 '-Wl,--icf=<(gold_icf_level)',
4890 ['target_arch=="ia32"', {
4891 # The x86 toolchain currently has problems with stack-protector.
4893 '-fstack-protector',
4896 '-fno-stack-protector',
4900 'target_conditions': [
4901 ['_type=="executable"', {
4902 # Force android tools to export the "main" symbol so they can be
4903 # loaded on ICS using the run_pie wrapper. See crbug.com/373219.
4904 # TODO(primiano): remove -fvisibility and -rdynamic flags below
4905 # when ICS support will be dropped.
4908 '-fvisibility=default',
4912 '-Wl,--gc-sections',
4913 '-Wl,-z,nocopyreloc',
4916 # crtbegin_dynamic.o should be the last item in ldflags.
4917 '<(android_ndk_lib)/crtbegin_dynamic.o',
4920 # crtend_android.o needs to be the last item in libraries.
4921 # Do not add any libraries after this!
4922 '<(android_ndk_lib)/crtend_android.o',
4925 ['_type=="shared_library" or _type=="loadable_module"', {
4927 '-Wl,-shared,-Bsymbolic',
4928 # crtbegin_so.o should be the last item in ldflags.
4929 '<(android_ndk_lib)/crtbegin_so.o',
4932 # crtend_so.o needs to be the last item in libraries.
4933 # Do not add any libraries after this!
4934 '<(android_ndk_lib)/crtend_so.o',
4939 # Settings for building host targets using the system toolchain.
4940 ['_toolset=="host"', {
4942 # Due to issues in Clang build system, using ASan on 32-bit
4943 # binaries on x86_64 host is problematic.
4944 # TODO(eugenis): re-enable.
4945 '-fsanitize=address',
4948 '-fsanitize=address',
4949 '-Wl,-z,noexecstack',
4950 '-Wl,--gc-sections',
4953 '-Wl,--warn-shared-textrel',
4954 '-Wl,--fatal-warnings',
4957 # Settings for building host targets on mac.
4958 ['_toolset=="host" and host_os=="mac"', {
4968 'cflags!': ['-fvisibility=hidden'],
4969 'cflags_cc!': ['-fvisibility-inlines-hidden'],
4971 ['OS=="mac" or OS=="ios"', {
4972 'target_defaults': {
4975 'ALWAYS_SEARCH_USER_PATHS': 'NO',
4976 # Don't link in libarclite_macosx.a, see http://crbug.com/156530.
4977 'CLANG_LINK_OBJC_RUNTIME': 'NO', # -fno-objc-link-runtime
4978 'COPY_PHASE_STRIP': 'NO',
4979 'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
4980 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
4981 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
4982 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
4983 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
4984 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden
4985 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
4986 'GCC_OBJC_CALL_CXX_CDTORS': 'YES', # -fobjc-call-cxx-cdtors
4987 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
4988 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
4989 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror
4990 'GCC_VERSION': '4.2',
4991 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
4992 'USE_HEADERMAP': 'NO',
4997 # Don't warn about unused function parameters.
4998 '-Wno-unused-parameter',
4999 # Don't warn about the "struct foo f = {0};" initialization
5001 '-Wno-missing-field-initializers',
5004 ['chromium_mac_pch', {'GCC_PRECOMPILE_PREFIX_HEADER': 'YES'},
5005 {'GCC_PRECOMPILE_PREFIX_HEADER': 'NO'}
5007 # Note that the prebuilt Clang binaries should not be used for iOS
5008 # development except for ASan builds.
5010 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', # -std=c++11
5011 # Warn if automatic synthesis is triggered with
5012 # the -Wobjc-missing-property-synthesis flag.
5013 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
5014 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
5016 # This warns on selectors from Cocoa headers (-length, -set).
5017 # cfe-dev is currently discussing the merits of this warning.
5018 # TODO(thakis): Reevaluate what to do with this, based one
5019 # cfe-dev discussion.
5020 '-Wno-selector-type-mismatch',
5023 ['clang_xcode==0', {
5024 'CC': '$(SOURCE_ROOT)/<(clang_dir)/clang',
5025 'LDPLUSPLUS': '$(SOURCE_ROOT)/<(clang_dir)/clang++',
5029 ['clang==1 and clang_xcode==0 and clang_use_chrome_plugins==1', {
5031 '<@(clang_chrome_plugins_flags)',
5034 ['clang==1 and clang_xcode==0 and clang_load!=""', {
5036 '-Xclang', '-load', '-Xclang', '<(clang_load)',
5039 ['clang==1 and clang_xcode==0 and clang_add_plugin!=""', {
5041 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
5044 ['clang==1 and "<(GENERATOR)"=="ninja"', {
5046 # See http://crbug.com/110262
5047 '-fcolor-diagnostics',
5050 ['OS=="ios" and target_subarch!="arm32" and \
5051 "<(GENERATOR)"=="xcode"', {
5053 # TODO(ios): when building Chrome for iOS on 64-bit platform
5054 # with Xcode, the -Wshorted-64-to-32 warning is automatically
5055 # enabled. This cause failures when compiling protobuf code,
5056 # so disable the warning. http://crbug.com/359107
5057 '-Wno-shorten-64-to-32',
5065 'clang_dir': '../third_party/llvm-build/Release+Asserts/bin',
5071 '-fsanitize=address',
5072 '-mllvm -asan-globals=0', # http://crbug.com/352073
5073 '-gline-tables-only',
5077 ['asan_coverage!=0 and sanitizer_coverage==0', {
5078 'target_conditions': [
5079 ['_toolset=="target"', {
5081 '-fsanitize-coverage=<(asan_coverage)',
5084 'SANITIZER_COVERAGE',
5089 ['sanitizer_coverage!=0', {
5090 'target_conditions': [
5091 ['_toolset=="target"', {
5093 '-fsanitize-coverage=<(sanitizer_coverage)',
5096 'SANITIZER_COVERAGE',
5102 'target_conditions': [
5103 ['_type!="static_library"', {
5104 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
5109 '-fsanitize=address',
5113 ['mac_write_linker_maps==1', {
5116 '-Wl,-map,>(_target_name).map',
5123 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
5124 'target_conditions': [
5125 ['_type=="executable"', {
5131 # Define copy_asan_dylib_path in a variable ending in
5132 # _path so that gyp understands it's a path and
5133 # performs proper relativization during dict merging.
5134 'copy_asan_dylib_path':
5135 'mac/copy_asan_runtime_dylib.sh',
5137 'postbuild_name': 'Copy ASan runtime dylib',
5139 '<(copy_asan_dylib_path)',
5148 ], # target_conditions
5149 }, # target_defaults
5150 }], # OS=="mac" or OS=="ios"
5152 'target_defaults': {
5154 # Prevent Mac OS X AssertMacros.h from defining macros that collide
5155 # with common names, like 'check', 'require', and 'verify'.
5156 # (Included by system header. Also exists on iOS but not included.)
5157 # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h
5158 '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0',
5161 # These should end with %, but there seems to be a bug with % in
5162 # variables that are intended to be set to different values in
5163 # different targets, like these.
5164 'mac_pie': 1, # Most executables can be position-independent.
5165 # Strip debugging symbols from the target.
5166 'mac_strip': '<(mac_strip_release)',
5170 ['mac_want_real_dsym=="default"', {
5173 'mac_real_dsym': '<(mac_want_real_dsym)'
5178 ['mac_want_real_dsym=="default"', {
5179 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
5181 'mac_real_dsym': '<(mac_want_real_dsym)'
5190 ['branding=="Chrome" and buildtype=="Official"', {
5193 # The Google Chrome Framework dSYM generated by dsymutil has
5194 # grown larger than 4GB, which dsymutil can't handle. Reduce
5195 # the amount of debug symbols.
5196 '-fno-standalone-debug', # See http://crbug.com/479841
5201 }, # configuration "Release"
5204 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
5205 # (Equivalent to -fPIC)
5206 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
5207 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5208 # Keep pch files below xcodebuild/.
5209 'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders',
5211 # Someday this can be replaced by an 'GCC_STRICT_ALIASING': 'NO'
5212 # xcode_setting, but not until all downstream projects' mac bots are
5213 # using xcode >= 4.6, because that's when the default value of the
5214 # flag in the compiler switched. Pre-4.6, the value 'NO' for that
5215 # setting is a no-op as far as xcode is concerned, but the compiler
5216 # behaves differently based on whether -fno-strict-aliasing is
5218 '-fno-strict-aliasing', # See http://crbug.com/32204.
5221 'target_conditions': [
5222 ['_type=="executable"', {
5225 # Arranges for data (heap) pages to be protected against
5226 # code execution when running on Mac OS X 10.7 ("Lion"), and
5227 # ensures that the position-independent executable (PIE) bit
5228 # is set for ASLR when running on Mac OS X 10.5 ("Leopard").
5230 # Define change_mach_o_flags in a variable ending in _path
5231 # so that GYP understands it's a path and performs proper
5232 # relativization during dict merging.
5233 'change_mach_o_flags_path':
5234 'mac/change_mach_o_flags_from_xcode.sh',
5235 'change_mach_o_flags_options%': [
5237 'target_conditions': [
5238 ['mac_pie==0 or release_valgrind_build==1', {
5239 # Don't enable PIE if it's unwanted. It's unwanted if
5240 # the target specifies mac_pie=0 or if building for
5241 # Valgrind, because Valgrind doesn't understand slide.
5242 # See the similar mac_pie/release_valgrind_build check
5244 'change_mach_o_flags_options': [
5250 'postbuild_name': 'Change Mach-O Flags',
5252 '<(change_mach_o_flags_path)',
5253 '>@(change_mach_o_flags_options)',
5257 'target_conditions': [
5258 ['mac_pie==1 and release_valgrind_build==0', {
5259 # Turn on position-independence (ASLR) for executables. When
5260 # PIE is on for the Chrome executables, the framework will
5261 # also be subject to ASLR.
5262 # Don't do this when building for Valgrind, because Valgrind
5263 # doesn't understand slide. TODO: Make Valgrind on Mac OS X
5264 # understand slide, and get rid of the Valgrind check.
5267 '-Wl,-pie', # Position-independent executable (MH_PIE)
5273 ['(_type=="executable" or _type=="shared_library" or \
5274 _type=="loadable_module") and mac_strip!=0', {
5275 'target_conditions': [
5276 ['mac_real_dsym == 1', {
5277 # To get a real .dSYM bundle produced by dsymutil, set the
5278 # debug information format to dwarf-with-dsym. Since
5279 # strip_from_xcode will not be used, set Xcode to do the
5280 # stripping as well.
5284 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
5285 'DEPLOYMENT_POSTPROCESSING': 'YES',
5286 'STRIP_INSTALLED_PRODUCT': 'YES',
5288 # Only strip non-ASan builds.
5290 'target_conditions': [
5291 ['_type=="shared_library" or _type=="loadable_module"', {
5292 # The Xcode default is to strip debugging symbols
5293 # only (-S). Local symbols should be stripped as
5294 # well, which will be handled by -x. Xcode will
5295 # continue to insert -S when stripping even when
5296 # additional flags are added with STRIPFLAGS.
5298 }], # _type=="shared_library" or _type=="loadable_module"
5299 ], # target_conditions
5305 }, # configuration "Release"
5307 }, { # mac_real_dsym != 1
5308 # To get a fast fake .dSYM bundle, use a post-build step to
5309 # produce the .dSYM and strip the executable. strip_from_xcode
5310 # only operates in the Release configuration.
5314 # Define strip_from_xcode in a variable ending in _path
5315 # so that gyp understands it's a path and performs proper
5316 # relativization during dict merging.
5317 'strip_from_xcode_path': 'mac/strip_from_xcode',
5319 'postbuild_name': 'Strip If Needed',
5320 'action': ['<(strip_from_xcode_path)'],
5324 ], # target_conditions
5325 }], # (_type=="executable" or _type=="shared_library" or
5326 # _type=="loadable_module") and mac_strip!=0
5327 ], # target_conditions
5328 }, # target_defaults
5332 'ios/coverage.gypi',
5334 'target_defaults': {
5335 'xcode_settings' : {
5336 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
5339 # Older Xcodes do not support -Wno-deprecated-register, so pass an
5340 # additional flag to suppress the "unknown compiler option" error.
5341 # Restrict this flag to builds that are either compiling with Xcode
5342 # or compiling with Xcode's Clang. This will allow Ninja builds to
5343 # continue failing on unknown compiler options.
5344 # TODO(rohitrao): This flag is temporary and should be removed as
5345 # soon as the iOS bots are updated to use Xcode 5.1.
5346 ['clang_xcode==1', {
5348 '-Wno-unknown-warning-option',
5352 # Limit the valid architectures depending on "target_subarch".
5353 # This need to include the "arm" architectures but also the "x86"
5354 # ones (they are used when building for the simulator).
5355 ['target_subarch=="arm32"', {
5356 'VALID_ARCHS': ['armv7', 'i386'],
5358 ['target_subarch=="arm64"', {
5359 'VALID_ARCHS': ['arm64', 'x86_64'],
5361 ['target_subarch=="both"', {
5362 'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
5364 ['use_system_libcxx==1', {
5365 'target_conditions': [
5366 # Only use libc++ when building target for iOS not when building
5367 # tools for the host (OS X) as Mac targets OS X SDK 10.6 which
5368 # does not support libc++.
5369 ['_toolset=="target"', {
5370 'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++
5374 # The default for deployment target of 7.0+ is libc++, so force
5375 # the old behavior unless libc++ is enabled.
5376 'CLANG_CXX_LIBRARY': 'libstdc++', # -stdlib=libstdc++
5380 'target_conditions': [
5381 ['_toolset=="host"', {
5383 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
5384 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5393 ['_toolset=="target"', {
5395 # This section should be for overriding host settings. But,
5396 # since we can't negate the iphone deployment target above, we
5397 # instead set it here for target only.
5398 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)',
5399 'ARCHS': ['$(ARCHS_STANDARD_INCLUDING_64_BIT)'],
5402 ['_type=="executable"', {
5406 'DEPLOYMENT_POSTPROCESSING': 'YES',
5407 'STRIP_INSTALLED_PRODUCT': 'YES',
5412 # Remove dSYM to reduce build time.
5413 'DEBUG_INFORMATION_FORMAT': 'dwarf',
5419 ['chromium_ios_signing', {
5420 # iOS SDK wants everything for device signed.
5421 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
5423 'CODE_SIGNING_REQUIRED': 'NO',
5424 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
5429 ], # target_conditions
5430 }, # target_defaults
5433 'target_defaults': {
5435 '_WIN32_WINNT=0x0603',
5442 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
5443 'WIN32_LEAN_AND_MEAN',
5446 # _HAS_EXCEPTIONS must match ExceptionHandling in msvs_settings.
5447 '_HAS_EXCEPTIONS=0',
5448 # Silence some warnings; we can't switch the the 'recommended'
5449 # versions as they're not available on old OSs.
5450 '_WINSOCK_DEPRECATED_NO_WARNINGS',
5453 ['buildtype=="Official"', {
5454 # In official builds, targets can self-select an optimization
5455 # level by defining a variable named 'optimize', and setting it
5457 # - "size", optimizes for minimal code size - the default.
5458 # - "speed", optimizes for speed over code size.
5459 # - "max", whole program optimization and link-time code
5460 # generation. This is very expensive and should be used
5463 'optimize%': 'size',
5467 # Set /LTCG for the official builds.
5468 'LinkTimeCodeGeneration': '1',
5469 'AdditionalOptions': [
5470 # Set the number of LTCG code-gen threads to eight.
5471 # The default is four. This gives a 5-10% link speedup.
5476 'target_conditions': [
5477 ['optimize=="size"', {
5479 'VCCLCompilerTool': {
5480 # 1, optimizeMinSpace, Minimize Size (/O1)
5481 'Optimization': '1',
5482 # 2, favorSize - Favor small code (/Os)
5483 'FavorSizeOrSpeed': '2',
5488 # This config is used to avoid a problem in ffmpeg, see
5489 # http://crbug.com/264459.
5490 ['optimize=="size_no_ltcg"', {
5492 'VCCLCompilerTool': {
5493 # 1, optimizeMinSpace, Minimize Size (/O1)
5494 'Optimization': '1',
5495 # 2, favorSize - Favor small code (/Os)
5496 'FavorSizeOrSpeed': '2',
5501 ['optimize=="speed"', {
5503 'VCCLCompilerTool': {
5504 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5505 'Optimization': '2',
5506 # 1, favorSpeed - Favor fast code (/Ot)
5507 'FavorSizeOrSpeed': '1',
5512 ['optimize=="max"', {
5513 # Disable Warning 4702 ("Unreachable code") for the WPO/PGO
5514 # builds. Probably anything that this would catch that
5515 # wouldn't be caught in a normal build isn't going to
5516 # actually be a bug, so the incremental value of C4702 for
5517 # PGO builds is likely very small.
5518 'msvs_disabled_warnings': [
5522 'VCCLCompilerTool': {
5523 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5524 'Optimization': '2',
5525 # 1, favorSpeed - Favor fast code (/Ot)
5526 'FavorSizeOrSpeed': '1',
5527 # This implies link time code generation.
5528 'WholeProgramOptimization': 'true',
5536 ['msvs_xtree_patched!=1', {
5537 # If xtree hasn't been patched, then we disable C4702. Otherwise,
5538 # it's enabled. This will generally only be true for system-level
5539 # installed Express users.
5540 'msvs_disabled_warnings': [
5545 'msvs_system_include_dirs': [
5546 '<(windows_sdk_path)/Include/shared',
5547 '<(windows_sdk_path)/Include/um',
5548 '<(windows_sdk_path)/Include/winrt',
5549 '$(VSInstallDir)/VC/atlmfc/include',
5551 'msvs_cygwin_shell': 0,
5552 'msvs_disabled_warnings': [
5553 # C4091: 'typedef ': ignored on left of 'X' when no variable is
5555 # This happens in a number of Windows headers. Dumb.
5558 # C4127: conditional expression is constant
5559 # This warning can in theory catch dead code and other problems, but
5560 # triggers in far too many desirable cases where the conditional
5561 # expression is either set by macros or corresponds some legitimate
5562 # compile-time constant expression (due to constant template args,
5563 # conditionals comparing the sizes of different types, etc.). Some of
5564 # these can be worked around, but it's not worth it.
5567 # C4351: new behavior: elements of array 'array' will be default
5569 # This is a silly "warning" that basically just alerts you that the
5570 # compiler is going to actually follow the language spec like it's
5571 # supposed to, instead of not following it like old buggy versions
5572 # did. There's absolutely no reason to turn this on.
5575 # C4355: 'this': used in base member initializer list
5576 # It's commonly useful to pass |this| to objects in a class'
5577 # initializer list. While this warning can catch real bugs, most of
5578 # the time the constructors in question don't attempt to call methods
5579 # on the passed-in pointer (until later), and annotating every legit
5580 # usage of this is simply more hassle than the warning is worth.
5583 # C4503: 'identifier': decorated name length exceeded, name was
5585 # This only means that some long error messages might have truncated
5586 # identifiers in the presence of lots of templates. It has no effect
5587 # on program correctness and there's no real reason to waste time
5588 # trying to prevent it.
5591 # C4611: interaction between 'function' and C++ object destruction is
5593 # This warning is unavoidable when using e.g. setjmp/longjmp. MSDN
5594 # suggests using exceptions instead of setjmp/longjmp for C++, but
5595 # Chromium code compiles without exception support. We therefore have
5596 # to use setjmp/longjmp for e.g. JPEG decode error handling, which
5597 # means we have to turn off this warning (and be careful about how
5598 # object destruction happens in such cases).
5601 # TODO(maruel): These warnings are level 4. They will be slowly
5602 # removed as code is fixed.
5603 4100, # Unreferenced formal parameter
5604 4121, # Alignment of a member was sensitive to packing
5605 4244, # Conversion from 'type1' to 'type2', possible loss of data
5606 4481, # Nonstandard extension used: override specifier 'keyword'
5607 4505, # Unreferenced local function has been removed
5608 4510, # Default constructor could not be generated
5609 4512, # Assignment operator could not be generated
5610 4610, # Object can never be instantiated
5611 4838, # Narrowing conversion. Doesn't seem to be very useful.
5612 4996, # 'X': was declared deprecated (for GetVersionEx).
5614 # These are variable shadowing warnings that are new in VS2015. We
5615 # should work through these at some point -- they may be removed from
5616 # the RTM release in the /W4 set.
5617 4456, 4457, 4458, 4459,
5620 'VCCLCompilerTool': {
5621 'AdditionalOptions': ['/MP'],
5622 'MinimalRebuild': 'false',
5623 'BufferSecurityCheck': 'true',
5624 'EnableFunctionLevelLinking': 'true',
5625 'RuntimeTypeInfo': 'false',
5626 'WarningLevel': '4',
5627 'WarnAsError': 'true',
5628 'DebugInformationFormat': '3',
5629 # ExceptionHandling must match _HAS_EXCEPTIONS above.
5630 'ExceptionHandling': '0',
5632 'VCLibrarianTool': {
5633 'AdditionalOptions': ['/ignore:4221'],
5634 'AdditionalLibraryDirectories': [
5635 '<(windows_sdk_path)/Lib/win8/um/x86',
5639 'AdditionalDependencies': [
5651 'AdditionalLibraryDirectories': [
5652 '<(windows_sdk_path)/Lib/win8/um/x86',
5654 'GenerateDebugInformation': 'true',
5655 'MapFileName': '$(OutDir)\\$(TargetName).map',
5656 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
5657 'FixedBaseAddress': '1',
5660 # 1 == /SUBSYSTEM:CONSOLE
5661 # 2 == /SUBSYSTEM:WINDOWS
5662 # Most of the executables we'll ever create are tests
5663 # and utilities with console output.
5667 'GenerateStublessProxies': 'true',
5668 'TypeLibraryName': '$(InputName).tlb',
5669 'OutputDirectory': '$(IntDir)',
5670 'HeaderFileName': '$(InputName).h',
5671 'DLLDataFileName': '$(InputName).dlldata.c',
5672 'InterfaceIdentifierFileName': '$(InputName)_i.c',
5673 'ProxyFileName': '$(InputName)_p.c',
5675 'VCResourceCompilerTool': {
5677 'AdditionalIncludeDirectories': [
5679 '<(SHARED_INTERMEDIATE_DIR)',
5682 'target_conditions': [
5683 ['_type=="executable"', {
5685 'EmbedManifest': 'true',
5688 ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', {
5690 'AdditionalManifestFiles': [
5691 '>(win_exe_compatibility_manifest)',
5697 # Building with Clang on Windows is a work in progress and very
5698 # experimental. See crbug.com/82385.
5699 # Keep this in sync with the similar blocks in build/config/compiler/BUILD.gn
5701 'VCCLCompilerTool': {
5702 'AdditionalOptions': [
5703 '-fmsc-version=1800',
5705 # Many files use intrinsics without including this header.
5706 # TODO(hans): Fix those files, or move this to sub-GYPs.
5709 # TODO(hans): Make this list shorter eventually.
5710 '-Qunused-arguments',
5711 '-Wno-c++11-compat-deprecated-writable-strings',
5712 '-Wno-deprecated-declarations',
5714 '-Wno-enum-conversion',
5715 '-Wno-extra-tokens',
5716 '-Wno-ignored-attributes',
5717 '-Wno-incompatible-pointer-types',
5718 '-Wno-int-to-void-pointer-cast',
5719 '-Wno-invalid-noreturn',
5720 '-Wno-logical-op-parentheses',
5722 '-Wno-missing-braces',
5723 '-Wno-missing-declarations',
5724 '-Wno-msvc-include',
5725 '-Wno-null-dereference',
5726 '-Wno-overloaded-virtual',
5728 '-Wno-pointer-sign',
5730 '-Wno-return-type-c-linkage',
5732 '-Wno-sometimes-uninitialized',
5734 '-Wno-tautological-compare',
5735 '-Wno-unknown-pragmas',
5737 '-Wno-unused-function',
5738 '-Wno-unused-private-field',
5739 '-Wno-unused-value',
5740 '-Wno-unused-variable',
5741 '-Wno-unused-local-typedef', # http://crbug.com/411648
5742 '-Wno-inconsistent-missing-override', #http://crbug.com/428099
5746 ['clang==1 and target_arch=="ia32"', {
5747 'VCCLCompilerTool': {
5748 'WarnAsError': 'false',
5749 'AdditionalOptions': [
5754 ['clang==1 and clang_use_chrome_plugins==1', {
5755 'VCCLCompilerTool': {
5756 'AdditionalOptions': [
5757 '<@(clang_chrome_plugins_flags)',
5765 ['disable_nacl==1', {
5766 'target_defaults': {
5772 ['OS=="win" and msvs_use_common_linker_extras', {
5773 'target_defaults': {
5788 'AdditionalOptions': [
5799 'AdditionalOptions': ['/largeaddressaware'],
5803 # TODO(asan/win): Move this down into the general
5804 # win-target_defaults section once the 64-bit asan runtime
5805 # exists. See crbug.com/345874.
5806 'VCCLCompilerTool': {
5807 'AdditionalOptions': [
5808 '-fsanitize=address',
5809 '-fsanitize-blacklist=<(PRODUCT_DIR)/../../tools/memory/asan/blacklist_win.txt',
5811 'AdditionalIncludeDirectories': [
5812 # MSVC needs to be able to find the sanitizer headers when
5813 # invoked via /fallback. This is critical for using macros
5814 # like ASAN_UNPOISON_MEMORY_REGION in files where we fall
5816 '<(DEPTH)/<(make_clang_dir)/lib/clang/3.7.0/include_sanitizer',
5820 'AdditionalLibraryDirectories': [
5821 # TODO(hans): If make_clang_dir is absolute, this breaks.
5822 '<(DEPTH)/<(make_clang_dir)/lib/clang/3.7.0/lib/windows',
5825 'target_conditions': [
5826 ['component=="shared_library"', {
5828 'AdditionalDependencies': [
5829 'clang_rt.asan_dynamic-i386.lib',
5830 'clang_rt.asan_dynamic_runtime_thunk-i386.lib',
5834 ['_type=="executable" and component=="static_library"', {
5836 'AdditionalDependencies': [
5837 'clang_rt.asan-i386.lib',
5841 ['(_type=="shared_library" or _type=="loadable_module") and component=="static_library"', {
5843 'AdditionalDependencies': [
5844 'clang_rt.asan_dll_thunk-i386.lib',
5850 ['sanitizer_coverage!=0', {
5851 # TODO(asan/win): Move this down into the general
5852 # win-target_defaults section once the 64-bit asan runtime
5853 # exists. See crbug.com/345874.
5854 'VCCLCompilerTool': {
5855 'AdditionalOptions': [
5856 '-fsanitize-coverage=<(sanitizer_coverage)',
5863 ['sanitizer_coverage!=0', {
5864 # TODO(asan/win): Move this down into the general
5865 # win-target_defaults section once the 64-bit asan runtime
5866 # exists. See crbug.com/345874.
5868 'SANITIZER_COVERAGE',
5876 'AdditionalOptions': [
5877 # safeseh is not compatible with x64
5889 ['enable_new_npdevice_api==1', {
5890 'target_defaults': {
5892 'ENABLE_NEW_NPDEVICE_API',
5896 # Don't warn about the "typedef 'foo' locally defined but not used"
5897 # for gcc 4.8 and higher.
5898 # TODO: remove this flag once all builds work. See crbug.com/227506
5899 ['gcc_version>=48 and clang==0', {
5900 'target_defaults': {
5902 '-Wno-unused-local-typedefs',
5906 ['gcc_version>=48 and clang==0 and host_clang==1', {
5907 'target_defaults': {
5908 'target_conditions': [
5909 ['_toolset=="host"', { 'cflags!': [ '-Wno-unused-local-typedefs' ]}],
5913 ['clang==1 and ((OS!="mac" and OS!="ios") or clang_xcode==0) '
5915 'make_global_settings': [
5916 ['CC', '<(make_clang_dir)/bin/clang'],
5917 ['CXX', '<(make_clang_dir)/bin/clang++'],
5918 ['CC.host', '$(CC)'],
5919 ['CXX.host', '$(CXX)'],
5922 ['clang==1 and OS=="win"', {
5923 'make_global_settings': [
5924 # On Windows, gyp's ninja generator only looks at CC.
5925 ['CC', '<(make_clang_dir)/bin/clang-cl'],
5928 ['use_lld==1 and OS=="win"', {
5929 'make_global_settings': [
5930 # Limited to Windows because lld-link is the driver that is compatible
5932 ['LD', '<(make_clang_dir)/bin/lld-link'],
5935 ['OS=="android" and clang==0', {
5936 # Hardcode the compiler names in the Makefile so that
5937 # it won't depend on the environment at make time.
5938 'make_global_settings': [
5939 ['CC', '<!(/bin/echo -n <(android_toolchain)/*-gcc)'],
5940 ['CXX', '<!(/bin/echo -n <(android_toolchain)/*-g++)'],
5941 ['CC.host', '<(host_cc)'],
5942 ['CXX.host', '<(host_cxx)'],
5945 ['OS=="linux" and target_arch=="mipsel"', {
5946 'make_global_settings': [
5947 ['CC', '<(sysroot)/../bin/mipsel-linux-gnu-gcc'],
5948 ['CXX', '<(sysroot)/../bin/mipsel-linux-gnu-g++'],
5949 ['CC.host', '<(host_cc)'],
5950 ['CXX.host', '<(host_cxx)'],
5953 ['OS=="linux" and target_arch=="arm" and host_arch!="arm" and chromeos==0 and clang==0', {
5954 # Set default ARM cross compiling on linux. These can be overridden
5955 # using CC/CXX/etc environment variables.
5956 'make_global_settings': [
5957 ['CC', '<!(which arm-linux-gnueabihf-gcc)'],
5958 ['CXX', '<!(which arm-linux-gnueabihf-g++)'],
5959 ['CC.host', '<(host_cc)'],
5960 ['CXX.host', '<(host_cxx)'],
5964 # TODO(yyanagisawa): supports GENERATOR==make
5965 # make generator doesn't support CC_wrapper without CC
5966 # in make_global_settings yet.
5967 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
5968 'make_global_settings': [
5969 ['CC_wrapper', '<(gomadir)/gomacc'],
5970 ['CXX_wrapper', '<(gomadir)/gomacc'],
5971 ['CC.host_wrapper', '<(gomadir)/gomacc'],
5972 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
5976 'target_defaults': {
5977 'target_conditions': [
5978 ['_toolset=="target"', {
5986 # Work-around for http://openradar.appspot.com/20356002
5987 ['_toolset=="target" and _type!="static_library"', {
5997 ['use_lto==1 and clang==0', {
5998 'target_defaults': {
5999 'target_conditions': [
6000 ['_toolset=="target"', {
6002 '-ffat-lto-objects',
6008 ['use_lto==1 and clang==1', {
6009 'target_defaults': {
6010 'target_conditions': [
6011 ['_toolset=="target"', {
6013 '--plugin', '../../<(make_clang_dir)/lib/LLVMgold.so',
6019 # Apply a lower LTO optimization level in non-official builds.
6020 ['use_lto==1 and clang==1 and buildtype!="Official"', {
6021 'target_defaults': {
6022 'target_conditions': [
6023 ['_toolset=="target"', {
6025 '-Wl,--plugin-opt,O1',
6028 ['_toolset=="target" and _type!="static_library"', {
6038 ['use_lto==1 and clang==1 and target_arch=="arm"', {
6039 'target_defaults': {
6040 'target_conditions': [
6041 ['_toolset=="target"', {
6042 # Without this flag, LTO produces a .text section that is larger
6043 # than the maximum call displacement, preventing the linker from
6044 # relocating calls (http://llvm.org/PR22999).
6046 '-Wl,-plugin-opt,-function-sections',
6052 ['(use_lto==1 or use_lto_o2==1) and clang==0', {
6053 'target_defaults': {
6054 'target_conditions': [
6055 ['_toolset=="target"', {
6063 ['(use_lto==1 or use_lto_o2==1) and clang==1', {
6064 'target_defaults': {
6065 'target_conditions': [
6066 ['_toolset=="target"', {
6075 'target_defaults': {
6076 'target_conditions': [
6077 ['_toolset=="target"', {
6079 '-fsanitize=cfi-vcall',
6080 '-fsanitize=cfi-derived-cast',
6081 '-fsanitize=cfi-unrelated-cast',
6084 '-fsanitize=cfi-vcall',
6085 '-fsanitize=cfi-derived-cast',
6086 '-fsanitize=cfi-unrelated-cast',
6090 '-fsanitize=cfi-vcall',
6091 '-fsanitize=cfi-derived-cast',
6092 '-fsanitize=cfi-unrelated-cast',
6096 ['_toolset=="target" and _type!="static_library"', {
6099 '-fsanitize=cfi-vcall',
6100 '-fsanitize=cfi-derived-cast',
6101 '-fsanitize=cfi-unrelated-cast',
6109 'target_defaults': {
6110 'target_conditions': [
6111 ['_toolset=="target"', {
6113 '-fsanitize-blacklist=<(cfi_blacklist)',
6117 '-fsanitize-blacklist=<(cfi_blacklist)',
6126 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
6127 # This block adds *project-wide* configuration settings to each project
6128 # file. It's almost always wrong to put things here. Specify your
6129 # custom xcode_settings in target_defaults to add them to targets instead.
6132 # In an Xcode Project Info window, the "Base SDK for All Configurations"
6133 # setting sets the SDK on a project-wide basis. In order to get the
6134 # configured SDK to show properly in the Xcode UI, SDKROOT must be set
6135 # here at the project level.
6138 ['mac_sdk_path==""', {
6139 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
6141 'SDKROOT': '<(mac_sdk_path)', # -isysroot
6147 ['ios_sdk_path==""', {
6149 # TODO(justincohen): Ninja only supports simulator for now.
6150 ['"<(GENERATOR)"=="xcode"', {
6151 'SDKROOT': 'iphoneos<(ios_sdk)', # -isysroot
6153 'SDKROOT': 'iphonesimulator<(ios_sdk)', # -isysroot
6157 'SDKROOT': '<(ios_sdk_path)', # -isysroot
6162 # Target both iPhone and iPad.
6163 'TARGETED_DEVICE_FAMILY': '1,2',
6166 ['target_arch=="x64"', {
6171 ['target_arch=="ia32"', {
6180 # The Xcode generator will look for an xcode_settings section at the root
6181 # of each dict and use it to apply settings on a file-wide basis. Most
6182 # settings should not be here, they should be in target-specific
6183 # xcode_settings sections, or better yet, should use non-Xcode-specific
6184 # settings in target dicts. SYMROOT is a special case, because many other
6185 # Xcode variables depend on it, including variables such as
6186 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6187 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6188 # files to appear (when present) in the UI as actual files and not red
6189 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6190 # and therefore SYMROOT, needs to be set at the project level.
6191 'SYMROOT': '<(DEPTH)/xcodebuild',