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 # Force building against pre-built sysroot image on linux. By default
89 # the sysroot image is only used for Official builds or when cross
90 # compiling to arm or mips.
93 # Override buildtype to select the desired build flavor.
94 # Dev - everyday build for development/testing
95 # Official - release build (generally implies additional processing)
96 # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp
97 # conversion is done), some of the things which are now controlled by
98 # 'branding', such as symbol generation, will need to be refactored
99 # based on 'buildtype' (i.e. we don't care about saving symbols for
100 # non-Official # builds).
103 # Override branding to select the desired branding flavor.
104 'branding%': 'Chromium',
107 # Windows and Linux (including Chrome OS) use Aura and Ash.
108 ['OS=="win" or OS=="linux"', {
113 ['chromecast==1 and OS!="android"', {
123 # Whether we're a traditional desktop unix.
124 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and chromeos==0', {
130 # Embedded implies ozone.
136 'target_arch%': 'arm',
138 # Default architecture we're building for is the architecture we're
139 # building on, and possibly sub-architecture (for iOS builds).
140 'target_arch%': '<(host_arch)',
144 # Copy conditionally-set variables out one scope.
145 'chromeos%': '<(chromeos)',
146 'chromecast%': '<(chromecast)',
147 'desktop_linux%': '<(desktop_linux)',
148 'use_aura%': '<(use_aura)',
149 'use_ash%': '<(use_ash)',
150 'use_cras%': '<(use_cras)',
151 'use_ozone%': '<(use_ozone)',
152 'embedded%': '<(embedded)',
153 'use_libpci%': '<(use_libpci)',
154 'use_openssl%': '<(use_openssl)',
155 'use_openssl_certs%': '<(use_openssl_certs)',
156 'enable_viewport%': '<(enable_viewport)',
157 'enable_hidpi%': '<(enable_hidpi)',
158 'enable_topchrome_md%': '<(enable_topchrome_md)',
159 'buildtype%': '<(buildtype)',
160 'branding%': '<(branding)',
161 'branding_path_component%': '<(branding)',
162 'host_arch%': '<(host_arch)',
163 'target_arch%': '<(target_arch)',
165 'target_subarch%': '',
167 # The channel to build on Android: stable, beta, dev, canary, or
168 # default. "default" should be used on non-official builds.
169 'android_channel%': 'default',
171 # Set ARM architecture version.
174 # Use aurax11 for clipboard implementation. This is true on linux_aura.
175 'use_clipboard_aurax11%': 0,
179 # If no gomadir is set, it uses the default gomadir.
183 # The system root for cross-compiles. Default: none.
187 # The system libdir used for this ABI.
188 'system_libdir%': 'lib',
190 # Default MIPS arch variant. This is set in the conditions block
191 # below for MIPS targets.
192 'mips_arch_variant%': '',
194 # MIPS DSP ASE revision. Possible values are:
201 ['branding == "Chrome"', {
202 'branding_path_component%': 'google_chrome',
205 ['branding == "Chromium"', {
206 'branding_path_component%': 'chromium',
214 # Set default value of toolkit_views based on OS.
215 ['OS=="mac" or OS=="win" or chromeos==1 or use_aura==1', {
221 # Embedded builds use aura without ash or views.
228 # Enable HiDPI on Mac OS, Windows and Linux (including Chrome OS).
229 ['OS=="mac" or OS=="win" or OS=="linux"', {
233 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux.
234 ['chromeos==1 or OS=="win" or OS=="linux"', {
235 'enable_topchrome_md%': 1,
238 # On iOS, use NSS rather than OpenSSL. See http://crbug.com/338886.
243 # Enable App Launcher everywhere but mobile.
244 ['OS!="ios" and OS!="android"', {
245 'enable_app_list%': 1,
247 'enable_app_list%': 0,
250 ['use_aura==1 and OS!="android"', {
251 'use_default_render_theme%': 1,
253 'use_default_render_theme%': 0,
257 'use_ozone_evdev%': 1,
259 'use_ozone_evdev%': 0,
262 # Set default gomadir.
264 'gomadir': 'c:\\goma\\goma-win',
266 'gomadir': '<!(/bin/echo -n ${HOME}/goma)',
269 # Set the default "target_subarch" on iOS. Valid values are "arm32",
270 # "arm64" and "both" (meaning a fat binary).
272 'target_subarch%': 'arm64',
275 # Set arch variants for MIPS platforms.
276 ['target_arch=="mips64el"', {
279 'mips_arch_variant%': 'r6',
281 'mips_arch_variant%': 'r2',
286 ['target_arch=="mipsel"', {
287 'mips_arch_variant%': 'r1',
290 ['OS=="linux" and target_arch=="arm" and chromeos==0', {
291 # sysroot needs to be an absolute path otherwise it generates
292 # incorrect results when passed to pkg-config
293 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/build/linux/debian_wheezy_arm-sysroot',
294 }], # OS=="linux" and target_arch=="arm" and chromeos==0
296 ['OS=="linux" and ((branding=="Chrome" and buildtype=="Official" and chromeos==0) or use_sysroot==1)' , {
298 ['target_arch=="x64"', {
299 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/build/linux/debian_wheezy_amd64-sysroot',
301 ['target_arch=="ia32"', {
302 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/build/linux/debian_wheezy_i386-sysroot',
305 }], # OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0
307 ['OS=="linux" and target_arch=="mipsel"', {
308 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/build/linux/debian_wheezy_mips-sysroot',
313 # Copy conditionally-set variables out one scope.
314 'chromeos%': '<(chromeos)',
315 'chromecast%': '<(chromecast)',
316 'host_arch%': '<(host_arch)',
317 'target_arch%': '<(target_arch)',
318 'target_subarch%': '<(target_subarch)',
319 'mips_arch_variant%': '<(mips_arch_variant)',
320 'mips_dsp_rev%': '<(mips_dsp_rev)',
321 'toolkit_views%': '<(toolkit_views)',
322 'desktop_linux%': '<(desktop_linux)',
323 'use_aura%': '<(use_aura)',
324 'use_ash%': '<(use_ash)',
325 'use_cras%': '<(use_cras)',
326 'use_libpci%': '<(use_libpci)',
327 'use_ozone%': '<(use_ozone)',
328 'use_ozone_evdev%': '<(use_ozone_evdev)',
329 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
330 'embedded%': '<(embedded)',
331 'use_openssl%': '<(use_openssl)',
332 'use_openssl_certs%': '<(use_openssl_certs)',
333 'enable_viewport%': '<(enable_viewport)',
334 'enable_hidpi%': '<(enable_hidpi)',
335 'enable_topchrome_md%': '<(enable_topchrome_md)',
336 'android_channel%': '<(android_channel)',
337 'use_goma%': '<(use_goma)',
338 'gomadir%': '<(gomadir)',
339 'enable_app_list%': '<(enable_app_list)',
340 'use_default_render_theme%': '<(use_default_render_theme)',
341 'buildtype%': '<(buildtype)',
342 'branding%': '<(branding)',
343 'branding_path_component%': '<(branding_path_component)',
344 'arm_version%': '<(arm_version)',
345 'sysroot%': '<(sysroot)',
346 'chroot_cmd%': '<(chroot_cmd)',
347 'system_libdir%': '<(system_libdir)',
349 # Set to 1 to enable fast builds. Set to 2 for even faster builds
350 # (it disables debug info for fastest compilation - only for use
351 # on compile-only bots).
354 # Set to 1 to not store any build metadata, e.g. ifdef out all __DATE__
355 # and __TIME__. Set to 0 to reenable the use of these macros in the code
356 # base. See http://crbug.com/314403.
357 'dont_embed_build_metadata%': 1,
359 # Set to 1 to force Visual C++ to use legacy debug information format /Z7.
360 # This is useful for parallel compilation tools which can't support /Zi.
361 # Only used on Windows.
364 # Set to 1 to enable dcheck in Release build.
365 'dcheck_always_on%': 0,
367 # Set to 1 to make a build that disables unshipped tracing events.
368 # Note: this setting is ignored if buildtype=="Official".
369 'tracing_like_official_build%': 0,
371 # Set to 1 to make a build that disables activation of field trial tests
372 # specified in testing/variations/fieldtrial_testing_config_*.json.
373 # Note: this setting is ignored if branding=="Chrome".
374 'fieldtrial_testing_like_official_build%': 0,
376 # Disable image loader component extension by default.
377 'image_loader_extension%': 0,
379 # Set NEON compilation flags.
382 # Detect NEON support at run-time.
383 'arm_neon_optional%': 0,
385 # Use libjpeg-turbo as the JPEG codec used by Chromium.
386 'use_libjpeg_turbo%': 1,
388 # Use system libjpeg. Note that the system's libjepg will be used even if
389 # use_libjpeg_turbo is set.
390 'use_system_libjpeg%': 0,
392 # By default, component is set to static_library and it can be overriden
393 # by the GYP command line or by ~/.gyp/include.gypi.
394 'component%': 'static_library',
396 # /analyze is off by default on Windows because it is very slow and noisy.
397 # Enable with GYP_DEFINES=win_analyze=1
400 # /debug:fastlink is off by default on Windows because it generates PDBs
401 # that are machine-local. But, great for local builds.
402 # Enable with GYP_DEFINES=win_fastlink=1
405 # Set to select the Title Case versions of strings in GRD files.
406 'use_titlecase_in_grd%': 0,
408 # Remoting compilation is enabled by default. Set to 0 to disable.
411 # Configuration policy is enabled by default. Set to 0 to disable.
412 'configuration_policy%': 1,
414 # Variable safe_browsing is used to control the build time configuration
415 # for safe browsing feature. Safe browsing can be compiled in 4 different
416 # levels: 0 disables it, 1 enables it fully, and 2 enables only UI and
417 # reporting features for use with Data Saver on Mobile, and 3 enables
418 # extended mobile protection via an external API. When 3 is fully
419 # deployed, it will replace 2.
422 # Web speech is enabled by default. Set to 0 to disable.
423 'enable_web_speech%': 1,
425 # 'Ok Google' hotwording is disabled by default. Set to 1 to enable. (This
426 # will download a closed-source NaCl module at startup.) Chrome-branded
427 # ChromeOS builds have this enabled by default.
428 'enable_hotwording%': 0,
430 # Notifications are compiled in by default. Set to 0 to disable.
431 'notifications%' : 1,
433 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for
434 # regular builds and 1 for ASan builds.
435 'mac_want_real_dsym%': 'default',
437 # If this is set, the clang plugins used on the buildbot will be used.
438 # Run tools/clang/scripts/update.sh to make sure they are compiled.
439 # This causes 'clang_chrome_plugins_flags' to be set.
440 # Has no effect if 'clang' is not set as well.
441 'clang_use_chrome_plugins%': 1,
443 # Enable building with ASAN (Clang's -fsanitize=address option).
444 # -fsanitize=address only works with clang, but asan=1 implies clang=1
445 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addresssanitizer
447 'asan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/asan/blacklist.txt',
448 # Enable coverage gathering instrumentation in sanitizer tools. This flag
449 # also controls coverage granularity (1 for function-level coverage, 2
450 # for block-level coverage).
451 'sanitizer_coverage%': 0,
452 # Deprecated, only works if |sanitizer_coverage| isn't set.
453 # TODO(glider): remove this flag.
455 # Enable intra-object-overflow detection in ASan (experimental).
456 'asan_field_padding%': 0,
458 # Enable Chromium overrides of the default configurations for various
459 # dynamic tools (like ASan).
460 'use_sanitizer_options%': 0,
462 # Enable building with SyzyAsan.
463 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo
466 # Enable crash reporting via Kasko.
469 # Enable building with LSan (Clang's -fsanitize=leak option).
470 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1
471 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaksanitizer
474 # Enable building with TSan (Clang's -fsanitize=thread option).
475 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1
476 # See http://clang.llvm.org/docs/ThreadSanitizer.html
478 'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/tsan_v2/ignores.txt',
480 # Enable building with MSan (Clang's -fsanitize=memory option).
481 # MemorySanitizer only works with clang, but msan=1 implies clang=1
482 # See http://clang.llvm.org/docs/MemorySanitizer.html
484 'msan_blacklist%': '<(PRODUCT_DIR)/../../tools/msan/blacklist.txt',
485 # Track where uninitialized memory originates from. From fastest to
486 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2
487 # - track the chain of stores leading from allocation site to use site.
488 'msan_track_origins%': 2,
490 # Enable building with UBSan (Clang's -fsanitize=undefined option).
491 # -fsanitize=undefined only works with clang, but ubsan=1 implies clang=1
492 # See http://clang.llvm.org/docs/UsersManual.html
494 'ubsan_blacklist%': '<(PRODUCT_DIR)/../../tools/ubsan/blacklist.txt',
495 'ubsan_vptr_blacklist%': '<(PRODUCT_DIR)/../../tools/ubsan/vptr_blacklist.txt',
497 # Enable building with UBsan's vptr (Clang's -fsanitize=vptr option).
498 # -fsanitize=vptr only works with clang, but ubsan_vptr=1 implies clang=1
501 # Use dynamic libraries instrumented by one of the sanitizers
502 # instead of the standard system libraries. Set this flag to build the
503 # libraries from source.
504 'use_instrumented_libraries%': 0,
506 # Use dynamic libraries instrumented by one of the sanitizers
507 # instead of the standard system libraries. Set this flag to download
508 # prebuilt binaries from GCS.
509 'use_prebuilt_instrumented_libraries%': 0,
511 # Use libc++ (third_party/libc++ and third_party/libc++abi) instead of
512 # stdlibc++ as standard library. This is intended to use for instrumented
514 'use_custom_libcxx%': 0,
516 # Use system libc++ instead of the default C++ library, usually libstdc++.
517 # This is intended for iOS builds only.
518 'use_system_libcxx%': 0,
520 # Use a modified version of Clang to intercept allocated types and sizes
521 # for allocated objects. clang_type_profiler=1 implies clang=1.
522 # See http://dev.chromium.org/developers/deep-memory-profiler/cpp-object-type-identifier
523 # TODO(dmikurube): Support mac. See http://crbug.com/123758#c11
524 'clang_type_profiler%': 0,
526 # Set to true to instrument the code with function call logger.
527 # See src/third_party/cygprofile/cyg-profile.cc for details.
528 'order_profiling%': 0,
530 # Use the provided profiled order file to link Chrome image with it.
531 # This makes Chrome faster by better using CPU cache when executing code.
532 # This is known as PGO (profile guided optimization).
533 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-effort
534 'order_text_section%' : "",
536 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
537 # libraries on linux x86-64 and arm, plus ASLR.
540 # Whether one-click signin is enabled or not.
541 'enable_one_click_signin%': 0,
543 # Whether to back up data before sync.
544 'enable_pre_sync_backup%': 0,
546 # Enable Chrome browser extensions
547 'enable_extensions%': 1,
550 'enable_google_now%': 1,
552 # Enable basic printing support and UI.
553 'enable_basic_printing%': 1,
555 # Enable printing with print preview. It does not imply
556 # enable_basic_printing. It's possible to build Chrome with preview only.
557 'enable_print_preview%': 1,
559 # Set the version of CLD.
564 # For CLD2, the size of the tables that should be included in the build
565 # Only evaluated if cld_version == 2 or if building the CLD2 dynamic data
567 # See third_party/cld_2/cld_2.gyp for more information.
568 # 0: Small tables, lower accuracy
569 # 2: Large tables, high accuracy
570 'cld2_table_size%': 2,
572 # Enable spell checker.
573 'enable_spellcheck%': 1,
575 # Use the operating system spellchecker, e.g. NSSpellChecker on Mac or
576 # SpellCheckerSession on Android.
577 'use_browser_spellchecker%': 0,
579 # Webrtc compilation is enabled by default. Set to 0 to disable.
582 # Media router support is enabled by default. Set to 0 to disable.
583 'enable_media_router%': 1,
585 # Enables use of the session service, which is enabled by default.
586 # Support for disabling depends on the platform.
587 'enable_session_service%': 1,
589 # Enables theme support, which is enabled by default. Support for
590 # disabling depends on the platform.
593 # Enables autofill dialog and associated features; disabled by default.
594 'enable_autofill_dialog%' : 0,
596 # Defaults Wallet integration in Autofill dialog to use production
597 # servers. Unofficial builds won't have the proper API keys.
598 'enable_prod_wallet_service%': 0,
600 # Enables support for background apps.
601 'enable_background%': 1,
603 # Enable the task manager by default.
604 'enable_task_manager%': 1,
606 # Enables used resource whitelist generation; disabled by default.
607 'enable_resource_whitelist_generation%': 0,
609 # Enable FILE support by default.
610 'disable_file_support%': 0,
612 # Enable FTP support by default.
613 'disable_ftp_support%': 0,
615 # Use native android functions in place of ICU. Not supported by most
617 'use_icu_alternatives_on_android%': 0,
619 # Use of precompiled headers on Windows.
621 # This variable may be explicitly set to 1 (enabled) or 0
622 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
623 # This setting will override the default.
626 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders
628 'chromium_win_pch%': 0,
631 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts',
632 # Set this to true when building with Clang.
633 # See http://code.google.com/p/chromium/wiki/Clang for details.
634 # If this is set, clang is used as both host and target compiler in
635 # cross-compile builds.
638 # Use experimental lld linker instead of the platform's default linker.
641 # Enable plugin installation by default.
642 'enable_plugin_installation%': 1,
644 # Specifies whether to use canvas_skia.cc in place of platform
645 # specific implementations of gfx::Canvas. Affects text drawing in the
647 # TODO(asvitkine): Enable this on all platforms and delete this flag.
648 # http://crbug.com/105550
649 'use_canvas_skia%': 0,
651 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work
652 # with one of those tools.
653 'build_for_tool%': '',
655 'wix_path%': '<(DEPTH)/third_party/wix',
657 # Supervised users are enabled by default.
658 'enable_supervised_users%': 1,
660 # Platform sends memory pressure signals natively.
661 'native_memory_pressure_signals%': 0,
664 'enable_service_discovery%': 0,
665 'enable_wifi_bootstrapping%': 0,
666 'enable_hangout_services_extension%': 0,
668 # Enable the Syzygy optimization step.
669 'syzygy_optimize%': 0,
671 # Enable hole punching for the protected video.
674 # Automatically select platforms under ozone. Turn this off to
675 # build only explicitly selected platforms.
676 'ozone_auto_platforms%': 1,
678 # If this is set clang is used as host compiler, but not as target
679 # compiler. Always do this by default.
682 # Variables to control Link-Time Optimization (LTO).
683 # On Android, the variable use_lto enables LTO on code compiled with -Os,
684 # and use_lto_o2 enables LTO on code compiled with -O2. On other
685 # platforms, use_lto enables LTO in all translation units, and use_lto_o2
688 # On Linux and Android, when using LLVM LTO, the script
689 # build/download_gold_plugin.py must be run to download a linker plugin.
690 # On Mac, LLVM needs to be built from scratch using
691 # tools/clang/scripts/update.py and the absolute path to
692 # third_party/llvm-build/Release+Asserts/lib must be added to
693 # $DYLD_LIBRARY_PATH to pick up the right version of the linker plugin.
695 # On Android, the variables must *not* be enabled at the same time.
696 # In this case LTO would 'merge' the optimization flags at link-time
697 # which would lead to all code be optimized with -O2. See crbug.com/407544
701 # Allowed level of identical code folding in the gold linker.
702 'gold_icf_level%': 'all',
704 # Libxkbcommon usage.
707 # Control Flow Integrity for virtual calls and casts.
708 # See http://clang.llvm.org/docs/ControlFlowIntegrity.html
712 'cfi_blacklist%': '<(PRODUCT_DIR)/../../tools/cfi/blacklist.txt',
714 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa.
715 'mac_views_browser%': 0,
717 # By default, use ICU data file (icudtl.dat).
718 'icu_use_data_file_flag%': 1,
720 # Turn on JNI generation optimizations by default.
721 'optimize_jni_generation%': 1,
724 # A flag for POSIX platforms
731 # A flag for BSD platforms
732 ['OS=="freebsd" or OS=="openbsd"', {
739 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris")', {
745 # libudev usage. This currently only affects the content layer.
746 ['OS=="linux" and embedded==0', {
752 # Flags to use X11 on non-Mac POSIX platforms.
753 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
760 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
766 # Flags to use pango and cairo.
767 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', {
776 ['OS=="linux" and embedded==0', {
782 # We always use skia text rendering in Aura on Windows, since GDI
783 # doesn't agree with our BackingStore.
784 # TODO(beng): remove once skia text rendering is on by default.
785 ['use_aura==1 and OS=="win"', {
786 'enable_skia_text%': 1,
789 # A flag to enable or disable our compile-time dependency
790 # on gnome-keyring. If that dependency is disabled, no gnome-keyring
791 # support will be available. This option is useful
792 # for Linux distributions and for Aura.
793 ['OS!="linux" or chromeos==1', {
794 'use_gnome_keyring%': 0,
796 'use_gnome_keyring%': 1,
799 ['OS=="mac" or OS=="ios"', {
800 # Mac and iOS want Title Case strings
801 'use_titlecase_in_grd%': 1,
804 # Enable loader extensions on Chrome OS.
806 'image_loader_extension%': 1,
808 'image_loader_extension%': 0,
811 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
812 'enable_one_click_signin%': 1,
813 'enable_pre_sync_backup%': 1,
817 'enable_extensions%': 0,
818 'enable_google_now%': 0,
823 'arm_neon_optional%': 1,
824 'native_memory_pressure_signals%': 1,
825 'enable_basic_printing%': 1,
826 'enable_print_preview%': 0,
827 'enable_task_manager%':0,
831 # Android and OSX have built-in spellcheckers that can be utilized.
832 ['OS=="android" or OS=="mac"', {
833 'use_browser_spellchecker%': 1,
836 # Android OS includes support for proprietary codecs regardless of
837 # building Chromium or Google Chrome. We also ship Google Chrome and
838 # Chromecast with proprietary codecs.
839 ['OS=="android" or branding=="Chrome" or chromecast==1', {
840 'proprietary_codecs%': 1,
842 'proprietary_codecs%': 0,
845 ['OS=="mac" or OS=="ios"', {
846 'native_memory_pressure_signals%': 1,
849 # Enable autofill dialog when not on iOS.
851 'enable_autofill_dialog%': 1,
854 ['buildtype=="Official"', {
855 'enable_prod_wallet_service%': 1,
858 # Enable hotwording on Chrome-branded ChromeOS builds.
859 ['branding=="Chrome" and chromeos==1', {
860 'enable_hotwording%': 1,
868 'disable_ftp_support%': 1,
869 'enable_extensions%': 0,
870 'enable_google_now%': 0,
872 'cld2_table_size%': 0,
873 'enable_basic_printing%': 0,
874 'enable_print_preview%': 0,
875 'enable_session_service%': 0,
876 'enable_spellcheck%': 0,
882 'enable_supervised_users%': 0,
883 'enable_task_manager%': 0,
884 'use_system_libcxx%': 1,
885 'enable_media_router%': 0,
888 # Use GPU accelerated cross process image transport by default
889 # on linux builds with the Aura window manager
890 ['use_aura==1 and OS=="linux"', {
891 'ui_compositor_image_transport%': 1,
893 'ui_compositor_image_transport%': 0,
896 # Turn precompiled headers on by default.
897 ['OS=="win" and buildtype!="Official"', {
898 'chromium_win_pch%': 1
901 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', {
902 'enable_plugin_installation%': 0,
904 'enable_plugin_installation%': 1,
907 # Whether PPAPI is enabled.
908 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', {
909 'enable_plugins%': 0,
911 'enable_plugins%': 1,
914 # linux_use_bundled_gold: whether to use the gold linker binary checked
915 # into third_party/binutils. Force this off via GYP_DEFINES when you
916 # are using a custom toolchain and need to control -B in ldflags.
917 # Do not use 32-bit gold on 32-bit hosts as it runs out address space
918 # for component=static_library builds.
919 ['(OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch=="arm" or (target_arch=="ia32" and host_arch=="x64"))', {
920 'linux_use_bundled_gold%': 1,
922 'linux_use_bundled_gold%': 0,
925 # linux_use_bundled_binutils: whether to use the binary binutils
926 # checked into third_party/binutils. These are not multi-arch so cannot
927 # be used except on x86 and x86-64 (the only two architectures which
928 # are currently checke in). Force this off via GYP_DEFINES when you
929 # are using a custom toolchain and need to control -B in cflags.
930 ['OS=="linux" and (target_arch=="x64")', {
931 'linux_use_bundled_binutils%': 1,
933 'linux_use_bundled_binutils%': 0,
936 # linux_use_gold_flags: whether to use build flags that rely on gold.
937 # On by default for x64 Linux.
938 ['OS=="linux" and target_arch=="x64"', {
939 'linux_use_gold_flags%': 1,
941 'linux_use_gold_flags%': 0,
944 # linux_use_debug_fission: whether to use split DWARF debug info
945 # files. This can reduce link time significantly, but is incompatible
946 # with some utilities such as icecc and ccache. Requires gold and
947 # gcc >= 4.8 or clang.
948 # http://gcc.gnu.org/wiki/DebugFission
949 ['OS=="linux" and target_arch=="x64"', {
950 'linux_use_debug_fission%': 1,
952 'linux_use_debug_fission%': 0,
955 ['OS=="android" or OS=="ios"', {
956 'enable_captive_portal_detection%': 0,
958 'enable_captive_portal_detection%': 1,
961 # Enable Skia UI text drawing incrementally on different platforms.
962 # http://crbug.com/105550
964 # On Aura, this allows per-tile painting to be used in the browser
966 ['OS!="android" and OS!="ios"', {
967 'use_canvas_skia%': 1,
971 'enable_basic_printing%': 0,
972 'enable_print_preview%': 1,
975 # Do not enable the Settings App on ChromeOS.
976 ['enable_app_list==1 and chromeos==0', {
977 'enable_settings_app%': 1,
979 'enable_settings_app%': 0,
982 # Whether tests targets should be run, archived or just have the
983 # dependencies verified. All the tests targets have the '_run' suffix,
984 # e.g. base_unittests_run runs the target base_unittests. The test
985 # target always calls tools/swarming_client/isolate.py. See the script's
986 # --help for more information. Meant to be overriden with GYP_DEFINES.
987 # TODO(maruel): Remove the conditions as more configurations are
989 ['OS!="ios" and OS!="android" and chromeos==0', {
990 'test_isolation_mode%': 'check',
992 'test_isolation_mode%': 'noop',
994 # Whether Android build uses OpenMAX DL FFT.
995 ['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")', {
996 # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mipsel.
997 # When enabled, this will also enable WebAudio support on
998 # Android for these architectures. Default is enabled. Whether
999 # WebAudio is actually available depends on runtime settings
1001 'use_openmax_dl_fft%': 1,
1003 'use_openmax_dl_fft%': 0,
1005 ['OS=="win" or OS=="linux"', {
1009 # Disable various features by default on embedded.
1012 'enable_basic_printing%': 0,
1013 'enable_print_preview%': 0,
1016 ['OS=="win" or OS=="mac"', {
1017 'enable_wifi_bootstrapping%' : 1,
1020 # Path to sas.dll, which provides the SendSAS function.
1021 # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs.85).aspx
1022 ['target_arch=="x64"', {
1023 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/amd64',
1025 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
1029 'pkg-config': '<(chroot_cmd) <(DEPTH)/build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)" "<(system_libdir)"',
1031 'pkg-config': 'pkg-config'
1034 # Enable WebVR support by default on Android
1035 # Still requires command line flag to access API
1043 # Setting this to '0' will cause V8's startup snapshot to be
1044 # embedded in the binary instead of being a external files.
1045 'v8_use_external_startup_data%': 1,
1047 # Set this to 1 to enable use of concatenated impulse responses
1048 # for the HRTF panner in WebAudio.
1049 'use_concatenated_impulse_responses': 1,
1051 # You can set the variable 'use_official_google_api_keys' to 1
1052 # to use the Google-internal file containing official API keys
1053 # for Google Chrome even in a developer build. Setting this
1054 # variable explicitly to 1 will cause your build to fail if the
1055 # internal file is missing.
1057 # The variable is documented here, but not handled in this file;
1058 # see //google_apis/determine_use_official_keys.gypi for the
1061 # Set the variable to 0 to not use the internal file, even when
1062 # it exists in your checkout.
1064 # Leave it unset in your include.gypi to have the variable
1065 # implicitly set to 1 if you have
1066 # src/google_apis/internal/google_chrome_api_keys.h in your
1067 # checkout, and implicitly set to 0 if not.
1069 # Note that official builds always behave as if the variable
1070 # was explicitly set to 1, i.e. they always use official keys,
1071 # and will fail to build if the internal file is missing.
1073 # NOTE: You MUST NOT explicitly set the variable to 2 in your
1074 # include.gypi or by other means. Due to subtleties of GYP, this
1075 # is not the same as leaving the variable unset, even though its
1077 # //google_apis/determine_use_official_keys.gypi is 2.
1079 # Set these to bake the specified API keys and OAuth client
1080 # IDs/secrets into your build.
1082 # If you create a build without values baked in, you can instead
1083 # set environment variables to provide the keys at runtime (see
1084 # src/google_apis/google_api_keys.h for details). Features that
1085 # require server-side APIs may fail to work if no keys are
1088 # Note that if you are building an official build or if
1089 # use_official_google_api_keys has been set to 1 (explicitly or
1090 # implicitly), these values will be ignored and the official
1091 # keys will be used instead.
1092 'google_api_key%': '',
1093 'google_default_client_id%': '',
1094 'google_default_client_secret%': '',
1095 # Native Client is enabled by default.
1096 'disable_nacl%': '0',
1098 # Native Client toolchains, enabled by default.
1099 'disable_pnacl%': 0,
1100 'disable_newlib%': 0,
1102 # Sets the default version name and code for Android app, by default we
1103 # do a developer build.
1104 'android_app_version_name%': 'Developer Build',
1105 'android_app_version_code%': 1,
1108 # Copy conditionally-set variables out one scope.
1109 'branding%': '<(branding)',
1110 'branding_path_component%': '<(branding_path_component)',
1111 'buildtype%': '<(buildtype)',
1112 'target_arch%': '<(target_arch)',
1113 'target_subarch%': '<(target_subarch)',
1114 'mips_arch_variant%': '<(mips_arch_variant)',
1115 'mips_dsp_rev%': '<(mips_dsp_rev)',
1116 'host_arch%': '<(host_arch)',
1117 'toolkit_views%': '<(toolkit_views)',
1118 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
1119 'use_aura%': '<(use_aura)',
1120 'use_ash%': '<(use_ash)',
1121 'use_cras%': '<(use_cras)',
1122 'use_libpci%': '<(use_libpci)',
1123 'use_openssl%': '<(use_openssl)',
1124 'use_openssl_certs%': '<(use_openssl_certs)',
1125 'use_nss_certs%': '<(use_nss_certs)',
1126 'use_udev%': '<(use_udev)',
1127 'os_bsd%': '<(os_bsd)',
1128 'os_posix%': '<(os_posix)',
1129 'use_dbus%': '<(use_dbus)',
1130 'use_glib%': '<(use_glib)',
1131 'use_pango%': '<(use_pango)',
1132 'use_cairo%': '<(use_cairo)',
1133 'use_ozone%': '<(use_ozone)',
1134 'use_ozone_evdev%': '<(use_ozone_evdev)',
1135 'use_xkbcommon%': '<(use_xkbcommon)',
1136 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
1137 'desktop_linux%': '<(desktop_linux)',
1138 'use_x11%': '<(use_x11)',
1139 'use_gnome_keyring%': '<(use_gnome_keyring)',
1140 'linux_fpic%': '<(linux_fpic)',
1141 'chromeos%': '<(chromeos)',
1142 'chromecast%': '<(chromecast)',
1143 'enable_viewport%': '<(enable_viewport)',
1144 'enable_hidpi%': '<(enable_hidpi)',
1145 'enable_topchrome_md%': '<(enable_topchrome_md)',
1146 'image_loader_extension%': '<(image_loader_extension)',
1147 'fastbuild%': '<(fastbuild)',
1148 'dont_embed_build_metadata%': '<(dont_embed_build_metadata)',
1149 'win_z7%': '<(win_z7)',
1150 'dcheck_always_on%': '<(dcheck_always_on)',
1151 'tracing_like_official_build%': '<(tracing_like_official_build)',
1152 'fieldtrial_testing_like_official_build%': '<(fieldtrial_testing_like_official_build)',
1153 'arm_version%': '<(arm_version)',
1154 'arm_neon%': '<(arm_neon)',
1155 'arm_neon_optional%': '<(arm_neon_optional)',
1156 'sysroot%': '<(sysroot)',
1157 'pkg-config%': '<(pkg-config)',
1158 'chroot_cmd%': '<(chroot_cmd)',
1159 'system_libdir%': '<(system_libdir)',
1160 'component%': '<(component)',
1161 'win_analyze%': '<(win_analyze)',
1162 'win_fastlink%': '<(win_fastlink)',
1163 'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_generation)',
1164 'use_titlecase_in_grd%': '<(use_titlecase_in_grd)',
1165 'remoting%': '<(remoting)',
1166 'enable_one_click_signin%': '<(enable_one_click_signin)',
1167 'enable_pre_sync_backup%': '<(enable_pre_sync_backup)',
1168 'enable_media_router%': '<(enable_media_router)',
1169 'enable_webrtc%': '<(enable_webrtc)',
1170 'chromium_win_pch%': '<(chromium_win_pch)',
1171 'configuration_policy%': '<(configuration_policy)',
1172 'safe_browsing%': '<(safe_browsing)',
1173 'enable_web_speech%': '<(enable_web_speech)',
1174 'enable_hotwording%': '<(enable_hotwording)',
1175 'notifications%': '<(notifications)',
1176 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
1177 'mac_want_real_dsym%': '<(mac_want_real_dsym)',
1179 'asan_blacklist%': '<(asan_blacklist)',
1180 'asan_coverage%': '<(asan_coverage)',
1181 'sanitizer_coverage%': '<(sanitizer_coverage)',
1182 'asan_field_padding%': '<(asan_field_padding)',
1183 'use_sanitizer_options%': '<(use_sanitizer_options)',
1184 'syzyasan%': '<(syzyasan)',
1185 'kasko%': '<(kasko)',
1186 'syzygy_optimize%': '<(syzygy_optimize)',
1189 'msan_blacklist%': '<(msan_blacklist)',
1190 'msan_track_origins%': '<(msan_track_origins)',
1192 'tsan_blacklist%': '<(tsan_blacklist)',
1193 'ubsan%': '<(ubsan)',
1194 'ubsan_blacklist%': '<(ubsan_blacklist)',
1195 'ubsan_vptr_blacklist%': '<(ubsan_vptr_blacklist)',
1196 'ubsan_vptr%': '<(ubsan_vptr)',
1197 'use_instrumented_libraries%': '<(use_instrumented_libraries)',
1198 'use_prebuilt_instrumented_libraries%': '<(use_prebuilt_instrumented_libraries)',
1199 'use_custom_libcxx%': '<(use_custom_libcxx)',
1200 'use_system_libcxx%': '<(use_system_libcxx)',
1201 'clang_type_profiler%': '<(clang_type_profiler)',
1202 'order_profiling%': '<(order_profiling)',
1203 'order_text_section%': '<(order_text_section)',
1204 'enable_extensions%': '<(enable_extensions)',
1205 'enable_plugin_installation%': '<(enable_plugin_installation)',
1206 'enable_plugins%': '<(enable_plugins)',
1207 'enable_session_service%': '<(enable_session_service)',
1208 'enable_themes%': '<(enable_themes)',
1209 'enable_autofill_dialog%': '<(enable_autofill_dialog)',
1210 'enable_prod_wallet_service%': '<(enable_prod_wallet_service)',
1211 'enable_background%': '<(enable_background)',
1212 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
1213 'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
1214 'linux_use_gold_flags%': '<(linux_use_gold_flags)',
1215 'linux_use_debug_fission%': '<(linux_use_debug_fission)',
1216 'use_canvas_skia%': '<(use_canvas_skia)',
1217 'test_isolation_mode%': '<(test_isolation_mode)',
1218 'enable_basic_printing%': '<(enable_basic_printing)',
1219 'enable_print_preview%': '<(enable_print_preview)',
1220 'enable_spellcheck%': '<(enable_spellcheck)',
1221 'use_browser_spellchecker%': '<(use_browser_spellchecker)',
1222 'enable_google_now%': '<(enable_google_now)',
1223 'cld_version%': '<(cld_version)',
1224 'cld2_table_size%': '<(cld2_table_size)',
1225 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1226 'disable_file_support%': '<(disable_file_support)',
1227 'disable_ftp_support%': '<(disable_ftp_support)',
1228 'use_icu_alternatives_on_android%': '<(use_icu_alternatives_on_android)',
1229 'enable_task_manager%': '<(enable_task_manager)',
1230 'sas_dll_path%': '<(sas_dll_path)',
1231 'wix_path%': '<(wix_path)',
1232 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1233 'use_system_libjpeg%': '<(use_system_libjpeg)',
1234 'android_channel%': '<(android_channel)',
1235 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1236 'gyp_managed_install%': 0,
1237 'create_standalone_apk%': 1,
1238 'enable_app_list%': '<(enable_app_list)',
1239 'use_default_render_theme%': '<(use_default_render_theme)',
1240 'enable_settings_app%': '<(enable_settings_app)',
1241 'google_api_key%': '<(google_api_key)',
1242 'google_default_client_id%': '<(google_default_client_id)',
1243 'google_default_client_secret%': '<(google_default_client_secret)',
1244 'enable_supervised_users%': '<(enable_supervised_users)',
1245 'native_memory_pressure_signals%': '<(native_memory_pressure_signals)',
1246 'enable_mdns%' : '<(enable_mdns)',
1247 'enable_service_discovery%' : '<(enable_service_discovery)',
1248 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)',
1249 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)',
1250 'proprietary_codecs%': '<(proprietary_codecs)',
1251 'use_goma%': '<(use_goma)',
1252 'gomadir%': '<(gomadir)',
1253 'use_lto%': '<(use_lto)',
1254 'use_lto_o2%': '<(use_lto_o2)',
1255 'gold_icf_level%': '<(gold_icf_level)',
1256 'video_hole%': '<(video_hole)',
1257 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)',
1258 'cfi_vptr%': '<(cfi_vptr)',
1259 'cfi_diag%': '<(cfi_diag)',
1260 'cfi_blacklist%': '<(cfi_blacklist)',
1261 'mac_views_browser%': '<(mac_views_browser)',
1262 'android_app_version_name%': '<(android_app_version_name)',
1263 'android_app_version_code%': '<(android_app_version_code)',
1264 'enable_webvr%': '<(enable_webvr)',
1266 # Turns on compiler optimizations in V8 in Debug build.
1267 'v8_optimized_debug%': 1,
1269 # Use system protobuf instead of bundled one.
1270 'use_system_protobuf%': 0,
1272 # Use system yasm instead of bundled one.
1273 'use_system_yasm%': 0,
1275 # Use system ICU instead of bundled one.
1276 'use_system_icu%' : 0,
1278 # Default to enabled PIE; this is important for ASLR but we may need to be
1279 # able to turn it off for various reasons.
1280 'linux_disable_pie%': 0,
1282 # The release channel that this build targets. This is used to restrict
1283 # channel-specific build options, like which installer packages to create.
1284 # The default is 'all', which does no channel-specific filtering.
1287 # Override chromium_mac_pch and set it to 0 to suppress the use of
1288 # precompiled headers on the Mac. Prefix header injection may still be
1289 # used, but prefix headers will not be precompiled. This is useful when
1290 # using distcc to distribute a build to compile slaves that don't
1291 # share the same compiler executable as the system driving the compilation,
1292 # because precompiled headers rely on pointers into a specific compiler
1293 # executable's image. Setting this to 0 is needed to use an experimental
1294 # Linux-Mac cross compiler distcc farm.
1295 'chromium_mac_pch%': 1,
1297 # The default value for mac_strip in target_defaults. This cannot be
1298 # set there, per the comment about variable% in a target_defaults.
1299 'mac_strip_release%': 0,
1301 # Set to 1 to enable java code coverage. Instruments classes during build
1302 # to produce .ec files during runtime.
1303 'emma_coverage%': 0,
1305 # EMMA filter string consisting of a list of inclusion/exclusion patterns
1306 # separated with whitespace and/or comma. Only has effect if
1307 # 'emma_coverage=1'.
1310 # Set to 1 to enable running Android lint on java/class files.
1313 # Although base/allocator lets you select a heap library via an
1314 # environment variable, the libcmt shim it uses sometimes gets in
1315 # the way. To disable it entirely, and switch to normal msvcrt, do e.g.
1316 # 'win_use_allocator_shim': 0,
1317 # 'win_release_RuntimeLibrary': 2
1318 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build.
1319 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt
1321 # TODO(bradnelson): eliminate this when possible.
1322 # To allow local gyp files to prevent release.vsprops from being included.
1323 # Yes(1) means include release.vsprops.
1324 # Once all vsprops settings are migrated into gyp, this can go away.
1325 'msvs_use_common_release%': 1,
1327 # TODO(bradnelson): eliminate this when possible.
1328 # To allow local gyp files to override additional linker options for msvs.
1329 # Yes(1) means set use the common linker options.
1330 'msvs_use_common_linker_extras%': 1,
1332 # TODO(sgk): eliminate this if possible.
1333 # It would be nicer to support this via a setting in 'target_defaults'
1334 # in chrome/app/locales/locales.gypi overriding the setting in the
1335 # 'Debug' configuration in the 'target_defaults' dict below,
1336 # but that doesn't work as we'd like.
1337 'msvs_debug_link_incremental%': '2',
1339 # Needed for some of the largest modules.
1340 'msvs_debug_link_nonincremental%': '1',
1342 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows
1343 # to get incremental linking to be faster in debug builds.
1344 'incremental_chrome_dll%': '0',
1346 # Experimental setting to break chrome.dll into multiple pieces based on
1348 'chrome_multiple_dll%': '0',
1350 # Experimental setting to optimize Chrome's DLLs with PGO.
1351 'chrome_pgo_phase%': '0',
1353 # Whether the VS xtree header has been patched to disable warning 4702. If
1354 # it has, then we don't need to disable 4702 (unreachable code warning).
1355 # The patch is preapplied to the internal toolchain and hence all bots.
1356 'msvs_xtree_patched%': '<!pymod_do_main(win_is_xtree_patched)',
1359 'clang%': '<(clang)',
1360 'host_clang%': '<(host_clang)',
1361 'make_clang_dir%': '<(make_clang_dir)',
1362 'use_lld%': '<(use_lld)',
1364 # Control which version of clang to use when building for iOS. If set to
1365 # '1', uses the version of clang that ships with Xcode. If set to '0', uses
1366 # the version of clang that ships with the Chromium source. This variable
1367 # is automatically set to '1' in Official builds.
1370 # These two variables can be set in GYP_DEFINES while running
1371 # |gclient runhooks| to let clang run a plugin in every compilation.
1372 # Only has an effect if 'clang=1' is in GYP_DEFINES as well.
1374 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dylib clang_add_plugin=print-fns' gclient runhooks
1377 'clang_add_plugin%': '',
1379 # Tell ld64 to write map files describing binary layout. Useful
1380 # for looking at what contributes to binary size, e.g. with
1381 # https://github.com/nico/bloat
1382 'mac_write_linker_maps%': 0,
1384 # The default type of gtest.
1385 'gtest_target_type%': 'executable',
1387 # Enable sampling based profiler.
1388 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
1390 # Profile without optimizing out stack frames when profiling==1.
1391 'profiling_full_stack_frames%': '0',
1393 # And if we want to dump symbols for Breakpad-enabled builds.
1394 'linux_dump_symbols%': 0,
1395 # And if we want to strip the binary after dumping symbols.
1396 'linux_strip_binary%': 0,
1397 # If we want stack unwind support for backtrace().
1398 'debug_unwind_tables%': 1,
1399 'release_unwind_tables%': 1,
1401 # Override where to find binutils
1402 'binutils_version%': 0,
1403 'binutils_dir%': '',
1406 # Default of 'use_allocator' is set to 'none' if OS=='android' later.
1407 'use_allocator%': 'tcmalloc',
1409 # Set to 1 to link against libgnome-keyring instead of using dlopen().
1410 'linux_link_gnome_keyring%': 0,
1411 # Set to 1 to link against gsettings APIs instead of using dlopen().
1412 'linux_link_gsettings%': 0,
1414 # Enable use of OpenMAX DL FFT routines.
1415 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
1417 # Enable new NPDevice API.
1418 'enable_new_npdevice_api%': 0,
1420 # .gyp files or targets should set chromium_code to 1 if they build
1421 # Chromium-specific code, as opposed to external code. This variable is
1422 # used to control such things as the set of warnings to enable, and
1423 # whether warnings are treated as errors.
1424 'chromium_code%': 0,
1426 # Disable fatal linker warnings, similarly to how we make it possible
1427 # to disable -Werror (e.g. for different toolchain versions).
1428 'disable_fatal_linker_warnings%': 0,
1430 'release_valgrind_build%': 0,
1432 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
1433 'enable_wexit_time_destructors%': 0,
1435 # Build libpeerconnection as a static library by default.
1436 'libpeer_target_type%': 'static_library',
1438 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
1439 'internal_gles2_conform_tests%': 0,
1441 # Set to 1 to compile with the Khronos GL-CTS conformance tests.
1442 'internal_khronos_glcts_tests%': 0,
1444 # Set to 1 to compile the filter fuzzer.
1445 'internal_filter_fuzzer%': 0,
1447 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
1448 # so Cocoa is happy (http://crbug.com/20441).
1450 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB',
1451 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he',
1452 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv',
1453 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
1454 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk',
1455 'vi', 'zh-CN', 'zh-TW',
1458 # Pseudo locales are special locales which are used for testing and
1459 # debugging. They don't get copied to the final app. For more info,
1460 # check out https://www.chromium.org/developers/testing/fake-bidi
1467 # If debug_devtools is set to 1, JavaScript files for DevTools are
1468 # stored as is and loaded from disk. Otherwise, a concatenated file
1469 # is stored in resources.pak. It is still possible to load JS files
1470 # from disk by passing --debug-devtools cmdline switch.
1471 'debug_devtools%': 0,
1473 # The Java Bridge is not compiled in by default.
1476 # Code signing for iOS binaries. The bots need to be able to disable this.
1477 'chromium_ios_signing%': 1,
1479 # This flag is only used when disable_nacl==0 and disables all those
1480 # subcomponents which would require the installation of a native_client
1481 # untrusted toolchain.
1482 'disable_nacl_untrusted%': 0,
1484 # PNaCl toolchain does not support sanitizers. Disable by default.
1485 'enable_nacl_nonsfi_test%': 0,
1487 # Disable Dart by default.
1490 # Copy out the setting of disable_nacl.
1491 'disable_nacl%': '<(disable_nacl)',
1493 # Native Client toolchains, enabled by default.
1494 'disable_pnacl%': '<(disable_pnacl)',
1495 'disable_newlib%': '<(disable_newlib)',
1497 # Whether to build full debug version for Debug configuration on Android.
1498 # Compared to full debug version, the default Debug configuration on Android
1499 # has no full v8 debug, has size optimization and linker gc section, so that
1500 # we can build a debug version with acceptable size and performance.
1501 'android_full_debug%': 0,
1503 # Contains data about the attached devices for gyp_managed_install.
1504 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1506 'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
1507 'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
1509 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.1',
1510 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1512 # Whether we are using the rlz library or not. Platforms like Android send
1513 # rlz codes for searches but do not use the library.
1514 'enable_rlz_support%': 0,
1517 # Turns on the i18n support in V8.
1518 'v8_enable_i18n_support': 1,
1520 # Compile d8 for the host toolset.
1521 'v8_toolset_for_d8': 'host',
1523 # Use brlapi from brltty for braille display support.
1526 # Relative path to icu.gyp from this file.
1527 'icu_gyp_path': '../third_party/icu/icu.gyp',
1529 # IPC fuzzer is disabled by default.
1530 'enable_ipc_fuzzer%': 0,
1532 # Force disable libstdc++ debug mode.
1533 'disable_glibcxx_debug%': 0,
1535 # Set to 1 to compile with MSE support for MPEG2 TS
1536 'enable_mpeg2ts_stream_parser%': 0,
1538 # Support ChromeOS touchpad gestures with ozone.
1539 'use_evdev_gestures%': 0,
1541 # Default ozone platform (if no --ozone-platform flag).
1542 'ozone_platform%': "",
1544 # Ozone platforms to include in the build.
1545 'ozone_platform_caca%': 0,
1546 'ozone_platform_cast%': 0,
1547 'ozone_platform_drm%': 0,
1548 'ozone_platform_egltest%': 0,
1549 'ozone_platform_gbm%': 0,
1550 'ozone_platform_ozonex%': 0,
1551 'ozone_platform_test%': 0,
1553 # Experiment: http://crbug.com/426914
1556 # Used to set libjpeg_gyp_path. Chrome OS ui/gfx/gfx.gyp uses the IJG path
1557 # for robust login screen decoding.
1558 'libjpeg_ijg_gyp_path': '<(DEPTH)/third_party/libjpeg/libjpeg.gyp',
1559 'libjpeg_turbo_gyp_path': '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp',
1562 ['buildtype=="Official"', {
1563 # Continue to embed build meta data in Official builds, basically the
1564 # time it was built.
1565 # TODO(maruel): This decision should be revisited because having an
1566 # official deterministic build has high value too but MSVC toolset can't
1567 # generate anything deterministic with WPO enabled AFAIK.
1568 'dont_embed_build_metadata%': 0,
1570 # Enable the Syzygy optimization step for the official builds.
1571 ['OS=="win" and buildtype=="Official" and syzyasan!=1 and clang!=1', {
1572 'syzygy_optimize%': 1,
1574 'syzygy_optimize%': 0,
1576 # Get binutils version so we can enable debug fission if we can.
1577 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1579 # compiler_version doesn't work with clang
1580 # TODO(mithro): Land https://codereview.chromium.org/199793014/ so
1581 # compiler_version works with clang.
1582 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so
1583 # that it takes effect here.
1584 ['clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', {
1585 'binutils_version%': '<!pymod_do_main(compiler_version target assembler)',
1587 # On Android we know the binutils version in the toolchain.
1589 'binutils_version%': 222,
1591 ['host_arch=="x64"', {
1592 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1594 ['host_arch=="ia32"', {
1595 'binutils_dir%': 'third_party/binutils/Linux_ia32/Release/bin',
1597 # Our version of binutils in third_party/binutils
1598 ['linux_use_bundled_binutils==1', {
1599 'binutils_version%': 224,
1603 'binutils_version%': 0,
1605 # The version of GCC in use, set later in platforms that use GCC and have
1606 # not explicitly chosen to build with clang. Currently, this means all
1607 # platforms except Windows, Mac and iOS.
1608 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1609 # it takes effect here.
1610 ['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', {
1613 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1614 # We directly set the gcc version since we know what we use.
1617 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1618 'gcc_version%': '<!pymod_do_main(compiler_version target compiler)',
1622 'host_gcc_version%': 0,
1625 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=="True"', {
1626 'directx_sdk_path%': '<(directx_sdk_default_path)',
1628 'directx_sdk_path%': '$(DXSDK_DIR)',
1631 'windows_driver_kit_path%': '$(WDK_DIR)',
1633 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1635 ['target_arch=="mipsel" or target_arch=="mips64el"', {
1638 'nacl_untrusted_build%': 0,
1639 'use_allocator%': 'none',
1641 # Use a 64-bit linker to avoid running out of address space. The
1642 # buildbots should have a 64-bit kernel and a 64-bit libc installed.
1643 ['host_arch=="ia32" and target_arch=="ia32"', {
1644 # TODO(thestig) This is a horrible way to force the desired
1645 # configuration. Our gyp variable scoping is likely wrong and
1646 # needs to be cleaned up. The GN configuration should be changed
1648 'binutils_version%': 224,
1649 'linux_use_bundled_binutils%': '1',
1650 'linux_use_bundled_gold%': '1',
1651 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1653 # All Chrome builds have breakpad symbols, but only process the
1654 # symbols from official builds.
1655 ['(branding=="Chrome" and buildtype=="Official")', {
1656 'linux_dump_symbols%': 1,
1658 # Omit unwind support in official release builds to save space. We
1659 # can use breakpad for these builds.
1660 'release_unwind_tables%': 0,
1663 }], # os_posix==1 and OS!="mac" and OS!="ios"
1666 'enable_background%': 0,
1667 'icu_use_data_file_flag%': 1,
1668 'enable_web_speech%': 0,
1669 'use_system_libxml%': 1,
1670 'use_system_sqlite%': 1,
1672 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1673 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
1674 'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr',
1675 'uk', 'vi', 'zh-CN', 'zh-TW',
1678 # iOS SDK and deployment target support. The |ios_sdk| value is left
1679 # blank so that when it is set in the project files it will be the
1680 # "current" iOS SDK. Forcing a specific SDK even if it is "current"
1681 # causes Xcode to spit out a warning for every single project file for
1682 # not using the "current" SDK.
1684 'ios_sdk_path%': '',
1685 'ios_deployment_target%': '7.0',
1688 # ios_product_name is set to the name of the .app bundle as it should
1690 ['branding=="Chrome"', {
1691 'ios_product_name%': 'Chrome',
1692 }, { # else: branding!="Chrome"
1693 'ios_product_name%': 'Chromium',
1695 ['branding=="Chrome" and buildtype=="Official"', {
1697 }, { # else: branding!="Chrome" or buildtype!="Official"
1703 # Location of Android NDK.
1706 # Standard libraries can use the relative path to the NDK.
1707 'android_ndk_root%': '../../third_party/android_tools/ndk/',
1708 # Unfortunately, it is required to use the absolute path to the SDK
1709 # because it us passed to ant which uses a different relative path
1711 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/sdk/',
1712 # Similarly, gdbserver and the Android toolchain need to use the
1713 # absolute path to the NDK because they are used at different levels
1715 'android_ndk_absolute_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/ndk/',
1716 'android_host_arch%': '<!(uname -m)',
1717 # Android API-level of the SDK used for compilation.
1718 'android_sdk_version%': '23',
1719 'android_sdk_build_tools_version%': '23.0.0',
1720 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
1723 # Figure this out early since it needs symbols from libgcc.a, so it
1724 # has to be before that in the set of libraries.
1725 # ASan needs to dynamically link to libc++ even in static builds so
1726 # that it can interpose operator new.
1727 ['component=="shared_library" or asan==1', {
1728 'android_libcpp_library': 'c++_shared',
1729 'android_must_copy_system_libraries': 1,
1731 'android_libcpp_library': 'c++_static',
1732 'android_must_copy_system_libraries': 0,
1737 # Copy conditionally-set variables out one scope.
1738 'android_ndk_root%': '<(android_ndk_root)',
1739 'android_ndk_absolute_root%': '<(android_ndk_absolute_root)',
1740 'android_sdk_root%': '<(android_sdk_root)',
1741 'android_sdk_version%': '<(android_sdk_version)',
1742 'android_libcpp_root': '<(android_ndk_root)/sources/cxx-stl/llvm-libc++',
1743 'android_libcpp_library': '<(android_libcpp_library)',
1744 'android_must_copy_system_libraries': '<(android_must_copy_system_libraries)',
1745 'host_os%': '<(host_os)',
1747 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_version)',
1748 # Android SDK build tools (e.g. dx, aidl)
1749 'android_sdk_tools%': '<(android_sdk_root)/build-tools/<(android_sdk_build_tools_version)',
1751 # Android API level 16 is JB (Android 4.1) which is the minimum
1752 # platform requirement for Chrome on Android, we use it for native
1755 ['target_arch == "ia32"', {
1756 'android_app_abi%': 'x86',
1757 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86/gdbserver/gdbserver',
1758 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-16/arch-x86',
1759 'android_ndk_lib_dir%': 'usr/lib',
1760 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1762 ['target_arch == "x64"', {
1763 'android_app_abi%': 'x86_64',
1764 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86_64/gdbserver/gdbserver',
1765 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-x86_64',
1766 'android_ndk_lib_dir%': 'usr/lib64',
1767 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86_64-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1769 ['target_arch=="arm"', {
1772 'android_app_abi%': 'armeabi',
1774 'android_app_abi%': 'armeabi-v7a',
1777 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm/gdbserver/gdbserver',
1778 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-16/arch-arm',
1779 'android_ndk_lib_dir%': 'usr/lib',
1780 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/arm-linux-androideabi-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1782 ['target_arch == "arm64"', {
1783 'android_app_abi%': 'arm64-v8a',
1784 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm64/gdbserver/gdbserver',
1785 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-arm64',
1786 'android_ndk_lib_dir%': 'usr/lib',
1787 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1789 ['target_arch == "mipsel"', {
1790 'android_app_abi%': 'mips',
1791 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips/gdbserver/gdbserver',
1792 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-16/arch-mips',
1793 'android_ndk_lib_dir%': 'usr/lib',
1794 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mipsel-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1796 ['target_arch == "mips64el"', {
1797 'android_app_abi%': 'mips64',
1798 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips64/gdbserver/gdbserver',
1799 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-mips64',
1800 'android_ndk_lib_dir%': 'usr/lib64',
1801 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mips64el-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1805 # Copy conditionally-set variables out one scope.
1806 'android_app_abi%': '<(android_app_abi)',
1807 'android_gdbserver%': '<(android_gdbserver)',
1808 'android_ndk_root%': '<(android_ndk_root)',
1809 'android_ndk_sysroot%': '<(android_ndk_sysroot)',
1810 'android_sdk_root%': '<(android_sdk_root)',
1811 'android_sdk_version%': '<(android_sdk_version)',
1812 'android_toolchain%': '<(android_toolchain)',
1814 'android_ndk_include': '<(android_ndk_sysroot)/usr/include',
1815 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
1816 'android_sdk_tools%': '<(android_sdk_tools)',
1817 'android_aapt_path%': '<(android_sdk_tools)/aapt',
1818 'android_sdk%': '<(android_sdk)',
1819 'android_sdk_jar%': '<(android_sdk)/android.jar',
1821 'android_libcpp_root': '<(android_libcpp_root)',
1822 'android_libcpp_library': '<(android_libcpp_library)',
1823 'android_libcpp_include': '<(android_libcpp_root)/libcxx/include',
1824 'android_libcpp_libs_dir%': '<(android_libcpp_root)/libs/<(android_app_abi)',
1825 'android_must_copy_system_libraries': '<(android_must_copy_system_libraries)',
1826 'host_os%': '<(host_os)',
1828 # Location of the "objcopy" binary, used by both gyp and scripts.
1829 'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)',
1831 # Location of the "strip" binary, used by both gyp and scripts.
1832 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
1834 # Location of the "readelf" binary.
1835 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1837 # Determines whether we should optimize JNI generation at the cost of
1838 # breaking assumptions in the build system that when inputs have changed
1839 # the outputs should always change as well. This is meant purely for
1840 # developer builds, to avoid spurious re-linking of native files.
1841 'optimize_jni_generation%': '<(optimize_jni_generation)',
1843 # Use OpenSSL's struct X509 to represent certificates.
1844 'use_openssl_certs%': 1,
1846 'proprietary_codecs%': '<(proprietary_codecs)',
1847 'safe_browsing%': 3,
1848 'enable_web_speech%': 0,
1850 'use_allocator%': 'none',
1852 # Disable Native Client.
1855 # Android does not support background apps.
1856 'enable_background%': 0,
1858 # Sessions are store separately in the Java side.
1859 'enable_session_service%': 0,
1863 'gtest_target_type%': 'shared_library',
1866 'use_system_fontconfig%': 0,
1868 'use_system_fontconfig%': 1,
1871 'enable_mpeg2ts_stream_parser%': 1,
1872 'ffmpeg_branding%': 'ChromeOS',
1873 'ozone_platform_ozonex%': 1,
1874 'use_custom_freetype%': 0,
1875 'use_playready%': 0,
1877 ['target_arch=="arm"', {
1879 'arm_tune%': 'cortex-a9',
1885 ['chromecast==1 and OS!="android"', {
1886 'ozone_platform_cast%': 1
1893 # All Chrome builds have breakpad symbols, but only process the
1894 # symbols from official builds.
1895 ['(branding=="Chrome" and buildtype=="Official")', {
1896 'mac_strip_release%': 1,
1900 ['OS=="mac" or OS=="ios"', {
1904 # Mac OS X SDK and deployment target support. The SDK identifies
1905 # the version of the system headers that will be used, and
1906 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
1907 # macro. "Maximum allowed" refers to the operating system version
1908 # whose APIs are available in the headers. The deployment target
1909 # identifies the minimum system version that the built products are
1910 # expected to function on. It corresponds to the
1911 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these
1912 # macros are available, #include <AvailabilityMacros.h>. Additional
1913 # documentation on these macros is available at
1914 # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTION3
1915 # Chrome normally builds with the Mac OS X 10.6 SDK and sets the
1916 # deployment target to 10.6. Other projects, such as O3D, may
1917 # override these defaults.
1919 # Normally, mac_sdk_min is used to find an SDK that Xcode knows
1920 # about that is at least the specified version. In official builds,
1921 # the SDK must match mac_sdk_min exactly. If the SDK is installed
1922 # someplace that Xcode doesn't know about, set mac_sdk_path to the
1923 # path to the SDK; when set to a non-empty string, SDK detection
1924 # based on mac_sdk_min will be bypassed entirely.
1927 'mac_sdk_min%': '10.8',
1928 }, { # else OS!="ios"
1929 'mac_sdk_min%': '10.10',
1932 'mac_sdk_path%': '',
1934 'mac_deployment_target%': '10.6',
1937 'mac_sdk_min': '<(mac_sdk_min)',
1938 'mac_sdk_path': '<(mac_sdk_path)',
1939 'mac_deployment_target': '<(mac_deployment_target)',
1941 # Compile in Breakpad support by default so that it can be
1942 # tested, even if it is not enabled by default at runtime.
1943 'mac_breakpad_compiled_in%': 1,
1945 # mac_product_name is set to the name of the .app bundle as it should
1946 # appear on disk. This duplicates data from
1947 # chrome/app/theme/chromium/BRANDING and
1948 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get
1949 # these names into the build system.
1950 ['branding=="Chrome"', {
1951 'mac_product_name%': 'Google Chrome',
1952 }, { # else: branding!="Chrome"
1953 'mac_product_name%': 'Chromium',
1955 # Official mac builds require a specific OS X SDK, but iOS and
1956 # non-official mac builds do not.
1957 ['branding=="Chrome" and buildtype=="Official" and OS=="mac"', {
1958 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac_sdk_min) --sdk_path=<(mac_sdk_path))',
1960 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))',
1962 ['branding=="Chrome" and buildtype=="Official"', {
1963 # Enable uploading crash dumps.
1964 'mac_breakpad_uploads%': 1,
1965 # Enable dumping symbols at build time for use by Mac Breakpad.
1967 # Enable Keystone auto-update support.
1969 }, { # else: branding!="Chrome" or buildtype!="Official"
1970 'mac_breakpad_uploads%': 0,
1975 }], # OS=="mac" or OS=="ios"
1978 # This is the architecture convention used in WinSDK paths.
1979 ['target_arch=="ia32"', {
1980 'winsdk_arch%': 'x86',
1982 'winsdk_arch%': '<(target_arch)',
1984 ['component=="shared_library" or MSVS_VERSION == "2015"', {
1985 # TODO(scottmg): The allocator shimming doesn't work on the 2015 CRT
1986 # and we are hoping to be able to remove it if an additional feature
1987 # lands in the 2015 CRT API. For now, don't shim and revisit once
1988 # VS2015 is RTM: http://crbug.com/481611.
1989 'win_use_allocator_shim%': 0,
1991 ['component=="static_library"', {
1992 # Turn on multiple dll by default on Windows when in static_library.
1993 'chrome_multiple_dll%': 1,
1995 ['asan==1 or syzyasan==1', {
1996 'win_use_allocator_shim%': 0,
2001 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', {
2002 # Only enabled by default for ninja because it's buggy in VS.
2003 # Not enabled for component=static_library because some targets
2004 # are too large and the toolchain fails due to the size of the
2006 'incremental_chrome_dll%': 1,
2008 # Don't do incremental linking for large modules on 32-bit or when
2009 # component=static_library as the toolchain fails due to the size of
2011 ['MSVS_OS_BITS==32 or component=="static_library"', {
2012 'msvs_large_module_debug_link_mode%': '1', # No
2014 'msvs_large_module_debug_link_mode%': '2', # Yes
2017 'nacl_win64_defines': [
2018 # This flag is used to minimize dependencies when building
2019 # Native Client loader for 64-bit Windows.
2022 # Need to include allocator target, but exclude tcmalloc files.
2023 'use_allocator%': 'winheap',
2026 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios" and embedded==0', {
2032 ['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win") and chromecast==0', {
2033 'enable_pepper_cdms%': 1,
2035 'enable_pepper_cdms%': 0,
2038 ['OS=="android" or chromecast==1', {
2039 'enable_browser_cdms%': 1,
2041 'enable_browser_cdms%': 0,
2044 # Native Client glibc toolchain is enabled
2045 # by default except on arm, mips and mips64.
2046 ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"', {
2047 'disable_glibc%': 1,
2049 'disable_glibc%': 0,
2052 # Set the relative path from this file to the GYP file of the JPEG
2053 # library used by Chromium.
2054 ['use_system_libjpeg==1 or use_libjpeg_turbo==0', {
2055 # Configuration for using the system libjeg is here.
2056 'libjpeg_gyp_path': '<(libjpeg_ijg_gyp_path)',
2058 'libjpeg_gyp_path': '<(libjpeg_turbo_gyp_path)',
2061 # Options controlling the use of GConf (the classic GNOME configuration
2062 # system) and GIO, which contains GSettings (the new GNOME config system).
2063 ['chromeos==1 or embedded==1', {
2071 # Set up -D and -E flags passed into grit.
2072 ['branding=="Chrome"', {
2073 # TODO(mmoss) The .grd files look for _google_chrome, but for
2074 # consistency they should look for google_chrome_build like C++.
2075 'grit_defines': ['-D', '_google_chrome',
2076 '-E', 'CHROMIUM_BUILD=google_chrome'],
2078 'grit_defines': ['-D', '_chromium',
2079 '-E', 'CHROMIUM_BUILD=chromium'],
2082 'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'],
2084 ['desktop_linux==1', {
2085 'grit_defines': ['-D', 'desktop_linux'],
2087 ['toolkit_views==1', {
2088 'grit_defines': ['-D', 'toolkit_views'],
2091 'grit_defines': ['-D', 'use_aura'],
2094 'grit_defines': ['-D', 'use_ash'],
2096 ['use_nss_certs==1', {
2097 'grit_defines': ['-D', 'use_nss_certs'],
2100 'grit_defines': ['-D', 'use_ozone'],
2102 ['image_loader_extension==1', {
2103 'grit_defines': ['-D', 'image_loader_extension'],
2105 ['use_titlecase_in_grd==1', {
2106 'grit_defines': ['-D', 'use_titlecase'],
2111 '-E', 'ANDROID_JAVA_TAGGED_ONLY=true',
2112 '--no-output-all-resource-defines',
2115 ['OS=="mac" or OS=="ios"', {
2116 'grit_defines': ['-D', 'scale_factors=2x'],
2120 'enable_coverage%': 0,
2124 '--no-output-all-resource-defines',
2126 # iOS uses a whitelist to filter resources.
2127 'grit_whitelist%': '<(DEPTH)/build/ios/grit_whitelist.txt',
2129 # Enable host builds when generating with ninja-ios.
2131 ['"<(GENERATOR)"=="ninja"', {
2135 # Use the version of clang shipped with Xcode when building official
2136 # version of Chrome for iOS.
2138 # TODO(eugenebut): Remove enable_coverage check once
2139 # libclang_rt.profile_ios.a is bundled with Chromium's clang.
2140 # http://crbug.com/450379
2141 ['buildtype=="Official" or enable_coverage', {
2146 ['enable_extensions==1', {
2147 'grit_defines': ['-D', 'enable_extensions'],
2149 ['enable_plugins!=0', {
2150 'grit_defines': ['-D', 'enable_plugins'],
2152 ['enable_basic_printing==1 or enable_print_preview==1', {
2153 'grit_defines': ['-D', 'enable_printing'],
2155 ['enable_print_preview==1', {
2156 'grit_defines': ['-D', 'enable_print_preview'],
2158 ['enable_themes==1', {
2159 'grit_defines': ['-D', 'enable_themes'],
2161 ['enable_app_list==1', {
2162 'grit_defines': ['-D', 'enable_app_list'],
2164 ['enable_settings_app==1', {
2165 'grit_defines': ['-D', 'enable_settings_app'],
2167 ['enable_google_now==1', {
2168 'grit_defines': ['-D', 'enable_google_now'],
2170 ['use_concatenated_impulse_responses==1', {
2171 'grit_defines': ['-D', 'use_concatenated_impulse_responses'],
2173 ['enable_media_router==1', {
2174 'grit_defines': ['-D', 'enable_media_router'],
2176 ['enable_webrtc==1', {
2177 'grit_defines': ['-D', 'enable_webrtc'],
2179 ['enable_hangout_services_extension==1', {
2180 'grit_defines': ['-D', 'enable_hangout_services_extension'],
2182 ['enable_task_manager==1', {
2183 'grit_defines': ['-D', 'enable_task_manager'],
2185 ['notifications==1', {
2186 'grit_defines': ['-D', 'enable_notifications'],
2188 ['enable_wifi_bootstrapping==1', {
2189 'grit_defines': ['-D', 'enable_wifi_bootstrapping'],
2191 ['mac_views_browser==1', {
2192 'grit_defines': ['-D', 'mac_views_browser'],
2194 ['enable_topchrome_md==1', {
2195 'grit_defines': ['-D', 'enable_topchrome_md'],
2197 ['enable_resource_whitelist_generation==1 and OS!="win"', {
2198 'grit_rc_header_format': ['-h', '#define {textual_id} _Pragma("whitelisted_resource_{numeric_id}") {numeric_id}'],
2200 ['enable_resource_whitelist_generation==1 and OS=="win"', {
2201 'grit_rc_header_format': ['-h', '#define {textual_id} __pragma(message("whitelisted_resource_{numeric_id}")) {numeric_id}'],
2203 ['enable_mdns==1 or OS=="mac"', {
2204 'grit_defines': ['-D', 'enable_service_discovery'],
2205 'enable_service_discovery%': 1
2207 ['clang_use_chrome_plugins==1', {
2213 ['OS=="mac" or OS=="ios"', {
2214 'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.dylib',
2215 }, { # OS != "mac" or OS != "ios"
2216 'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.so',
2220 'clang_dynlib_flags%': '-Xclang -load -Xclang <(clang_lib_path) ',
2222 # On Windows, the plugin is built directly into clang, so there's
2223 # no need to load it dynamically.
2224 'clang_dynlib_flags%': '',
2226 # https://crbug.com/441916
2227 ['OS=="android" or OS=="linux" or OS=="mac"', {
2228 'clang_plugin_args%': '-Xclang -plugin-arg-find-bad-constructs -Xclang check-templates ',
2229 }, { # OS != "linux"
2230 'clang_plugin_args%': ''
2234 # If you change these, also change build/config/clang/BUILD.gn.
2235 'clang_chrome_plugins_flags%':
2236 '<(clang_dynlib_flags)'
2237 '-Xclang -add-plugin -Xclang find-bad-constructs <(clang_plugin_args)',
2239 ['asan==1 or msan==1 or lsan==1 or tsan==1', {
2241 'use_allocator%': 'none',
2242 'use_sanitizer_options%': 1,
2245 ['OS=="linux" and asan==0 and msan==0 and lsan==0 and tsan==0', {
2246 # PNaCl toolchain Non-SFI build only supports linux OS build.
2247 # Also, it does not support sanitizers.
2248 'enable_nacl_nonsfi_test%': 1,
2250 ['asan==1 and OS=="linux" and chromeos==0', {
2251 'use_custom_libcxx%': 1,
2259 ['asan==1 and OS=="mac"', {
2260 'mac_strip_release': 1,
2263 'use_custom_libcxx%': 1,
2266 # Use a just-built, MSan-instrumented libc++ instead of the system-wide
2267 # libstdc++. This is required to avoid false positive reports whenever
2268 # the C++ standard library is used.
2269 'use_custom_libcxx%': 1,
2270 # Running the V8-generated code on an ARM simulator is a powerful hack
2271 # that allows the tool to see the memory accesses from JITted code.
2272 # Without this flag, JS code causes false positive reports from MSan.
2273 'v8_target_arch': 'arm64',
2276 ['OS=="linux" and clang_type_profiler==1', {
2278 'clang_use_chrome_plugins%': 0,
2280 ['host_arch=="x64"', {
2281 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_x64',
2283 ['host_arch=="ia32"', {
2284 # 32-bit Clang is unsupported. It may not build. Put your 32-bit
2285 # Clang in this directory at your own risk if needed for some
2286 # purpose (e.g. to compare 32-bit and 64-bit behavior like memory
2287 # usage). Any failure by this compiler should not close the tree.
2288 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32',
2293 # On valgrind bots, override the optimizer settings so we don't inline too
2294 # much and make the stacks harder to figure out.
2296 # TODO(rnk): Kill off variables that no one else uses and just implement
2297 # them under a build_for_tool== condition.
2298 ['build_for_tool=="memcheck" or build_for_tool=="tsan"', {
2300 'mac_debug_optimization': '1',
2301 'mac_release_optimization': '1',
2302 'release_optimize': '1',
2303 'no_gc_sections': 1,
2304 'debug_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2305 '-fno-builtin -fno-optimize-sibling-calls',
2306 'release_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2307 '-fno-builtin -fno-optimize-sibling-calls',
2309 # MSVS flags for TSan on Pin and Windows.
2310 'win_debug_RuntimeChecks': '0',
2311 'win_debug_disable_iterator_debugging': '1',
2312 'win_debug_Optimization': '1',
2313 'win_debug_InlineFunctionExpansion': '0',
2314 'win_release_InlineFunctionExpansion': '0',
2315 'win_release_OmitFramePointers': '0',
2317 'use_allocator': 'tcmalloc',
2318 'release_valgrind_build': 1,
2320 'component': 'static_library',
2321 'use_system_zlib': 0,
2324 # Build tweaks for DrMemory.
2325 # TODO(rnk): Combine with tsan config to share the builder.
2326 # http://crbug.com/108155
2327 ['build_for_tool=="drmemory"', {
2328 # These runtime checks force initialization of stack vars which blocks
2329 # DrMemory's uninit detection.
2330 'win_debug_RuntimeChecks': '0',
2331 # Iterator debugging is slow.
2332 'win_debug_disable_iterator_debugging': '1',
2333 # Try to disable optimizations that mess up stacks in a release build.
2334 # DrM-i#1054 (https://github.com/DynamoRIO/drmemory/issues/1054)
2335 # /O2 and /Ob0 (disable inline) cannot be used together because of a
2336 # compiler bug, so we use /Ob1 instead.
2337 'win_release_InlineFunctionExpansion': '1',
2338 'win_release_OmitFramePointers': '0',
2339 # Ditto for debug, to support bumping win_debug_Optimization.
2340 'win_debug_InlineFunctionExpansion': 0,
2341 'win_debug_OmitFramePointers': 0,
2342 # Keep the code under #ifndef NVALGRIND.
2343 'release_valgrind_build': 1,
2346 # RLZ library is used on Win, Mac, iOS and ChromeOS.
2347 ['OS=="win" or OS=="mac" or OS=="ios" or chromeos==1', {
2348 'enable_rlz_support%': 1,
2350 # RLZ is enabled for "Chrome" builds.
2351 ['branding=="Chrome"', {
2357 # Set default compiler flags depending on ARM version.
2358 ['arm_version==6', {
2359 'arm_arch%': 'armv6',
2362 'arm_float_abi%': 'softfp',
2365 ['arm_version==7', {
2366 'arm_arch%': 'armv7-a',
2367 'arm_tune%': 'generic-armv7-a',
2372 'arm_fpu%': 'vfpv3-d16',
2375 'arm_float_abi%': 'softfp',
2377 'arm_float_abi%': 'hard',
2383 # Set default compiler flags for MIPS floating-point support.
2384 ['target_arch=="mipsel"', {
2385 'mips_float_abi%': 'hard',
2387 ['target_arch=="mipsel" and mips_arch_variant=="r2"', {
2388 'mips_fpu_mode%': 'fp32',
2390 'mips_fpu_mode%': '',
2393 # Enable brlapi by default for chromeos.
2398 ['use_ozone==1 and ozone_auto_platforms==1', {
2399 # Use test as the default platform.
2400 'ozone_platform%': 'test',
2402 # Build all platforms whose deps are in install-build-deps.sh.
2403 # Only these platforms will be compile tested by buildbots.
2404 'ozone_platform_drm%': 1,
2405 'ozone_platform_test%': 1,
2406 'ozone_platform_egltest%': 1,
2409 ['desktop_linux==1 and use_aura==1 and use_x11==1', {
2410 'use_clipboard_aurax11%': 1,
2413 ['OS=="win" and use_goma==1', {
2414 # goma doesn't support pch yet.
2415 'chromium_win_pch': 0,
2416 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
2418 ['win_z7==0 and fastbuild==0', {
2424 ['OS=="win" and (clang==1 or asan==1)', {
2425 'chromium_win_pch': 0,
2429 'host_cc': '<(make_clang_dir)/bin/clang',
2430 'host_cxx': '<(make_clang_dir)/bin/clang++',
2432 'host_cc': '<!(which gcc)',
2433 'host_cxx': '<!(which g++)',
2436 # The seccomp-bpf sandbox is only supported on five architectures
2438 # Do not disable seccomp_bpf anywhere without talking to
2439 # security@chromium.org!
2440 ['((OS=="linux" or OS=="android") and '
2441 '(target_arch=="ia32" or target_arch=="x64" or '
2442 'target_arch=="arm" or target_arch=="mipsel" or '
2443 'target_arch=="arm64"))', {
2444 'use_seccomp_bpf%': 1,
2446 'use_seccomp_bpf%': 0,
2453 ['branding=="Chrome" and buildtype=="Official"', {
2454 'enable_hangout_services_extension%': 1,
2456 'enable_hangout_services_extension%': 0,
2460 # The path to the ANGLE library.
2461 'angle_path': '<(DEPTH)/third_party/angle',
2463 # List of default apps to install in new profiles. The first list contains
2464 # the source files as found in svn. The second list, used only for linux,
2465 # contains the destination location for each of the files. When a crx
2466 # is added or removed from the list, the chrome/browser/resources/
2467 # default_apps/external_extensions.json file must also be updated.
2469 # README: GN version of these is in the target //chrome:default_apps
2470 # (there's no global variable like in GYP). Be sure to update that target
2471 # if you change these lists!
2472 'default_apps_list': [
2473 'browser/resources/default_apps/external_extensions.json',
2474 'browser/resources/default_apps/gmail.crx',
2475 'browser/resources/default_apps/search.crx',
2476 'browser/resources/default_apps/youtube.crx',
2477 'browser/resources/default_apps/drive.crx',
2478 'browser/resources/default_apps/docs.crx',
2480 'default_apps_list_linux_dest': [
2481 '<(PRODUCT_DIR)/default_apps/external_extensions.json',
2482 '<(PRODUCT_DIR)/default_apps/gmail.crx',
2483 '<(PRODUCT_DIR)/default_apps/search.crx',
2484 '<(PRODUCT_DIR)/default_apps/youtube.crx',
2485 '<(PRODUCT_DIR)/default_apps/drive.crx',
2486 '<(PRODUCT_DIR)/default_apps/docs.crx',
2489 # Whether to allow building of the GPU-related isolates.
2490 'archive_gpu_tests%': 0,
2492 # Whether to allow building of chromoting related isolates.
2493 'archive_chromoting_tests%': 0,
2495 # Whether to allow building of Media Router related isolates.
2496 'archive_media_router_tests%': 0,
2498 'target_defaults': {
2500 # The condition that operates on chromium_code is in a target_conditions
2501 # section, and will not have access to the default fallback value of
2502 # chromium_code at the top of this file, or to the chromium_code
2503 # variable placed at the root variables scope of .gyp files, because
2504 # those variables are not set at target scope. As a workaround,
2505 # if chromium_code is not set at target scope, define it in target scope
2506 # to contain whatever value it has during early variable expansion.
2507 # That's enough to make it available during target conditional
2509 'chromium_code%': '<(chromium_code)',
2511 'component%': '<(component)',
2513 'chromecast%': '<(chromecast)',
2515 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx
2516 'win_release_Optimization%': '2', # 2 = /O2
2517 'win_debug_Optimization%': '0', # 0 = /Od
2519 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx
2520 # Tri-state: blank is default, 1 on, 0 off
2521 'win_release_OmitFramePointers%': '0',
2522 # Tri-state: blank is default, 1 on, 0 off
2523 'win_debug_OmitFramePointers%': '',
2525 # See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx
2526 'win_debug_RuntimeChecks%': '3', # 3 = all checks enabled, 0 = off
2528 # See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx
2529 'win_debug_InlineFunctionExpansion%': '', # empty = default, 0 = off,
2530 'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max
2532 # VS inserts quite a lot of extra checks to algorithms like
2533 # std::partial_sort in Debug build which make them O(N^2)
2534 # instead of O(N*logN). This is particularly slow under memory
2535 # tools like ThreadSanitizer so we want it to be disablable.
2536 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2537 'win_debug_disable_iterator_debugging%': '0',
2539 # An application manifest fragment to declare compatibility settings for
2540 # 'executable' targets. Ignored in other target type.
2541 'win_exe_compatibility_manifest%':
2542 '<(DEPTH)\\build\\win\\compatibility.manifest',
2544 'release_extra_cflags%': '',
2545 'debug_extra_cflags%': '',
2547 'release_valgrind_build%': '<(release_valgrind_build)',
2549 # the non-qualified versions are widely assumed to be *nix-only
2550 'win_release_extra_cflags%': '',
2551 'win_debug_extra_cflags%': '',
2553 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
2554 'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)',
2556 # Only used by Windows build for now. Can be used to build into a
2557 # differet output directory, e.g., a build_dir_prefix of VS2010_ would
2558 # output files in src/build/VS2010_{Debug,Release}.
2559 'build_dir_prefix%': '',
2561 # Targets are by default not nacl untrusted code.
2562 'nacl_untrusted_build%': 0,
2564 'pnacl_compile_flags': [
2565 # pnacl uses the clang compiler so we need to suppress all the
2566 # same warnings as we do for clang.
2567 # TODO(sbc): Remove these if/when they are removed from the clang
2569 '-Wno-unused-function',
2570 '-Wno-char-subscripts',
2571 '-Wno-c++11-extensions',
2572 '-Wno-unnamed-type-template-args',
2575 # By default, Android targets have their exported JNI symbols stripped,
2576 # so we test the manual JNI registration code paths that are required
2577 # when using the crazy linker. To allow use of native JNI exports (lazily
2578 # resolved by the JVM), targets can enable this variable, which will stop
2579 # the stripping from happening. Only targets which do not need to be
2580 # compatible with the crazy linker are permitted to set this.
2581 'use_native_jni_exports%': 0,
2584 ['OS=="win" and component=="shared_library"', {
2585 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2586 'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL)
2587 'win_debug_RuntimeLibrary%': '3', # 3 = /MDd (debug DLL)
2589 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2590 'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
2591 'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static)
2594 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2595 'mac_release_optimization%': 's', # Use -Os unless overridden
2596 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2598 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2599 'mac_release_optimization%': '2', # Use -O2 unless overridden
2600 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2603 'host_os%': '<(host_os)', # See comment above chromium_code.
2606 'clang_warning_flags': [
2609 # Don't die on dtoa code that uses a char as an array index.
2610 # This is required solely for base/third_party/dmg_fp/dtoa.cc.
2611 '-Wno-char-subscripts',
2613 # TODO(thakis): This used to be implied by -Wno-unused-function,
2614 # which we no longer use. Check if it makes sense to remove
2615 # this as well. http://crbug.com/316352
2616 '-Wno-unneeded-internal-declaration',
2618 # Warns on switches on enums that cover all enum values but
2619 # also contain a default: branch. Chrome is full of that.
2620 '-Wno-covered-switch-default',
2622 # Warns when a const char[] is converted to bool.
2623 '-Wstring-conversion',
2625 # C++11-related flags:
2627 # This warns on using ints as initializers for floats in
2628 # initializer lists (e.g. |int a = f(); CGSize s = { a, a };|),
2629 # which happens in several places in chrome code. Not sure if
2630 # this is worth fixing.
2631 '-Wno-c++11-narrowing',
2633 # Clang considers the `register` keyword as deprecated, but e.g.
2634 # code generated by flex (used in angle) contains that keyword.
2635 # http://crbug.com/255186
2636 '-Wno-deprecated-register',
2638 # TODO(hans): Get this cleaned up, http://crbug.com/428099
2639 '-Wno-inconsistent-missing-override',
2641 # TODO(thakis): Enable this, crbug.com/507717
2642 '-Wno-shift-negative-value',
2645 'includes': [ 'set_clang_warning_flags.gypi', ],
2647 # Don't use deprecated V8 APIs anywhere.
2648 'V8_DEPRECATION_WARNINGS',
2649 'CLD_VERSION=<(cld_version)',
2652 '<(SHARED_INTERMEDIATE_DIR)',
2656 # When compiling Objective C, warns if a method is used whose
2657 # availability is newer than the deployment target.
2658 'xcode_settings': { 'WARNING_CFLAGS': ['-Wpartial-availability']},
2660 ['(OS=="mac" or OS=="ios") and asan==1', {
2662 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
2665 ['OS=="win" and asan==1 and component=="shared_library"', {
2667 '<(DEPTH)/build/win/asan.gyp:asan_dynamic_runtime',
2670 ['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', {
2671 'cflags_cc!': ['-fno-rtti'],
2674 '-gline-tables-only',
2675 '-fintercept-allocation-functions',
2677 'defines': ['TYPE_PROFILING'],
2679 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
2682 ['branding=="Chrome"', {
2683 'defines': ['GOOGLE_CHROME_BUILD'],
2684 }, { # else: branding!="Chrome"
2685 'defines': ['CHROMIUM_BUILD'],
2687 ['OS=="mac" and component=="shared_library"', {
2689 'DYLIB_INSTALL_NAME_BASE': '@rpath',
2690 'LD_RUNPATH_SEARCH_PATHS': [
2691 # For unbundled binaries.
2693 # For bundled binaries, to get back from Binary.app/Contents/MacOS.
2694 '@loader_path/../../..',
2698 ['clang==1 or host_clang==1', {
2699 # This is here so that all files get recompiled after a clang roll and
2700 # when turning clang on or off.
2701 # (defines are passed via the command line, and build systems rebuild
2702 # things when their commandline changes). Nothing should ever read this
2704 'defines': ['CR_CLANG_REVISION=<!(python <(DEPTH)/tools/clang/scripts/update.py --print-revision)'],
2707 'defines': ['ENABLE_RLZ'],
2709 ['component=="shared_library"', {
2710 'defines': ['COMPONENT_BUILD'],
2712 ['ui_compositor_image_transport==1', {
2713 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'],
2716 'defines': ['USE_AURA=1'],
2719 'defines': ['USE_ASH=1'],
2722 'defines': ['USE_PANGO=1'],
2725 'defines': ['USE_CAIRO=1'],
2728 'defines': ['USE_CRAS=1'],
2731 'defines': ['USE_OZONE=1'],
2733 ['use_default_render_theme==1', {
2734 'defines': ['USE_DEFAULT_RENDER_THEME=1'],
2736 ['use_libjpeg_turbo==1', {
2737 'defines': ['USE_LIBJPEG_TURBO=1'],
2740 'defines': ['USE_X11=1'],
2742 ['use_clipboard_aurax11==1', {
2743 'defines': ['USE_CLIPBOARD_AURAX11=1'],
2745 ['enable_one_click_signin==1', {
2746 'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
2748 ['enable_pre_sync_backup==1', {
2749 'defines': ['ENABLE_PRE_SYNC_BACKUP'],
2751 ['image_loader_extension==1', {
2752 'defines': ['IMAGE_LOADER_EXTENSION=1'],
2755 'defines': ['ENABLE_PROFILING=1'],
2757 ['enable_webrtc==1', {
2758 'defines': ['ENABLE_WEBRTC=1'],
2760 ['enable_media_router==1', {
2761 'defines': ['ENABLE_MEDIA_ROUTER=1'],
2763 ['proprietary_codecs==1', {
2764 'defines': ['USE_PROPRIETARY_CODECS'],
2766 ['enable_mpeg2ts_stream_parser==1', {
2767 'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
2771 ['enable_viewport==1', {
2772 'defines': ['ENABLE_VIEWPORT'],
2774 ['enable_pepper_cdms==1', {
2775 'defines': ['ENABLE_PEPPER_CDMS'],
2777 ['enable_browser_cdms==1', {
2778 'defines': ['ENABLE_BROWSER_CDMS'],
2780 ['configuration_policy==1', {
2781 'defines': ['ENABLE_CONFIGURATION_POLICY'],
2783 ['notifications==1', {
2784 'defines': ['ENABLE_NOTIFICATIONS'],
2786 ['enable_hidpi==1', {
2787 'defines': ['ENABLE_HIDPI=1'],
2789 ['enable_topchrome_md==1', {
2790 'defines': ['ENABLE_TOPCHROME_MD=1'],
2792 ['native_memory_pressure_signals==1', {
2793 'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'],
2796 'defines': ['USE_UDEV'],
2800 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
2803 ['OS=="win" and fastbuild==2', {
2804 # Completely disable debug information.
2807 'GenerateDebugInformation': 'false',
2809 'VCCLCompilerTool': {
2810 'DebugInformationFormat': '0',
2814 ['OS=="win" and fastbuild==1', {
2817 # This tells the linker to generate .pdbs, so that
2818 # we can get meaningful stack traces.
2819 'GenerateDebugInformation': 'true',
2821 'VCCLCompilerTool': {
2822 # No debug info to be generated by compiler.
2823 'DebugInformationFormat': '0',
2827 ['(OS=="android" or OS=="linux") and fastbuild==2', {
2828 'variables': { 'debug_extra_cflags': '-g0', },
2830 ['(OS=="android" or OS=="linux") and fastbuild==1', {
2831 # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2833 'variables': { 'debug_extra_cflags': '-g0', },
2835 # Android builds symbols on release by default, disable them.
2836 ['OS=="android" and fastbuild==2', {
2837 'variables': { 'release_extra_cflags': '-g0', },
2839 ['OS=="android" and fastbuild==1', {
2840 # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2842 'variables': { 'release_extra_cflags': '-g0', },
2846 ['dont_embed_build_metadata==1', {
2848 'DONT_EMBED_BUILD_METADATA',
2850 }], # dont_embed_build_metadata==1
2851 ['dcheck_always_on!=0', {
2852 'defines': ['DCHECK_ALWAYS_ON=1'],
2853 }], # dcheck_always_on!=0
2854 ['tracing_like_official_build!=0', {
2855 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'],
2856 }], # tracing_like_official_build!=0
2857 ['fieldtrial_testing_like_official_build==0 and branding!="Chrome"', {
2858 'defines': ['FIELDTRIAL_TESTING_ENABLED'],
2859 }], # fieldtrial_testing_like_official_build==0 and branding!="Chrome"
2861 'defines': ['NO_TCMALLOC'],
2863 ['win_use_allocator_shim==1', {
2864 'defines': ['ALLOCATOR_SHIM'],
2870 'ADDRESS_SANITIZER',
2871 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2872 'MEMORY_SANITIZER_INITIAL_SIZE',
2876 # SyzyAsan needs /PROFILE turned on to produce appropriate pdbs.
2884 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2885 'MEMORY_SANITIZER_INITIAL_SIZE',
2893 '<(DEPTH)/third_party/kasko/include',
2899 '_CRT_SECURE_NO_DEPRECATE',
2900 '_SCL_SECURE_NO_DEPRECATE',
2901 # This define is required to pull in the new Win8 interfaces from
2902 # system headers like ShObjIdl.h.
2903 'NTDDI_VERSION=0x06030000',
2904 # This is required for ATL to use XP-safe versions of its functions.
2905 '_USING_V110_SDK71_',
2908 '<(DEPTH)/third_party/wtl/include',
2913 # Generates debug info when win_z7=1
2914 # even if fastbuild=1 (that makes GenerateDebugInformation false).
2916 'GenerateDebugInformation': 'true',
2918 'VCCLCompilerTool': {
2919 'DebugInformationFormat': '1',
2925 # This is prohibited when running /analyze.
2926 '_USING_V110_SDK71_',
2929 'VCCLCompilerTool': {
2930 # Set WarnAsError to false to disable this setting for most
2931 # projects so that compilation continues.
2932 'WarnAsError': 'false',
2933 # When win_analyze is specified add the /analyze switch.
2934 # Also add /WX- to force-disable WarnAsError for projects that
2935 # override WarnAsError.
2936 # Also, disable various noisy warnings that have low value.
2937 'AdditionalOptions': [
2939 '/wd6011', # Dereferencing NULL pointer
2940 '/wd6312', # Possible infinite loop: use of the constant
2941 # EXCEPTION_CONTINUE_EXECUTION in the exception-filter
2942 '/wd6326', # Potential comparison of constant with constant
2943 '/wd28159', # Consider using 'GetTickCount64'
2944 '/wd28204', # Inconsistent SAL annotations
2945 '/wd28251', # Inconsistent SAL annotations
2946 '/wd28252', # Inconsistent SAL annotations
2947 '/wd28253', # Inconsistent SAL annotations
2948 '/wd28196', # The precondition is not satisfied
2949 '/wd28301', # Inconsistent SAL annotations
2950 '/wd6340', # Sign mismatch in function parameter
2951 '/wd28182', # Dereferencing NULL pointer
2952 # C6285 is ~16% of raw warnings and has low value
2953 '/wd6285', # non-zero constant || non-zero constant
2954 # C6334 is ~80% of raw warnings and has low value
2955 '/wd6334', # sizeof applied to an expression with an operator
2967 ['use_playready==1', {
2969 'PLAYREADY_CDM_AVAILABLE',
2974 ['enable_task_manager==1', {
2976 'ENABLE_TASK_MANAGER=1',
2979 ['enable_extensions==1', {
2981 'ENABLE_EXTENSIONS=1',
2984 ['OS=="win" and branding=="Chrome"', {
2985 'defines': ['ENABLE_SWIFTSHADER'],
2987 ['enable_dart==1', {
2988 'defines': ['WEBKIT_USING_DART=1'],
2990 ['enable_plugin_installation==1', {
2991 'defines': ['ENABLE_PLUGIN_INSTALLATION=1'],
2993 ['enable_plugins==1', {
2994 'defines': ['ENABLE_PLUGINS=1'],
2996 ['enable_session_service==1', {
2997 'defines': ['ENABLE_SESSION_SERVICE=1'],
2999 ['enable_themes==1', {
3000 'defines': ['ENABLE_THEMES=1'],
3002 ['enable_autofill_dialog==1', {
3003 'defines': ['ENABLE_AUTOFILL_DIALOG=1'],
3005 ['enable_prod_wallet_service==1', {
3006 # In GN, this is set on the autofill tagets only. See
3007 # //components/autofill/core/browser:wallet_service
3008 'defines': ['ENABLE_PROD_WALLET_SERVICE=1'],
3010 ['enable_background==1', {
3011 'defines': ['ENABLE_BACKGROUND=1'],
3013 ['enable_google_now==1', {
3014 'defines': ['ENABLE_GOOGLE_NOW=1'],
3016 ['enable_basic_printing==1 or enable_print_preview==1', {
3017 # Convenience define for ENABLE_BASIC_PRINTING || ENABLE_PRINT_PREVIEW.
3018 'defines': ['ENABLE_PRINTING=1'],
3020 ['enable_basic_printing==1', {
3021 # Enable basic printing support and UI.
3022 'defines': ['ENABLE_BASIC_PRINTING=1'],
3024 ['enable_print_preview==1', {
3025 # Enable printing with print preview.
3026 # Can be defined without ENABLE_BASIC_PRINTING.
3027 'defines': ['ENABLE_PRINT_PREVIEW=1'],
3029 ['enable_spellcheck==1', {
3030 'defines': ['ENABLE_SPELLCHECK=1'],
3032 ['use_browser_spellchecker', {
3033 'defines': ['USE_BROWSER_SPELLCHECKER=1'],
3035 ['enable_captive_portal_detection==1', {
3036 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
3038 ['enable_app_list==1', {
3039 'defines': ['ENABLE_APP_LIST=1'],
3041 ['enable_settings_app==1', {
3042 'defines': ['ENABLE_SETTINGS_APP=1'],
3044 ['disable_file_support==1', {
3045 'defines': ['DISABLE_FILE_SUPPORT=1'],
3047 ['disable_ftp_support==1', {
3048 'defines': ['DISABLE_FTP_SUPPORT=1'],
3050 ['enable_supervised_users==1', {
3051 'defines': ['ENABLE_SUPERVISED_USERS=1'],
3053 ['enable_mdns==1', {
3054 'defines': ['ENABLE_MDNS=1'],
3056 ['enable_service_discovery==1', {
3057 'defines' : [ 'ENABLE_SERVICE_DISCOVERY=1' ],
3059 ['enable_wifi_bootstrapping==1', {
3060 'defines' : [ 'ENABLE_WIFI_BOOTSTRAPPING=1' ],
3062 ['enable_hangout_services_extension==1', {
3063 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'],
3065 ['enable_ipc_fuzzer==1', {
3066 'defines': ['ENABLE_IPC_FUZZER=1'],
3069 'defines': ['VIDEO_HOLE=1'],
3071 ['v8_use_external_startup_data==1', {
3072 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA'],
3074 ['enable_webvr==1', {
3075 'defines': ['ENABLE_WEBVR'],
3078 # SAFE_BROWSING_SERVICE - browser manages a safe-browsing service.
3079 # SAFE_BROWSING_DB_LOCAL - service manages a local database.
3080 # SAFE_BROWSING_DB_REMOTE - service talks via API to a database
3081 # SAFE_BROWSING_CSD - enable client-side phishing detection.
3082 ['safe_browsing==1', {
3084 # TODO(nparker): Remove existing uses of FULL_SAFE_BROWSING
3085 'FULL_SAFE_BROWSING',
3086 'SAFE_BROWSING_CSD',
3087 'SAFE_BROWSING_DB_LOCAL',
3088 'SAFE_BROWSING_SERVICE',
3091 ['safe_browsing==2', {
3093 # TODO(nparker): Remove existing uses of MOBILE_SAFE_BROWSING
3094 'MOBILE_SAFE_BROWSING',
3095 'SAFE_BROWSING_SERVICE',
3098 ['safe_browsing==3', {
3100 # TODO(nparker): Remove existing uses of MOBILE_SAFE_BROWSING
3101 'MOBILE_SAFE_BROWSING',
3102 'SAFE_BROWSING_DB_REMOTE',
3103 'SAFE_BROWSING_SERVICE',
3106 ], # conditions for 'target_defaults'
3107 'target_conditions': [
3108 ['<(use_libpci)==1', {
3109 'defines': ['USE_LIBPCI=1'],
3111 ['<(use_openssl)==1', {
3112 'defines': ['USE_OPENSSL=1'],
3114 ['<(use_openssl_certs)==1', {
3115 'defines': ['USE_OPENSSL_CERTS=1'],
3117 ['>(nacl_untrusted_build)==1', {
3120 'USE_OPENSSL_CERTS=1',
3123 ['<(use_glib)==1 and >(nacl_untrusted_build)==0', {
3124 'defines': ['USE_GLIB=1'],
3126 ['<(use_nss_certs)==1 and >(nacl_untrusted_build)==0', {
3127 'defines': ['USE_NSS_CERTS=1'],
3129 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', {
3130 'defines': ['OS_CHROMEOS=1'],
3132 ['enable_wexit_time_destructors==1 and OS!="win"', {
3133 # TODO: Enable on Windows too, http://crbug.com/404525
3134 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']},
3136 ['chromium_code==0', {
3138 'clang_warning_flags': [
3139 # TODO(thakis): Move this suppression into individual third-party
3140 # libraries as required. http://crbug.com/505316.
3141 '-Wno-unused-function',
3142 # Lots of third-party libraries have unused variables. Instead of
3143 # suppressing them individually, we just blanket suppress them here.
3144 '-Wno-unused-variable',
3148 [ 'os_posix==1 and OS!="mac" and OS!="ios"', {
3149 # We don't want to get warnings from third-party code,
3150 # so remove any existing warning-enabling flags like -Wall.
3156 # Don't warn about hash_map in third-party code.
3160 # Don't warn about printf format problems.
3161 # This is off by default in gcc but on in Ubuntu's gcc(!).
3165 # Necessary because llvm.org/PR10448 is WONTFIX (crbug.com/90453).
3169 # TODO: Fix all warnings on chromeos too.
3170 [ 'os_posix==1 and OS!="mac" and OS!="ios" and (clang!=1 or chromeos==1)', {
3175 [ 'os_posix==1 and os_bsd!=1 and OS!="mac" and OS!="android"', {
3177 # Don't warn about ignoring the return value from e.g. close().
3178 # This is off by default in some gccs but on by default in others.
3179 # BSD systems do not support this option, since they are usually
3180 # using gcc 4.2.1, which does not have this flag yet.
3181 '-Wno-unused-result',
3186 '_CRT_SECURE_NO_DEPRECATE',
3187 '_CRT_NONSTDC_NO_WARNINGS',
3188 '_CRT_NONSTDC_NO_DEPRECATE',
3189 '_SCL_SECURE_NO_DEPRECATE',
3191 'msvs_disabled_warnings': [
3195 'VCCLCompilerTool': {
3196 'WarningLevel': '3',
3197 'WarnAsError': 'true',
3198 'Detect64BitPortabilityProblems': 'false',
3202 ['buildtype=="Official"', {
3204 'VCCLCompilerTool': { 'WarnAsError': 'false' },
3207 [ 'component=="shared_library"', {
3208 # TODO(darin): Unfortunately, some third_party code depends on base.
3209 'msvs_disabled_warnings': [
3210 4251, # class 'std::xx' needs to have dll-interface.
3216 [ 'OS=="mac" or OS=="ios"', {
3218 'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
3221 ['buildtype=="Official"', {
3223 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror
3230 # TODO(ios): Fix remaining warnings in third-party code, then
3231 # remove this; the Mac cleanup didn't get everything that's
3232 # flagged in an iOS build.
3233 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',
3234 'RUN_CLANG_STATIC_ANALYZER': 'NO',
3235 # Several internal ios directories generate numerous warnings for
3236 # -Wobjc-missing-property-synthesis.
3237 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
3243 # Rules for excluding e.g. foo_win.cc from the build on non-Windows.
3244 'filename_rules.gypi',
3246 # In Chromium code, we define __STDC_foo_MACROS in order to get the
3247 # C99 macros on Mac and Linux.
3249 '__STDC_CONSTANT_MACROS',
3250 '__STDC_FORMAT_MACROS',
3254 # turn on warnings for signed/unsigned mismatch on chromium code.
3256 'VCCLCompilerTool': {
3257 'AdditionalOptions': ['/we4389'],
3261 ['OS=="win" and component=="shared_library"', {
3262 'msvs_disabled_warnings': [
3263 4251, # class 'std::xx' needs to have dll-interface.
3268 ], # target_conditions for 'target_defaults'
3269 'default_configuration': 'Debug',
3271 # VCLinkerTool LinkIncremental values below:
3273 # 1 == /INCREMENTAL:NO
3275 # Debug links incremental, Release does not.
3277 # Abstract base configurations to cover common attributes.
3281 'msvs_configuration_attributes': {
3282 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(ConfigurationName)',
3283 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
3284 'CharacterSet': '1',
3287 'VCCLCompilerTool': {
3288 'AdditionalOptions': [
3293 # Add the default import libs.
3294 'AdditionalDependencies': [
3311 'AdditionalOptions': [
3312 # Suggested by Microsoft Devrel to avoid
3313 # LINK : fatal error LNK1248: image size (80000000) exceeds maximum allowable size (80000000)
3314 # which started happening more regularly after VS2013 Update 4.
3315 # Needs to be a bit lower for VS2015, or else errors out.
3316 '/maxilksize:0x7ff00000',
3321 ['OS=="win" and win_fastlink==1', {
3324 # /PROFILE is incompatible with /debug:fastlink
3326 'AdditionalOptions': [
3327 # Tell VS 2015+ to create a PDB that references debug
3328 # information in .obj and .lib files instead of copying
3341 'MinimumRequiredVersion': '5.01', # XP.
3342 'TargetMachine': '1',
3344 'VCLibrarianTool': {
3345 'TargetMachine': '1',
3348 'msvs_configuration_platform': 'Win32',
3352 'msvs_configuration_platform': 'x64',
3355 # Make sure to understand http://crbug.com/361720 if you want to
3357 'MinimumRequiredVersion': '5.02', # Server 2003.
3358 'TargetMachine': '17', # x86 - 64
3359 'AdditionalLibraryDirectories!':
3360 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3361 'AdditionalLibraryDirectories':
3362 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3363 # Doesn't exist x64 SDK. Should use oleaut32 in any case.
3364 'IgnoreDefaultLibraryNames': [ 'olepro32.lib' ],
3366 'VCLibrarianTool': {
3367 'AdditionalLibraryDirectories!':
3368 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3369 'AdditionalLibraryDirectories':
3370 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3371 'TargetMachine': '17', # x64
3378 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3379 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3382 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)',
3384 '<@(debug_extra_cflags)',
3388 'VCCLCompilerTool': {
3389 'Optimization': '<(win_debug_Optimization)',
3390 'PreprocessorDefinitions': ['_DEBUG'],
3391 'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)',
3392 'RuntimeLibrary': '<(win_debug_RuntimeLibrary)',
3394 # According to MSVS, InlineFunctionExpansion=0 means
3395 # "default inlining", not "/Ob0".
3396 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3397 ['win_debug_InlineFunctionExpansion==0', {
3398 'AdditionalOptions': ['/Ob0'],
3400 ['win_debug_InlineFunctionExpansion!=""', {
3401 'InlineFunctionExpansion':
3402 '<(win_debug_InlineFunctionExpansion)',
3404 ['win_debug_disable_iterator_debugging==1', {
3405 'PreprocessorDefinitions': ['_HAS_ITERATOR_DEBUGGING=0'],
3408 # if win_debug_OmitFramePointers is blank, leave as default
3409 ['win_debug_OmitFramePointers==1', {
3410 'OmitFramePointers': 'true',
3412 ['win_debug_OmitFramePointers==0', {
3413 'OmitFramePointers': 'false',
3414 # The above is not sufficient (http://crbug.com/106711): it
3415 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3416 # perform FPO regardless, so we must explicitly disable.
3417 # We still want the false setting above to avoid having
3418 # "/Oy /Oy-" and warnings about overriding.
3419 'AdditionalOptions': ['/Oy-'],
3422 'AdditionalOptions': [ '<@(win_debug_extra_cflags)', ],
3425 'LinkIncremental': '<(msvs_debug_link_incremental)',
3426 # ASLR makes debugging with windbg difficult because Chrome.exe and
3427 # Chrome.dll share the same base name. As result, windbg will
3428 # name the Chrome.dll module like chrome_<base address>, where
3429 # <base address> typically changes with each launch. This in turn
3430 # means that breakpoints in Chrome.dll don't stick from one launch
3431 # to the next. For this reason, we turn ASLR off in debug builds.
3432 # Note that this is a three-way bool, where 0 means to pick up
3433 # the default setting, 1 is off and 2 is on.
3434 'RandomizedBaseAddress': 1,
3436 'VCResourceCompilerTool': {
3437 'PreprocessorDefinitions': ['_DEBUG'],
3441 ['OS=="linux" or OS=="android"', {
3442 'target_conditions': [
3443 ['_toolset=="target"', {
3445 '<@(debug_extra_cflags)',
3450 ['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', {
3451 # Enable libstdc++ debugging facilities to help catch problems
3452 # early, see http://crbug.com/65151 .
3453 # TODO(phajdan.jr): Should we enable this for all of POSIX?
3454 'defines': ['_GLIBCXX_DEBUG=1',],
3456 ['release_valgrind_build==0', {
3459 '-fstack-protector-all', # Implies -fstack-protector
3465 # Allow comparing the address of references and 'this' against 0
3466 # in debug builds. Technically, these can never be null in
3467 # well-defined C/C++ and Clang can optimize such checks away in
3468 # release builds, but they may be used in asserts in debug builds.
3469 '-Wno-undefined-bool-conversion',
3470 '-Wno-tautological-undefined-compare',
3474 '-Wno-undefined-bool-conversion',
3475 '-Wno-tautological-undefined-compare',
3479 'VCCLCompilerTool': {
3480 'AdditionalOptions': [
3481 '-Wno-undefined-bool-conversion',
3482 '-Wno-tautological-undefined-compare',
3495 'DEAD_CODE_STRIPPING': 'YES', # -Wl,-dead_strip
3496 'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)',
3497 'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ],
3500 'VCCLCompilerTool': {
3501 'RuntimeLibrary': '<(win_release_RuntimeLibrary)',
3503 # In official builds, each target will self-select
3504 # an optimization level.
3505 ['buildtype!="Official"', {
3506 'Optimization': '<(win_release_Optimization)',
3509 # According to MSVS, InlineFunctionExpansion=0 means
3510 # "default inlining", not "/Ob0".
3511 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3512 ['win_release_InlineFunctionExpansion==0', {
3513 'AdditionalOptions': ['/Ob0'],
3515 ['win_release_InlineFunctionExpansion!=""', {
3516 'InlineFunctionExpansion':
3517 '<(win_release_InlineFunctionExpansion)',
3520 # if win_release_OmitFramePointers is blank, leave as default
3521 ['win_release_OmitFramePointers==1', {
3522 'OmitFramePointers': 'true',
3524 ['win_release_OmitFramePointers==0', {
3525 'OmitFramePointers': 'false',
3526 # The above is not sufficient (http://crbug.com/106711): it
3527 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3528 # perform FPO regardless, so we must explicitly disable.
3529 # We still want the false setting above to avoid having
3530 # "/Oy /Oy-" and warnings about overriding.
3531 'AdditionalOptions': ['/Oy-'],
3534 # Put data in separate COMDATs. This allows the linker
3535 # to put bit-identical constants at the same address even if
3536 # they're unrelated constants, which saves binary size.
3537 # This optimization can't be used when ASan is enabled because
3538 # it is not compatible with the ASan ODR checker.
3539 'AdditionalOptions': ['/Gw'],
3542 'AdditionalOptions': [
3543 '/d2Zi+', # Improve debugging of Release builds.
3544 '/Zc:inline', # Remove unreferenced COMDAT (faster links).
3545 '<@(win_release_extra_cflags)',
3549 # LinkIncremental is a tri-state boolean, where 0 means default
3550 # (i.e., inherit from parent solution), 1 means false, and
3552 'LinkIncremental': '1',
3553 # This corresponds to the /PROFILE flag which ensures the PDB
3554 # file contains FIXUP information (growing the PDB file by about
3555 # 5%) but does not otherwise alter the output binary. This
3556 # information is used by the Syzygy optimization tool when
3557 # decomposing the release image.
3562 ['msvs_use_common_release', {
3563 'includes': ['release.gypi'],
3565 ['release_valgrind_build==0 and tsan==0', {
3568 'DYNAMIC_ANNOTATIONS_ENABLED=0',
3572 'MEMORY_TOOL_REPLACES_ALLOCATOR',
3573 'MEMORY_SANITIZER_INITIAL_SIZE',
3574 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3575 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3579 'defines': ['NO_TCMALLOC'],
3581 # _FORTIFY_SOURCE isn't really supported by Clang now, see
3582 # http://llvm.org/bugs/show_bug.cgi?id=16821.
3583 # It seems to work fine with Ubuntu 12 headers though, so use it
3584 # in official builds.
3585 ['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")', {
3586 'target_conditions': [
3587 ['chromium_code==1', {
3588 # Non-chromium code is not guaranteed to compile cleanly
3589 # with _FORTIFY_SOURCE. Also, fortified build may fail
3590 # when optimizations are disabled, so only do that for Release
3593 '_FORTIFY_SOURCE=2',
3598 ['OS=="linux" or OS=="android"', {
3599 'target_conditions': [
3600 ['_toolset=="target"', {
3602 '<@(release_extra_cflags)',
3605 ['enable_resource_whitelist_generation==1', {
3607 '-Wunknown-pragmas -Wno-error=unknown-pragmas',
3616 'NS_BLOCK_ASSERTIONS=1',
3622 # Concrete configurations
3625 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'],
3628 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3633 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3634 'target_conditions': [
3635 [ '_type=="executable"', {
3636 # To get a real .dSYM bundle produced by dsymutil, set the
3637 # debug information format to dwarf-with-dsym. Since
3638 # strip_from_xcode will not be used, set Xcode to do the
3639 # stripping as well.
3641 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
3642 'DEPLOYMENT_POSTPROCESSING': 'YES',
3643 'STRIP_INSTALLED_PRODUCT': 'YES',
3650 # TODO(bradnelson): add a gyp mechanism to make this more graceful.
3652 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'],
3655 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'],
3663 'target_defaults': {
3668 # TODO(glider): enable the default options on other systems.
3670 ['use_sanitizer_options==1 and ((OS=="linux" and (chromeos==0 or target_arch!="ia32")) or OS=="mac")', {
3672 '<(DEPTH)/build/sanitizers/sanitizers.gyp:sanitizer_options',
3678 # TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580
3679 ['os_posix==1 and disable_fatal_linker_warnings==0 and use_evdev_gestures==0 and (chromeos==0 or target_arch!="arm")', {
3680 'target_defaults': {
3682 '-Wl,--fatal-warnings',
3686 # -Wl,-z,-defs doesn't work with the sanitiziers, http://crbug.com/452065
3687 ['(OS=="linux" or OS=="android") and asan==0 and msan==0 and tsan==0 and ubsan==0 and ubsan_vptr==0 and cfi_diag==0', {
3688 'target_defaults': {
3694 ['os_posix==1 and chromeos==0', {
3695 # Chrome OS enables -fstack-protector-strong via its build wrapper,
3696 # and we want to avoid overriding this, so stack-protector is only
3697 # enabled when not building on Chrome OS.
3698 # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc
3700 'target_defaults': {
3702 '-fstack-protector',
3703 '--param=ssp-buffer-size=4',
3707 ['os_posix==1 and OS=="linux"', {
3709 '_LARGEFILE_SOURCE',
3710 '_LARGEFILE64_SOURCE',
3711 '_FILE_OFFSET_BITS=64',
3714 ['os_posix==1 and OS!="mac" and OS!="ios"', {
3715 'target_defaults': {
3716 # Enable -Werror by default, but put it in a variable so it can
3717 # be disabled in ~/.gyp/include.gypi on the valgrind builders.
3719 'werror%': '-Werror',
3720 'libraries_for_target%': '',
3723 '_FILE_OFFSET_BITS=64',
3726 '<(werror)', # See note above about the werror variable.
3728 '-fno-strict-aliasing', # See http://crbug.com/32204
3730 # Don't warn about unused function params. We use those everywhere.
3731 '-Wno-unused-parameter',
3732 # Don't warn about the "struct foo f = {0};" initialization pattern.
3733 '-Wno-missing-field-initializers',
3734 # Don't export any symbols (for example, to plugins we dlopen()).
3735 # Note: this is *required* to make some plugins work.
3736 '-fvisibility=hidden',
3742 '-fno-threadsafe-statics',
3743 # Make inline functions have hidden visiblity by default.
3744 # Surprisingly, not covered by -fvisibility=hidden.
3745 '-fvisibility-inlines-hidden',
3746 # GCC turns on -Wsign-compare for C++ under -Wall, but clang doesn't,
3747 # so we specify it explicitly. (llvm.org/PR10448, crbug.com/90453)
3751 '-pthread', '-Wl,-z,noexecstack',
3754 '<(libraries_for_target)',
3759 'debug_optimize%': '0',
3765 '-O>(debug_optimize)',
3769 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3770 # TODO(jdduke) Re-enable on mips after resolving linking
3771 # issues with libc++ (crbug.com/456380).
3773 # Warn in case of text relocations.
3774 '-Wl,--warn-shared-textrel',
3777 ['OS=="android" and android_full_debug==0', {
3778 # Some configurations are copied from Release_Base to reduce
3781 'debug_optimize%': 's',
3785 '-ffunction-sections',
3792 ['OS=="android" and android_full_debug==0 and target_arch!="arm64"', {
3793 # We don't omit frame pointers on arm64 since they are required
3794 # to correctly unwind stackframes which contain system library
3795 # function frames (crbug.com/391706).
3797 '-fomit-frame-pointer',
3800 ['OS=="linux" and target_arch=="ia32"', {
3802 '-Wl,--no-as-needed',
3805 ['debug_unwind_tables==1', {
3806 'cflags': ['-funwind-tables'],
3808 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3809 'defines': ['NO_UNWIND_TABLES'],
3811 # TODO(mostynb): shuffle clang/gcc_version/binutils_version
3812 # definitions in to the right scope to use them when setting
3813 # linux_use_debug_fission, so it can be used here alone.
3814 ['linux_use_debug_fission==1 and linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
3815 'cflags': ['-gsplit-dwarf'],
3821 'release_optimize%': '2',
3822 # Binaries become big and gold is unable to perform GC
3823 # and remove unused sections for some of test targets
3824 # on 32 bit platform.
3825 # (This is currently observed only in chromeos valgrind bots)
3826 # The following flag is to disable --gc-sections linker
3827 # option for these bots.
3828 'no_gc_sections%': 0,
3830 # TODO(bradnelson): reexamine how this is done if we change the
3831 # expansion of configurations
3832 'release_valgrind_build%': 0,
3835 '-O<(release_optimize)',
3836 # Don't emit the GCC version ident directives, they just end up
3837 # in the .comment section taking up binary size.
3839 # Put data and code in their own sections, so that unused symbols
3840 # can be removed at link time with --gc-sections.
3842 '-ffunction-sections',
3845 # Specifically tell the linker to perform optimizations.
3846 # See http://lwn.net/Articles/192624/ .
3851 ['no_gc_sections==0', {
3853 '-Wl,--gc-sections',
3856 ['OS=="android" and target_arch!="arm64"', {
3857 # We don't omit frame pointers on arm64 since they are required
3858 # to correctly unwind stackframes which contain system library
3859 # function frames (crbug.com/391706).
3861 '-fomit-frame-pointer',
3864 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3865 # TODO(jdduke) Re-enable on mips after resolving linking
3866 # issues with libc++ (crbug.com/456380).
3868 # Warn in case of text relocations.
3869 '-Wl,--warn-shared-textrel',
3874 'release_optimize%': 's',
3879 '-fno-omit-frame-pointer',
3883 ['profiling_full_stack_frames==1', {
3886 '-fno-optimize-sibling-calls',
3891 ['release_unwind_tables==1', {
3892 'cflags': ['-funwind-tables'],
3894 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3895 'defines': ['NO_UNWIND_TABLES'],
3901 ['target_arch=="ia32"', {
3902 'target_conditions': [
3903 ['_toolset=="target"', {
3905 # Needed so that libs with .s files (e.g. libicudata.a)
3906 # are compatible with the general 32-bit-ness.
3909 # All floating-point computations on x87 happens in 80-bit
3910 # precision. Because the C and C++ language standards allow
3911 # the compiler to keep the floating-point values in higher
3912 # precision than what's specified in the source and doing so
3913 # is more efficient than constantly rounding up to 64-bit or
3914 # 32-bit precision as specified in the source, the compiler,
3915 # especially in the optimized mode, tries very hard to keep
3916 # values in x87 floating-point stack (in 80-bit precision)
3917 # as long as possible. This has important side effects, that
3918 # the real value used in computation may change depending on
3919 # how the compiler did the optimization - that is, the value
3920 # kept in 80-bit is different than the value rounded down to
3921 # 64-bit or 32-bit. There are possible compiler options to
3922 # make this behavior consistent (e.g. -ffloat-store would keep
3923 # all floating-values in the memory, thus force them to be
3924 # rounded to its original precision) but they have significant
3925 # runtime performance penalty.
3927 # -mfpmath=sse -msse2 makes the compiler use SSE instructions
3928 # which keep floating-point values in SSE registers in its
3929 # native precision (32-bit for single precision, and 64-bit
3930 # for double precision values). This means the floating-point
3931 # value used during computation does not change depending on
3932 # how the compiler optimized the code, since the value is
3933 # always kept in its specified precision.
3935 # Refer to http://crbug.com/348761 for rationale behind SSE2
3936 # being a minimum requirement for 32-bit Linux builds and
3937 # http://crbug.com/313032 for an example where this has "bit"
3942 '-mmmx', # Allows mmintrin.h for MMX intrinsics.
3949 # Use gold linker for Android ia32 target.
3951 # Use gold linker for Android ia32 target.
3955 # Use -mstackrealign due to a bug on ia32 Jelly Bean.
3956 # See crbug.com/521527
3965 ['target_arch=="x64"', {
3966 'target_conditions': [
3967 ['_toolset=="target"', {
3969 # Use gold linker for Android x64 target.
3986 ['target_arch=="arm"', {
3987 'target_conditions': [
3988 ['_toolset=="target"', {
3992 # The codesourcery arm-2009q3 toolchain warns at that the ABI
3993 # has changed whenever it encounters a varargs function. This
3994 # silences those warnings, as they are not helpful and
3995 # clutter legitimate warnings.
3999 ['clang==1 and arm_arch!="" and OS!="android"', {
4001 '-target arm-linux-gnueabihf',
4004 '-target arm-linux-gnueabihf',
4009 '-march=<(arm_arch)',
4012 ['use_lto==1 or use_lto_o2==1', {
4014 '-march=<(arm_arch)',
4019 ['clang==1 and OS!="android"', {
4021 # We need to disable clang's builtin assembler as it can't
4022 # handle several asm files, crbug.com/124610
4023 '-no-integrated-as',
4028 '-mtune=<(arm_tune)',
4031 ['use_lto==1 or use_lto_o2==1', {
4033 '-mtune=<(arm_tune)',
4043 ['use_lto==1 or use_lto_o2==1', {
4050 ['arm_float_abi!=""', {
4052 '-mfloat-abi=<(arm_float_abi)',
4055 ['use_lto==1 or use_lto_o2==1', {
4057 '-mfloat-abi=<(arm_float_abi)',
4067 ['use_lto==1 or use_lto_o2==1', {
4075 # Most of the following flags are derived from what Android
4076 # uses by default when building for arm, reference for which
4077 # can be found in the following file in the Android NDK:
4078 # toolchains/arm-linux-androideabi-4.9/setup.mk
4080 # The tree-sra optimization (scalar replacement for
4081 # aggregates enabling subsequent optimizations) leads to
4082 # invalid code generation when using the Android NDK's
4083 # compiler (r5-r7). This can be verified using
4084 # webkit_unit_tests' WTF.Checked_int8_t test.
4086 # The following option is disabled to improve binary
4087 # size and performance in gcc 4.9.
4088 '-fno-caller-saves',
4091 # Android now supports .relro sections properly.
4092 # NOTE: While these flags enable the generation of .relro
4093 # sections, the generated libraries can still be loaded on
4094 # older Android platform versions.
4101 ['gcc_version==48 and clang==0', {
4103 # The following 5 options are disabled to save on
4104 # binary size in GCC 4.8.
4105 '-fno-partial-inlining',
4106 '-fno-early-inlining',
4107 '-fno-tree-copy-prop',
4108 '-fno-tree-loop-optimize',
4109 '-fno-move-loop-invariants',
4113 'cflags': [ '-mthumb-interwork' ],
4117 # Thumb code with frame pointer makes chrome crash
4120 '-mapcs-frame', # Required by -fno-omit-frame-pointer.
4121 # The perf report sometimes incorrectly attributes
4122 # code from tail calls.
4123 '-fno-optimize-sibling-calls',
4126 '-fomit-frame-pointer',
4131 # Clang does not support the following options.
4133 '-mthumb-interwork',
4134 '-finline-limit=64',
4136 '-fno-caller-saves',
4140 # TODO(hans) Enable integrated-as (crbug.com/124610).
4141 '-no-integrated-as',
4142 '-B<(android_toolchain)', # Else /usr/bin/as gets picked up.
4145 ['clang==1 and linux_use_bundled_gold==0', {
4147 # Let clang find the ld.gold in the NDK.
4148 '--gcc-toolchain=<(android_toolchain)/..',
4153 '-marm', # Required for frame pointer based stack traces.
4160 # We set arm_arch to "" so that -march compiler option
4161 # is not set. Otherwise a gcc bug that would complain
4162 # about it conflicting with '-mcpu=cortex-a9'. The flag
4163 # '-march=armv7-a' is actually redundant anyway because
4164 # it is enabled by default when we built the toolchain.
4165 # And using '-mcpu=cortex-a9' should be sufficient.
4168 # Breakpad requires symbols with debugging information
4172 # We want to statically link libstdc++/libgcc_s.
4173 '-static-libstdc++',
4177 # Some components in Chromium (e.g. v8, skia, ffmpeg)
4178 # define their own cflags for arm builds that could
4179 # conflict with the flags we set here (e.g.
4180 # '-mcpu=cortex-a9'). Remove these flags explicitly.
4189 ['target_arch=="arm64"', {
4190 'target_conditions': [
4191 ['_toolset=="target"', {
4195 '-fstack-protector', # stack protector is always enabled on arm64.
4202 ['target_arch=="mipsel"', {
4203 'target_conditions': [
4204 ['_toolset=="target"', {
4206 ['mips_arch_variant=="r6"', {
4209 'cflags': [ '-target mipsel-linux-gnu', '-march=mips32r6', ],
4210 'ldflags': [ '-target mipsel-linux-gnu', ],
4212 'cflags': ['-mips32r6', '-Wa,-mips32r6', ],
4214 ['clang==0 and OS=="android"', {
4215 'ldflags': ['-mips32r6', '-Wl,-melf32ltsmip',],
4219 ['mips_arch_variant=="r2"', {
4221 ['mips_float_abi=="hard" and mips_fpu_mode!=""', {
4222 'cflags': ['-m<(mips_fpu_mode)'],
4227 'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32r2'],
4228 'ldflags': [ '-target mipsel-linux-android', ],
4230 'cflags': [ '-target mipsel-linux-gnu', '-march=mipsel', '-mcpu=mips32r2'],
4231 'ldflags': [ '-target mipsel-linux-gnu', ],
4235 'cflags': ['-mips32r2', '-Wa,-mips32r2', ],
4239 ['mips_arch_variant=="r1"', {
4244 'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32'],
4245 'ldflags': [ '-target mipsel-linux-android', ],
4247 'cflags': [ '-target mipsel-linux-gnu', '-march=mipsel', '-mcpu=mips32'],
4248 'ldflags': [ '-target mipsel-linux-gnu', ],
4252 'cflags': ['-mips32', '-Wa,-mips32', ],
4258 # Clang does not support the following options.
4259 '-finline-limit=64',
4262 # TODO(gordanac) Enable integrated-as.
4263 '-no-integrated-as',
4266 ['clang==1 and OS=="android"', {
4268 '-B<(android_toolchain)', # Else /usr/bin/as gets picked up.
4271 # Let clang find the ld in the NDK.
4272 '--gcc-toolchain=<(android_toolchain)/..',
4275 ['mips_dsp_rev==1', {
4276 'cflags': ['-mdsp'],
4278 ['mips_dsp_rev==2', {
4279 'cflags': ['-mdspr2'],
4283 '-m<(mips_float_abi)-float'
4286 '-Wl,--no-keep-memory'
4289 '-Wno-uninitialized',
4294 ['target_arch=="mips64el"', {
4295 'target_conditions': [
4296 ['_toolset=="target"', {
4298 ['mips_arch_variant=="r6"', {
4299 'cflags': ['-mips64r6', '-Wa,-mips64r6'],
4300 'ldflags': ['-mips64r6'],
4302 ['mips_arch_variant=="r2"', {
4303 'cflags': ['-mips64r2', '-Wa,-mips64r2'],
4304 'ldflags': ['-mips64r2'],
4308 '-Wno-uninitialized',
4322 'target_conditions': [
4323 ['_toolset=="target"', {
4325 '--sysroot=<(sysroot)',
4328 '--sysroot=<(sysroot)',
4329 '<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))',
4335 # TODO(thakis): Remove, http://crbug.com/263960
4336 '-Wno-reserved-user-defined-literal',
4339 # gnu++11 instead of c++11 is needed because some code uses
4340 # typeof() (a GNU extension).
4341 # TODO(thakis): Eventually switch this to c++11 instead,
4342 # http://crbug.com/427584
4346 ['clang==0 and host_clang==1', {
4347 'target_conditions': [
4348 ['_toolset=="host"', {
4349 'cflags_cc': [ '-std=gnu++11', ],
4353 ['clang==1 and clang_use_chrome_plugins==1', {
4355 '<@(clang_chrome_plugins_flags)',
4358 ['clang==1 and clang_load!=""', {
4360 '-Xclang', '-load', '-Xclang', '<(clang_load)',
4363 ['clang==1 and clang_add_plugin!=""', {
4365 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
4368 ['clang==1 and target_arch=="ia32"', {
4370 # Else building libyuv gives clang's register allocator issues,
4371 # see llvm.org/PR15798 / crbug.com/233709
4372 '-momit-leaf-frame-pointer',
4373 # Align the stack on 16-byte boundaries, http://crbug.com/418554.
4374 '-mstack-alignment=16',
4378 ['clang==1 and "<(GENERATOR)"=="ninja"', {
4380 # See http://crbug.com/110262
4381 '-fcolor-diagnostics',
4384 # Common options for AddressSanitizer, LeakSanitizer,
4385 # ThreadSanitizer, MemorySanitizer and non-official CFI builds.
4386 ['asan==1 or lsan==1 or tsan==1 or msan==1 or ubsan==1 or ubsan_vptr==1 or '
4387 '(cfi_vptr==1 and buildtype!="Official")', {
4388 'target_conditions': [
4389 ['_toolset=="target"', {
4391 '-fno-omit-frame-pointer',
4392 '-gline-tables-only',
4395 '-fomit-frame-pointer',
4400 ['asan==1 or lsan==1 or tsan==1 or msan==1', {
4401 'target_conditions': [
4402 ['_toolset=="target"', {
4404 # Functions interposed by the sanitizers can make ld think
4405 # that some libraries aren't needed when they actually are,
4406 # http://crbug.com/234010. As workaround, disable --as-needed.
4410 'MEMORY_TOOL_REPLACES_ALLOCATOR',
4411 'MEMORY_SANITIZER_INITIAL_SIZE',
4417 'target_conditions': [
4418 ['_toolset=="target"', {
4420 '-fsanitize=address',
4421 # TODO(earthdok): Re-enable. http://crbug.com/427202
4422 #'-fsanitize-blacklist=<(asan_blacklist)',
4425 '-fsanitize=address',
4432 '-mllvm -asan-globals=0', # http://crbug.com/352073
4438 'target_conditions': [
4439 ['_toolset=="target"', {
4441 # FIXME: work on enabling more flags and getting rid of false
4442 # positives. http://crbug.com/174801.
4443 '-fsanitize=bounds',
4444 '-fsanitize=float-divide-by-zero',
4445 '-fsanitize=integer-divide-by-zero',
4447 '-fsanitize=object-size',
4448 '-fsanitize=return',
4449 '-fsanitize=returns-nonnull-attribute',
4450 '-fsanitize=shift-exponent',
4451 '-fsanitize=signed-integer-overflow',
4452 '-fsanitize=unreachable',
4453 '-fsanitize=vla-bound',
4454 '-fsanitize-blacklist=<(ubsan_blacklist)',
4455 # Employ the experimental PBQP register allocator to avoid
4456 # slow compilation on files with too many basic blocks.
4457 # See http://crbug.com/426271.
4458 '-mllvm -regalloc=pbqp',
4459 # Speculatively use coalescing to slightly improve the code
4460 # generated by PBQP regallocator. May increase compile time.
4461 '-mllvm -pbqp-coalescing',
4470 '-fsanitize=undefined',
4473 'UNDEFINED_SANITIZER',
4479 'target_conditions': [
4480 ['_toolset=="target"', {
4483 '-fsanitize-blacklist=<(ubsan_vptr_blacklist)',
4495 'UNDEFINED_SANITIZER',
4500 ['asan_coverage!=0 and sanitizer_coverage==0', {
4501 'target_conditions': [
4502 ['_toolset=="target"', {
4504 '-fsanitize-coverage=<(asan_coverage)',
4507 'SANITIZER_COVERAGE',
4512 ['sanitizer_coverage!=0', {
4513 'target_conditions': [
4514 ['_toolset=="target"', {
4516 '-fsanitize-coverage=<(sanitizer_coverage)',
4519 'SANITIZER_COVERAGE',
4524 ['(asan_coverage>1 or sanitizer_coverage>1) and target_arch=="arm"', {
4525 'target_conditions': [
4526 ['_toolset=="target"', {
4528 '-mllvm -sanitizer-coverage-block-threshold=0', # http://crbug.com/517105
4533 ['asan_field_padding!=0', {
4534 'target_conditions': [
4535 ['_toolset=="target"', {
4537 '-fsanitize-address-field-padding=<(asan_field_padding)',
4543 'target_conditions': [
4544 ['_toolset=="target"', {
4553 'WTF_USE_LEAK_SANITIZER=1',
4559 'target_conditions': [
4560 ['_toolset=="target"', {
4562 '-fsanitize=thread',
4563 '-fsanitize-blacklist=<(tsan_blacklist)',
4566 '-fsanitize=thread',
4570 'DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1',
4571 'WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1',
4577 'target_conditions': [
4578 ['_toolset=="target"', {
4580 '-fsanitize=memory',
4581 '-fsanitize-memory-track-origins=<(msan_track_origins)',
4582 '-fsanitize-blacklist=<(msan_blacklist)',
4585 '-fsanitize=memory',
4593 ['use_instrumented_libraries==1', {
4595 '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:instrumented_libraries',
4598 ['use_prebuilt_instrumented_libraries==1', {
4600 '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:prebuilt_instrumented_libraries',
4603 ['use_custom_libcxx==1', {
4605 '<(DEPTH)/buildtools/third_party/libc++/libc++.gyp:libcxx_proxy',
4608 ['order_profiling!=0 and (chromeos==1 or OS=="linux" or OS=="android")', {
4609 'target_conditions' : [
4610 # crazy_linker has an upstream gyp file we can't edit, and we
4611 # don't want to instrument it.
4612 ['_toolset=="target" and _target_name!="crazy_linker"', {
4614 '-finstrument-functions',
4615 # Allow mmx intrinsics to inline, so that the
4616 #0 compiler can expand the intrinsics.
4617 '-finstrument-functions-exclude-file-list=mmintrin.h',
4620 ['_toolset=="target" and OS=="android"', {
4622 # Avoids errors with current NDK:
4623 # "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"
4624 '-finstrument-functions-exclude-file-list=arm_neon.h,SaturatedArithmeticARM.h',
4629 ['linux_dump_symbols==1', {
4632 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0', {
4633 'target_conditions': [
4634 ['_toolset=="target"', {
4636 # Attempt to use less memory to prevent the linker from
4637 # running out of address space. Considering installing a
4638 # 64-bit kernel and switching to a 64-bit linker.
4639 '-Wl,--no-keep-memory',
4646 ['use_allocator!="tcmalloc"', {
4647 'defines': ['NO_TCMALLOC'],
4649 ['linux_use_gold_flags==1', {
4650 # Newer gccs and clangs support -fuse-ld, use the flag to force gold
4652 # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
4653 'ldflags': [ '-fuse-ld=gold', ],
4655 'target_conditions': [
4656 ['_toolset=="target"', {
4658 # Experimentation found that using four linking threads
4659 # saved ~20% of link time.
4660 # https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/281527606915bb36
4661 # Only apply this to the target linker, since the host
4662 # linker might not be gold, but isn't used much anyway.
4663 # TODO(raymes): Disable threading because gold is frequently
4664 # crashing on the bots: crbug.com/161942.
4666 # '-Wl,--thread-count=4',
4669 # TODO(thestig): Enable this for disabled cases.
4670 [ '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', {
4672 '-Wl,--detect-odr-violations',
4679 ['release_valgrind_build==0 and order_profiling==0 and asan==0 and msan==0 and lsan==0 and tsan==0', {
4680 'target_conditions': [
4681 ['_toolset=="target"', {
4683 '-Wl,--icf=<(gold_icf_level)',
4690 ['linux_use_bundled_binutils==1', {
4692 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4695 ['linux_use_bundled_gold==1 and '
4696 'not (clang==0 and (use_lto==1 or use_lto_o2==1))', {
4697 # Put our binutils, which contains gold in the search path. We pass
4698 # the path to gold to the compiler. gyp leaves unspecified what the
4699 # cwd is when running the compiler, so the normal gyp path-munging
4700 # fails us. This hack gets the right path.
4702 # Disabled when using GCC LTO because GCC also uses the -B search
4703 # path at link time to find "as", and our bundled "as" can only
4706 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4709 # Some binutils 2.23 releases may or may not have new dtags enabled,
4710 # but they are all compatible with --disable-new-dtags,
4711 # because the new dynamic tags are not created by default.
4712 ['binutils_version>=223', {
4713 # Newer binutils don't set DT_RPATH unless you disable "new" dtags
4714 # and the new DT_RUNPATH doesn't work without --no-as-needed flag.
4715 # FIXME(mithro): Figure out the --as-needed/--no-as-needed flags
4716 # inside this file to allow usage of --no-as-needed and removal of
4719 '-Wl,--disable-new-dtags',
4722 ['gcc_version>=47 and clang==0', {
4723 'target_conditions': [
4724 ['_toolset=="target"', {
4727 # See comment for -Wno-c++11-narrowing.
4729 # TODO(thakis): Remove, http://crbug.com/263960
4730 '-Wno-literal-suffix',
4735 ['host_gcc_version>=47 and clang==0 and host_clang==0', {
4736 'target_conditions': [
4737 ['_toolset=="host"', {
4740 # See comment for -Wno-c++11-narrowing.
4742 # TODO(thakis): Remove, http://crbug.com/263960
4743 '-Wno-literal-suffix',
4751 # FreeBSD-specific options; note that most FreeBSD options are set above,
4754 'target_defaults': {
4756 '-Wl,--no-keep-memory',
4760 # Android-specific options; note that most are set above with Linux.
4763 # This is a unique identifier for a given build. It's used for
4764 # identifying various build artifacts corresponding to a particular
4765 # build of chrome (e.g. where to find archived symbols).
4766 'chrome_build_id%': '',
4768 # Placing this variable here prevents from forking libvpx, used
4769 # by remoting. Remoting is off, so it needn't built,
4770 # so forking it's deps seems like overkill.
4771 # But this variable need defined to properly run gyp.
4772 # A proper solution is to have an OS==android conditional
4773 # in third_party/libvpx/libvpx.gyp to define it.
4774 'libvpx_path': 'lib/linux/arm',
4776 'target_defaults': {
4778 'release_extra_cflags%': '',
4780 # If we're using the components build, append "cr" to all shared
4781 # libraries to avoid naming collisions with android system library
4782 # versions with the same name (e.g. skia, icu).
4783 ['component=="shared_library"', {
4784 'android_product_extension': 'cr.so',
4786 'android_product_extension': 'so',
4790 'target_conditions': [
4791 ['_type=="shared_library"', {
4792 'product_extension': '<(android_product_extension)',
4795 # Settings for building device targets using Android's toolchain.
4796 # These are based on the setup.mk file from the Android NDK.
4798 # The NDK Android executable link step looks as follows:
4800 # $(TARGET_CRTBEGIN_DYNAMIC_O) <-- crtbegin.o
4801 # $(PRIVATE_OBJECTS) <-- The .o that we built
4802 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4803 # $(TARGET_LIBGCC) <-- libgcc.a
4804 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4805 # $(PRIVATE_LDLIBS) <-- System .so
4806 # $(TARGET_CRTEND_O) <-- crtend.o
4808 # For now the above are approximated for executables by adding
4809 # crtbegin.o to the end of the ldflags and 'crtend.o' to the end
4812 # The NDK Android shared library link step looks as follows:
4814 # $(PRIVATE_OBJECTS) <-- The .o that we built
4815 # -l,--whole-archive
4816 # $(PRIVATE_WHOLE_STATIC_LIBRARIES)
4817 # -l,--no-whole-archive
4818 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4819 # $(TARGET_LIBGCC) <-- libgcc.a
4820 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4821 # $(PRIVATE_LDLIBS) <-- System .so
4823 # For now, assume that whole static libraries are not needed.
4825 # For both executables and shared libraries, add the proper
4826 # libgcc.a to the start of libraries which puts it in the
4827 # proper spot after .o and .a files get linked in.
4829 # TODO: The proper thing to do longer-tem would be proper gyp
4830 # support for a custom link command line.
4831 ['_toolset=="target"', {
4833 '-pthread', # Not supported by Android toolchain.
4836 '-ffunction-sections',
4839 '-fstack-protector',
4841 '-finline-limit=64',
4842 '<@(release_extra_cflags)',
4843 '--sysroot=<(android_ndk_sysroot)',
4844 # NOTE: The libc++ header include paths below are specified in
4845 # cflags rather than include_dirs because they need to come
4846 # after include_dirs.
4847 # The include ordering here is important; change with caution.
4848 '-isystem<(android_libcpp_include)',
4849 '-isystem<(android_ndk_root)/sources/cxx-stl/llvm-libc++abi/libcxxabi/include',
4850 '-isystem<(android_ndk_root)/sources/android/support/include',
4854 '__GNU_SOURCE=1', # Necessary for clone()
4855 'CHROME_BUILD_ID="<(chrome_build_id)"',
4856 # The NDK has these things, but doesn't define the constants
4857 # to say that it does. Define them here instead.
4861 '-pthread', # Not supported by Android toolchain.
4864 '-Wl,--build-id=sha1',
4865 '-Wl,--no-undefined',
4866 '--sysroot=<(android_ndk_sysroot)',
4868 '-L<(android_libcpp_libs_dir)',
4869 # Don't allow visible symbols from libgcc or libc++ to be
4871 '-Wl,--exclude-libs=libgcc.a',
4872 '-Wl,--exclude-libs=libc++_static.a',
4873 # Don't allow visible symbols from libraries that contain
4874 # assembly code with symbols that aren't hidden properly.
4875 # http://crbug.com/448386
4876 '-Wl,--exclude-libs=libcommon_audio.a',
4877 '-Wl,--exclude-libs=libcommon_audio_neon.a',
4878 '-Wl,--exclude-libs=libcommon_audio_sse2.a',
4879 '-Wl,--exclude-libs=libiSACFix.a',
4880 '-Wl,--exclude-libs=libisac_neon.a',
4881 '-Wl,--exclude-libs=libopus.a',
4882 '-Wl,--exclude-libs=libvpx.a',
4885 '-l<(android_libcpp_library)',
4887 # Manually link the libgcc.a that the cross compiler uses.
4888 '<!(<(android_toolchain)/*-gcc -print-libgcc-file-name)',
4894 ['component=="static_library"', {
4895 'target_conditions': [
4896 ['use_native_jni_exports==0', {
4897 # Use a linker version script to strip JNI exports from
4898 # binaries which have not specifically asked to use them.
4900 '-Wl,--version-script=<!(cd <(DEPTH) && pwd -P)/build/android/android_no_jni_exports.lst',
4907 # Clang with libc++ does not require an explicit atomic
4908 # library reference.
4912 # Work around incompatibilities between bionic and clang
4914 '-D__compiler_offsetof=__builtin_offsetof',
4915 '-Dnan=__builtin_nan',
4918 # Clang does not support the following options.
4919 '-finline-limit=64',
4922 ['target_arch=="arm"', {
4924 '-target arm-linux-androideabi',
4927 '-target arm-linux-androideabi',
4930 ['target_arch=="ia32"', {
4932 '-target i686-linux-androideabi',
4935 '-target i686-linux-androideabi',
4938 # Place holder for x64 support, not tested.
4939 # TODO: Enable clang support for Android x64. http://crbug.com/346626
4940 ['target_arch=="x64"', {
4942 '-target x86_64-linux-androideabi',
4945 '-target x86_64-linux-androideabi',
4952 # Android build relies on -Wl,--gc-sections removing
4953 # unreachable code. ASan instrumentation for globals inhibits
4954 # this and results in a library with unresolvable relocations.
4955 # TODO(eugenis): find a way to reenable this.
4956 '-mllvm -asan-globals=0',
4959 ['target_arch == "arm" and order_profiling==0', {
4961 # Enable identical code folding to reduce size.
4962 '-Wl,--icf=<(gold_icf_level)',
4965 ['target_arch=="ia32"', {
4966 # The x86 toolchain currently has problems with stack-protector.
4968 '-fstack-protector',
4971 '-fno-stack-protector',
4975 'target_conditions': [
4976 ['_type=="executable"', {
4977 # Force android tools to export the "main" symbol so they can be
4978 # loaded on ICS using the run_pie wrapper. See crbug.com/373219.
4979 # TODO(primiano): remove -fvisibility and -rdynamic flags below
4980 # when ICS support will be dropped.
4983 '-fvisibility=default',
4987 '-Wl,--gc-sections',
4988 '-Wl,-z,nocopyreloc',
4991 # crtbegin_dynamic.o should be the last item in ldflags.
4992 '<(android_ndk_lib)/crtbegin_dynamic.o',
4995 # crtend_android.o needs to be the last item in libraries.
4996 # Do not add any libraries after this!
4997 '<(android_ndk_lib)/crtend_android.o',
5000 ['_type=="shared_library" or _type=="loadable_module"', {
5002 '-Wl,-shared,-Bsymbolic',
5003 # crtbegin_so.o should be the last item in ldflags.
5004 '<(android_ndk_lib)/crtbegin_so.o',
5007 # crtend_so.o needs to be the last item in libraries.
5008 # Do not add any libraries after this!
5009 '<(android_ndk_lib)/crtend_so.o',
5014 # Settings for building host targets using the system toolchain.
5015 ['_toolset=="host"', {
5017 # Due to issues in Clang build system, using ASan on 32-bit
5018 # binaries on x86_64 host is problematic.
5019 # TODO(eugenis): re-enable.
5020 '-fsanitize=address',
5023 '-fsanitize=address',
5024 '-Wl,-z,noexecstack',
5025 '-Wl,--gc-sections',
5028 '-Wl,--warn-shared-textrel',
5029 '-Wl,--fatal-warnings',
5032 # Settings for building host targets on mac.
5033 ['_toolset=="host" and host_os=="mac"', {
5043 'cflags!': ['-fvisibility=hidden'],
5044 'cflags_cc!': ['-fvisibility-inlines-hidden'],
5046 ['OS=="mac" or OS=="ios"', {
5047 'target_defaults': {
5050 'ALWAYS_SEARCH_USER_PATHS': 'NO',
5051 # Don't link in libarclite_macosx.a, see http://crbug.com/156530.
5052 'CLANG_LINK_OBJC_RUNTIME': 'NO', # -fno-objc-link-runtime
5053 'COPY_PHASE_STRIP': 'NO',
5054 'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
5055 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
5056 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
5057 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
5058 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
5059 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden
5060 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
5061 'GCC_OBJC_CALL_CXX_CDTORS': 'YES', # -fobjc-call-cxx-cdtors
5062 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
5063 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
5064 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror
5065 'GCC_VERSION': '4.2',
5066 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
5067 'USE_HEADERMAP': 'NO',
5072 # Don't warn about unused function parameters.
5073 '-Wno-unused-parameter',
5074 # Don't warn about the "struct foo f = {0};" initialization
5076 '-Wno-missing-field-initializers',
5079 ['chromium_mac_pch', {'GCC_PRECOMPILE_PREFIX_HEADER': 'YES'},
5080 {'GCC_PRECOMPILE_PREFIX_HEADER': 'NO'}
5082 # Note that the prebuilt Clang binaries should not be used for iOS
5083 # development except for ASan builds.
5085 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', # -std=c++11
5086 # Warn if automatic synthesis is triggered with
5087 # the -Wobjc-missing-property-synthesis flag.
5088 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
5089 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
5091 # This warns on selectors from Cocoa headers (-length, -set).
5092 # cfe-dev is currently discussing the merits of this warning.
5093 # TODO(thakis): Reevaluate what to do with this, based one
5094 # cfe-dev discussion.
5095 '-Wno-selector-type-mismatch',
5098 ['clang_xcode==0', {
5099 'CC': '$(SOURCE_ROOT)/<(clang_dir)/clang',
5100 'LDPLUSPLUS': '$(SOURCE_ROOT)/<(clang_dir)/clang++',
5104 ['clang==1 and clang_xcode==0 and clang_use_chrome_plugins==1', {
5106 '<@(clang_chrome_plugins_flags)',
5109 ['clang==1 and clang_xcode==0 and clang_load!=""', {
5111 '-Xclang', '-load', '-Xclang', '<(clang_load)',
5114 ['clang==1 and clang_xcode==0 and clang_add_plugin!=""', {
5116 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
5119 ['clang==1 and "<(GENERATOR)"=="ninja"', {
5121 # See http://crbug.com/110262
5122 '-fcolor-diagnostics',
5125 ['OS=="ios" and target_subarch!="arm32" and \
5126 "<(GENERATOR)"=="xcode"', {
5128 # TODO(ios): when building Chrome for iOS on 64-bit platform
5129 # with Xcode, the -Wshorted-64-to-32 warning is automatically
5130 # enabled. This cause failures when compiling protobuf code,
5131 # so disable the warning. http://crbug.com/359107
5132 '-Wno-shorten-64-to-32',
5140 'clang_dir': '../third_party/llvm-build/Release+Asserts/bin',
5146 '-fsanitize=address',
5147 '-mllvm -asan-globals=0', # http://crbug.com/352073
5148 '-gline-tables-only',
5152 ['asan_coverage!=0 and sanitizer_coverage==0', {
5153 'target_conditions': [
5154 ['_toolset=="target"', {
5156 '-fsanitize-coverage=<(asan_coverage)',
5159 'SANITIZER_COVERAGE',
5164 ['sanitizer_coverage!=0', {
5165 'target_conditions': [
5166 ['_toolset=="target"', {
5168 '-fsanitize-coverage=<(sanitizer_coverage)',
5171 'SANITIZER_COVERAGE',
5177 'target_conditions': [
5178 ['_type!="static_library"', {
5179 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
5184 '-fsanitize=address',
5188 ['mac_write_linker_maps==1', {
5191 '-Wl,-map,>(_target_name).map',
5198 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
5199 'target_conditions': [
5200 ['_type=="executable"', {
5206 # Define copy_asan_dylib_path in a variable ending in
5207 # _path so that gyp understands it's a path and
5208 # performs proper relativization during dict merging.
5209 'copy_asan_dylib_path':
5210 'mac/copy_asan_runtime_dylib.sh',
5212 'postbuild_name': 'Copy ASan runtime dylib',
5214 '<(copy_asan_dylib_path)',
5223 ], # target_conditions
5224 }, # target_defaults
5225 }], # OS=="mac" or OS=="ios"
5227 'target_defaults': {
5229 # Prevent Mac OS X AssertMacros.h from defining macros that collide
5230 # with common names, like 'check', 'require', and 'verify'.
5231 # (Included by system header. Also exists on iOS but not included.)
5232 # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h
5233 '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0',
5236 # These should end with %, but there seems to be a bug with % in
5237 # variables that are intended to be set to different values in
5238 # different targets, like these.
5239 'mac_pie': 1, # Most executables can be position-independent.
5240 # Strip debugging symbols from the target.
5241 'mac_strip': '<(mac_strip_release)',
5245 ['mac_want_real_dsym=="default"', {
5248 'mac_real_dsym': '<(mac_want_real_dsym)'
5253 ['mac_want_real_dsym=="default"', {
5254 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
5256 'mac_real_dsym': '<(mac_want_real_dsym)'
5265 ['branding=="Chrome" and buildtype=="Official"', {
5268 # The Google Chrome Framework dSYM generated by dsymutil has
5269 # grown larger than 4GB, which dsymutil can't handle. Reduce
5270 # the amount of debug symbols.
5271 '-fno-standalone-debug', # See http://crbug.com/479841
5276 }, # configuration "Release"
5279 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
5280 # (Equivalent to -fPIC)
5281 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
5282 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5283 # Keep pch files below xcodebuild/.
5284 'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders',
5286 # Someday this can be replaced by an 'GCC_STRICT_ALIASING': 'NO'
5287 # xcode_setting, but not until all downstream projects' mac bots are
5288 # using xcode >= 4.6, because that's when the default value of the
5289 # flag in the compiler switched. Pre-4.6, the value 'NO' for that
5290 # setting is a no-op as far as xcode is concerned, but the compiler
5291 # behaves differently based on whether -fno-strict-aliasing is
5293 '-fno-strict-aliasing', # See http://crbug.com/32204.
5296 'target_conditions': [
5297 ['_type=="executable"', {
5300 # Arranges for data (heap) pages to be protected against
5301 # code execution when running on Mac OS X 10.7 ("Lion"), and
5302 # ensures that the position-independent executable (PIE) bit
5303 # is set for ASLR when running on Mac OS X 10.5 ("Leopard").
5305 # Define change_mach_o_flags in a variable ending in _path
5306 # so that GYP understands it's a path and performs proper
5307 # relativization during dict merging.
5308 'change_mach_o_flags_path':
5309 'mac/change_mach_o_flags_from_xcode.sh',
5310 'change_mach_o_flags_options%': [
5312 'target_conditions': [
5313 ['mac_pie==0 or release_valgrind_build==1', {
5314 # Don't enable PIE if it's unwanted. It's unwanted if
5315 # the target specifies mac_pie=0 or if building for
5316 # Valgrind, because Valgrind doesn't understand slide.
5317 # See the similar mac_pie/release_valgrind_build check
5319 'change_mach_o_flags_options': [
5325 'postbuild_name': 'Change Mach-O Flags',
5327 '<(change_mach_o_flags_path)',
5328 '>@(change_mach_o_flags_options)',
5332 'target_conditions': [
5333 ['mac_pie==1 and release_valgrind_build==0', {
5334 # Turn on position-independence (ASLR) for executables. When
5335 # PIE is on for the Chrome executables, the framework will
5336 # also be subject to ASLR.
5337 # Don't do this when building for Valgrind, because Valgrind
5338 # doesn't understand slide. TODO: Make Valgrind on Mac OS X
5339 # understand slide, and get rid of the Valgrind check.
5342 '-Wl,-pie', # Position-independent executable (MH_PIE)
5348 ['(_type=="executable" or _type=="shared_library" or \
5349 _type=="loadable_module") and mac_strip!=0', {
5350 'target_conditions': [
5351 ['mac_real_dsym == 1', {
5352 # To get a real .dSYM bundle produced by dsymutil, set the
5353 # debug information format to dwarf-with-dsym. Since
5354 # strip_from_xcode will not be used, set Xcode to do the
5355 # stripping as well.
5359 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
5360 'DEPLOYMENT_POSTPROCESSING': 'YES',
5361 'STRIP_INSTALLED_PRODUCT': 'YES',
5363 # Only strip non-ASan builds.
5365 'target_conditions': [
5366 ['_type=="shared_library" or _type=="loadable_module"', {
5367 # The Xcode default is to strip debugging symbols
5368 # only (-S). Local symbols should be stripped as
5369 # well, which will be handled by -x. Xcode will
5370 # continue to insert -S when stripping even when
5371 # additional flags are added with STRIPFLAGS.
5373 }], # _type=="shared_library" or _type=="loadable_module"
5374 ], # target_conditions
5380 }, # configuration "Release"
5382 }, { # mac_real_dsym != 1
5383 # To get a fast fake .dSYM bundle, use a post-build step to
5384 # produce the .dSYM and strip the executable. strip_from_xcode
5385 # only operates in the Release configuration.
5389 # Define strip_from_xcode in a variable ending in _path
5390 # so that gyp understands it's a path and performs proper
5391 # relativization during dict merging.
5392 'strip_from_xcode_path': 'mac/strip_from_xcode',
5394 'postbuild_name': 'Strip If Needed',
5395 'action': ['<(strip_from_xcode_path)'],
5399 ], # target_conditions
5400 }], # (_type=="executable" or _type=="shared_library" or
5401 # _type=="loadable_module") and mac_strip!=0
5402 ], # target_conditions
5403 }, # target_defaults
5407 'ios/coverage.gypi',
5409 'target_defaults': {
5410 'xcode_settings' : {
5411 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
5412 'ENABLE_BITCODE': 'NO',
5415 # Older Xcodes do not support -Wno-deprecated-register, so pass an
5416 # additional flag to suppress the "unknown compiler option" error.
5417 # Restrict this flag to builds that are either compiling with Xcode
5418 # or compiling with Xcode's Clang. This will allow Ninja builds to
5419 # continue failing on unknown compiler options.
5420 # TODO(rohitrao): This flag is temporary and should be removed as
5421 # soon as the iOS bots are updated to use Xcode 5.1.
5422 ['clang_xcode==1', {
5424 '-Wno-unknown-warning-option',
5425 # It's not possible to achieve nullability completeness before
5426 # all builders are running Xcode 7. crbug.com/499809
5427 '-Wno-nullability-completeness',
5431 # Limit the valid architectures depending on "target_subarch".
5432 # This need to include the "arm" architectures but also the "x86"
5433 # ones (they are used when building for the simulator).
5434 ['target_subarch=="arm32"', {
5435 'VALID_ARCHS': ['armv7', 'i386'],
5437 ['target_subarch=="arm64"', {
5438 'VALID_ARCHS': ['arm64', 'x86_64'],
5440 ['target_subarch=="both"', {
5441 'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
5443 ['use_system_libcxx==1', {
5444 'target_conditions': [
5445 # Only use libc++ when building target for iOS not when building
5446 # tools for the host (OS X) as Mac targets OS X SDK 10.6 which
5447 # does not support libc++.
5448 ['_toolset=="target"', {
5449 'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++
5453 # The default for deployment target of 7.0+ is libc++, so force
5454 # the old behavior unless libc++ is enabled.
5455 'CLANG_CXX_LIBRARY': 'libstdc++', # -stdlib=libstdc++
5459 'target_conditions': [
5460 ['_toolset=="host"', {
5462 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
5463 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5472 ['_toolset=="target"', {
5474 # This section should be for overriding host settings. But,
5475 # since we can't negate the iphone deployment target above, we
5476 # instead set it here for target only.
5477 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)',
5478 'ARCHS': ['$(ARCHS_STANDARD_INCLUDING_64_BIT)'],
5481 ['_type=="executable"', {
5485 'DEPLOYMENT_POSTPROCESSING': 'YES',
5486 'STRIP_INSTALLED_PRODUCT': 'YES',
5488 ['buildtype!="Official"', {
5489 # Remove dSYM to reduce build time.
5490 'DEBUG_INFORMATION_FORMAT': 'dwarf',
5497 # Remove dSYM to reduce build time.
5498 'DEBUG_INFORMATION_FORMAT': 'dwarf',
5504 ['chromium_ios_signing', {
5505 # iOS SDK wants everything for device signed.
5506 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
5508 'CODE_SIGNING_REQUIRED': 'NO',
5509 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
5514 ], # target_conditions
5515 }, # target_defaults
5518 'target_defaults': {
5520 '_WIN32_WINNT=0x0603',
5527 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
5528 'WIN32_LEAN_AND_MEAN',
5531 # _HAS_EXCEPTIONS must match ExceptionHandling in msvs_settings.
5532 '_HAS_EXCEPTIONS=0',
5533 # Silence some warnings; we can't switch the the 'recommended'
5534 # versions as they're not available on old OSs.
5535 '_WINSOCK_DEPRECATED_NO_WARNINGS',
5538 ['buildtype=="Official"', {
5539 # In official builds, targets can self-select an optimization
5540 # level by defining a variable named 'optimize', and setting it
5542 # - "size", optimizes for minimal code size - the default.
5543 # - "speed", optimizes for speed over code size.
5544 # - "max", whole program optimization and link-time code
5545 # generation. This is very expensive and should be used
5548 'optimize%': 'size',
5552 # Set /LTCG for the official builds.
5553 'LinkTimeCodeGeneration': '1',
5554 'AdditionalOptions': [
5555 # Set the number of LTCG code-gen threads to eight.
5556 # The default is four. This gives a 5-10% link speedup.
5561 'target_conditions': [
5562 ['optimize=="size"', {
5564 'VCCLCompilerTool': {
5565 # 1, optimizeMinSpace, Minimize Size (/O1)
5566 'Optimization': '1',
5567 # 2, favorSize - Favor small code (/Os)
5568 'FavorSizeOrSpeed': '2',
5573 # This config is used to avoid a problem in ffmpeg, see
5574 # http://crbug.com/264459.
5575 ['optimize=="size_no_ltcg"', {
5577 'VCCLCompilerTool': {
5578 # 1, optimizeMinSpace, Minimize Size (/O1)
5579 'Optimization': '1',
5580 # 2, favorSize - Favor small code (/Os)
5581 'FavorSizeOrSpeed': '2',
5586 ['optimize=="speed"', {
5588 'VCCLCompilerTool': {
5589 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5590 'Optimization': '2',
5591 # 1, favorSpeed - Favor fast code (/Ot)
5592 'FavorSizeOrSpeed': '1',
5597 ['optimize=="max"', {
5598 # Disable Warning 4702 ("Unreachable code") for the WPO/PGO
5599 # builds. Probably anything that this would catch that
5600 # wouldn't be caught in a normal build isn't going to
5601 # actually be a bug, so the incremental value of C4702 for
5602 # PGO builds is likely very small.
5603 'msvs_disabled_warnings': [
5607 'VCCLCompilerTool': {
5608 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5609 'Optimization': '2',
5610 # 1, favorSpeed - Favor fast code (/Ot)
5611 'FavorSizeOrSpeed': '1',
5612 # This implies link time code generation.
5613 'WholeProgramOptimization': 'true',
5621 ['msvs_xtree_patched!=1', {
5622 # If xtree hasn't been patched, then we disable C4702. Otherwise,
5623 # it's enabled. This will generally only be true for system-level
5624 # installed Express users.
5625 'msvs_disabled_warnings': [
5630 'msvs_system_include_dirs': [
5631 '<(windows_sdk_path)/Include/shared',
5632 '<(windows_sdk_path)/Include/um',
5633 '<(windows_sdk_path)/Include/winrt',
5634 '$(VSInstallDir)/VC/atlmfc/include',
5636 'msvs_cygwin_shell': 0,
5637 'msvs_disabled_warnings': [
5638 # C4091: 'typedef ': ignored on left of 'X' when no variable is
5640 # This happens in a number of Windows headers. Dumb.
5643 # C4127: conditional expression is constant
5644 # This warning can in theory catch dead code and other problems, but
5645 # triggers in far too many desirable cases where the conditional
5646 # expression is either set by macros or corresponds some legitimate
5647 # compile-time constant expression (due to constant template args,
5648 # conditionals comparing the sizes of different types, etc.). Some of
5649 # these can be worked around, but it's not worth it.
5652 # C4351: new behavior: elements of array 'array' will be default
5654 # This is a silly "warning" that basically just alerts you that the
5655 # compiler is going to actually follow the language spec like it's
5656 # supposed to, instead of not following it like old buggy versions
5657 # did. There's absolutely no reason to turn this on.
5660 # C4355: 'this': used in base member initializer list
5661 # It's commonly useful to pass |this| to objects in a class'
5662 # initializer list. While this warning can catch real bugs, most of
5663 # the time the constructors in question don't attempt to call methods
5664 # on the passed-in pointer (until later), and annotating every legit
5665 # usage of this is simply more hassle than the warning is worth.
5668 # C4503: 'identifier': decorated name length exceeded, name was
5670 # This only means that some long error messages might have truncated
5671 # identifiers in the presence of lots of templates. It has no effect
5672 # on program correctness and there's no real reason to waste time
5673 # trying to prevent it.
5676 # Warning C4589 says: "Constructor of abstract class ignores
5677 # initializer for virtual base class." Disable this warning because it
5678 # is flaky in VS 2015 RTM. It triggers on compiler generated
5679 # copy-constructors in some cases.
5682 # C4611: interaction between 'function' and C++ object destruction is
5684 # This warning is unavoidable when using e.g. setjmp/longjmp. MSDN
5685 # suggests using exceptions instead of setjmp/longjmp for C++, but
5686 # Chromium code compiles without exception support. We therefore have
5687 # to use setjmp/longjmp for e.g. JPEG decode error handling, which
5688 # means we have to turn off this warning (and be careful about how
5689 # object destruction happens in such cases).
5692 # TODO(maruel): These warnings are level 4. They will be slowly
5693 # removed as code is fixed.
5694 4100, # Unreferenced formal parameter
5695 4121, # Alignment of a member was sensitive to packing
5696 4244, # Conversion from 'type1' to 'type2', possible loss of data
5697 4481, # Nonstandard extension used: override specifier 'keyword'
5698 4505, # Unreferenced local function has been removed
5699 4510, # Default constructor could not be generated
5700 4512, # Assignment operator could not be generated
5701 4610, # Object can never be instantiated
5702 4838, # Narrowing conversion. Doesn't seem to be very useful.
5703 4995, # 'X': name was marked as #pragma deprecated
5704 4996, # 'X': was declared deprecated (for GetVersionEx).
5706 # These are variable shadowing warnings that are new in VS2015. We
5707 # should work through these at some point -- they may be removed from
5708 # the RTM release in the /W4 set.
5709 4456, 4457, 4458, 4459,
5712 'VCCLCompilerTool': {
5713 'AdditionalOptions': ['/MP'],
5714 'MinimalRebuild': 'false',
5715 'BufferSecurityCheck': 'true',
5716 'EnableFunctionLevelLinking': 'true',
5717 'RuntimeTypeInfo': 'false',
5718 'WarningLevel': '4',
5719 'WarnAsError': 'true',
5720 'DebugInformationFormat': '3',
5721 # ExceptionHandling must match _HAS_EXCEPTIONS above.
5722 'ExceptionHandling': '0',
5724 'VCLibrarianTool': {
5725 'AdditionalOptions': ['/ignore:4221'],
5726 'AdditionalLibraryDirectories': [
5727 '<(windows_sdk_path)/Lib/win8/um/x86',
5731 'AdditionalDependencies': [
5743 'AdditionalLibraryDirectories': [
5744 '<(windows_sdk_path)/Lib/win8/um/x86',
5746 'GenerateDebugInformation': 'true',
5747 'MapFileName': '$(OutDir)\\$(TargetName).map',
5748 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
5749 'FixedBaseAddress': '1',
5752 # 1 == /SUBSYSTEM:CONSOLE
5753 # 2 == /SUBSYSTEM:WINDOWS
5754 # Most of the executables we'll ever create are tests
5755 # and utilities with console output.
5759 'GenerateStublessProxies': 'true',
5760 'TypeLibraryName': '$(InputName).tlb',
5761 'OutputDirectory': '$(IntDir)',
5762 'HeaderFileName': '$(InputName).h',
5763 'DLLDataFileName': '$(InputName).dlldata.c',
5764 'InterfaceIdentifierFileName': '$(InputName)_i.c',
5765 'ProxyFileName': '$(InputName)_p.c',
5767 'VCResourceCompilerTool': {
5769 'AdditionalIncludeDirectories': [
5771 '<(SHARED_INTERMEDIATE_DIR)',
5774 'target_conditions': [
5775 ['_type=="executable"', {
5777 'EmbedManifest': 'true',
5780 ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', {
5782 'AdditionalManifestFiles': [
5783 '>(win_exe_compatibility_manifest)',
5789 # Building with Clang on Windows is a work in progress and very
5790 # experimental. See crbug.com/82385.
5791 # Keep this in sync with the similar blocks in build/config/compiler/BUILD.gn
5793 'VCCLCompilerTool': {
5794 'AdditionalOptions': [
5795 # Many files use intrinsics without including this header.
5796 # TODO(hans): Fix those files, or move this to sub-GYPs.
5799 # TODO(hans): Make this list shorter eventually, http://crbug.com/504657
5800 '-Qunused-arguments', # http://crbug.com/504658
5801 '-Wno-microsoft-enum-value', # http://crbug.com/505296
5802 '-Wno-unknown-pragmas', # http://crbug.com/505314
5803 '-Wno-unused-value', # http://crbug.com/505318
5807 ['clang==1 and clang_use_chrome_plugins==1', {
5808 'VCCLCompilerTool': {
5809 'AdditionalOptions': [
5810 '<@(clang_chrome_plugins_flags)',
5814 ['clang==1 and MSVS_VERSION == "2013"', {
5815 'VCCLCompilerTool': {
5816 'AdditionalOptions': [
5817 '-fmsc-version=1800',
5821 ['clang==1 and MSVS_VERSION == "2015"', {
5822 'VCCLCompilerTool': {
5823 'AdditionalOptions': [
5824 '-fmsc-version=1900',
5828 ['clang==1 and "<!(python <(DEPTH)/build/win/use_ansi_codes.py)"=="True"', {
5829 'VCCLCompilerTool': {
5830 'AdditionalOptions': [
5831 # cmd.exe doesn't understand ANSI escape codes by default,
5832 # so only enable them if something emulating them is around.
5833 '-fansi-escape-codes',
5834 # Also see http://crbug.com/110262
5835 '-fcolor-diagnostics',
5843 ['disable_nacl==1', {
5844 'target_defaults': {
5850 ['OS=="win" and msvs_use_common_linker_extras', {
5851 'target_defaults': {
5866 'AdditionalOptions': [
5877 'AdditionalOptions': ['/largeaddressaware'],
5881 # TODO(asan/win): Move this down into the general
5882 # win-target_defaults section once the 64-bit asan runtime
5883 # exists. See crbug.com/345874.
5884 'VCCLCompilerTool': {
5885 'AdditionalOptions': [
5886 '-fsanitize=address',
5887 '-fsanitize-blacklist=<(PRODUCT_DIR)/../../tools/memory/asan/blacklist_win.txt',
5889 'AdditionalIncludeDirectories': [
5890 # MSVC needs to be able to find the sanitizer headers when
5891 # invoked via /fallback. This is critical for using macros
5892 # like ASAN_UNPOISON_MEMORY_REGION in files where we fall
5894 '<(DEPTH)/<(make_clang_dir)/lib/clang/<!(python <(DEPTH)/tools/clang/scripts/update.py --print-clang-version)/include_sanitizer',
5898 'AdditionalLibraryDirectories': [
5899 # TODO(hans): If make_clang_dir is absolute, this breaks.
5900 '<(DEPTH)/<(make_clang_dir)/lib/clang/<!(python <(DEPTH)/tools/clang/scripts/update.py --print-clang-version)/lib/windows',
5903 'target_conditions': [
5904 ['component=="shared_library"', {
5906 'AdditionalDependencies': [
5907 'clang_rt.asan_dynamic-i386.lib',
5908 'clang_rt.asan_dynamic_runtime_thunk-i386.lib',
5912 ['_type=="executable" and component=="static_library"', {
5914 'AdditionalDependencies': [
5915 'clang_rt.asan-i386.lib',
5919 ['(_type=="shared_library" or _type=="loadable_module") and component=="static_library"', {
5921 'AdditionalDependencies': [
5922 'clang_rt.asan_dll_thunk-i386.lib',
5928 ['sanitizer_coverage!=0', {
5929 # TODO(asan/win): Move this down into the general
5930 # win-target_defaults section once the 64-bit asan runtime
5931 # exists. See crbug.com/345874.
5932 'VCCLCompilerTool': {
5933 'AdditionalOptions': [
5934 '-fsanitize-coverage=<(sanitizer_coverage)',
5941 ['sanitizer_coverage!=0', {
5942 # TODO(asan/win): Move this down into the general
5943 # win-target_defaults section once the 64-bit asan runtime
5944 # exists. See crbug.com/345874.
5946 'SANITIZER_COVERAGE',
5954 'AdditionalOptions': [
5955 # safeseh is not compatible with x64
5967 ['enable_new_npdevice_api==1', {
5968 'target_defaults': {
5970 'ENABLE_NEW_NPDEVICE_API',
5974 # Don't warn about the "typedef 'foo' locally defined but not used"
5975 # for gcc 4.8 and higher.
5976 # TODO: remove this flag once all builds work. See crbug.com/227506
5977 ['gcc_version>=48 and clang==0', {
5978 'target_defaults': {
5980 '-Wno-unused-local-typedefs',
5984 ['gcc_version>=48 and clang==0 and host_clang==1', {
5985 'target_defaults': {
5986 'target_conditions': [
5987 ['_toolset=="host"', { 'cflags!': [ '-Wno-unused-local-typedefs' ]}],
5991 ['clang==1 and ((OS!="mac" and OS!="ios") or clang_xcode==0) '
5993 'make_global_settings': [
5994 ['CC', '<(make_clang_dir)/bin/clang'],
5995 ['CXX', '<(make_clang_dir)/bin/clang++'],
5996 ['CC.host', '$(CC)'],
5997 ['CXX.host', '$(CXX)'],
6000 ['clang==1 and OS=="win"', {
6001 'make_global_settings': [
6002 # On Windows, gyp's ninja generator only looks at CC.
6003 ['CC', '<(make_clang_dir)/bin/clang-cl'],
6006 ['use_lld==1 and OS=="win"', {
6007 'make_global_settings': [
6008 # Limited to Windows because lld-link is the driver that is
6009 # compatible with link.exe.
6010 ['LD', '<(make_clang_dir)/bin/lld-link'],
6013 ['OS=="android" and clang==0', {
6014 # Hardcode the compiler names in the Makefile so that
6015 # it won't depend on the environment at make time.
6016 'make_global_settings': [
6017 ['CC', '<!(/bin/echo -n <(android_toolchain)/*-gcc)'],
6018 ['CXX', '<!(/bin/echo -n <(android_toolchain)/*-g++)'],
6019 ['CC.host', '<(host_cc)'],
6020 ['CXX.host', '<(host_cxx)'],
6023 ['OS=="linux" and target_arch=="mipsel" and host_arch!="mipsel" and chromeos==0 and clang==0', {
6024 # Set default mips cross tools on linux. These can be overridden
6025 # using CC,CXX,CC.host and CXX.host environment variables.
6026 'make_global_settings': [
6027 ['CC', '<!(which mipsel-linux-gnu-gcc)'],
6028 ['CXX', '<!(which mipsel-linux-gnu-g++)'],
6029 ['CC.host', '<(host_cc)'],
6030 ['CXX.host', '<(host_cxx)'],
6033 ['OS=="linux" and target_arch=="arm" and host_arch!="arm" and chromeos==0 and clang==0', {
6034 # Set default ARM cross tools on linux. These can be overridden
6035 # using CC,CXX,CC.host and CXX.host environment variables.
6036 'make_global_settings': [
6037 ['CC', '<!(which arm-linux-gnueabihf-gcc)'],
6038 ['CXX', '<!(which arm-linux-gnueabihf-g++)'],
6039 ['CC.host', '<(host_cc)'],
6040 ['CXX.host', '<(host_cxx)'],
6043 # TODO(yyanagisawa): supports GENERATOR==make
6044 # make generator doesn't support CC_wrapper without CC
6045 # in make_global_settings yet.
6046 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
6047 'make_global_settings': [
6048 ['CC_wrapper', '<(gomadir)/gomacc'],
6049 ['CXX_wrapper', '<(gomadir)/gomacc'],
6050 ['CC.host_wrapper', '<(gomadir)/gomacc'],
6051 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
6055 'target_defaults': {
6056 'target_conditions': [
6057 ['_toolset=="target"', {
6065 # Work-around for http://openradar.appspot.com/20356002
6066 ['_toolset=="target" and _type!="static_library"', {
6076 ['use_lto==1 and clang==0', {
6077 'target_defaults': {
6078 'target_conditions': [
6079 ['_toolset=="target"', {
6081 '-ffat-lto-objects',
6087 ['use_lto==1 and clang==1', {
6088 'target_defaults': {
6089 'target_conditions': [
6090 ['_toolset=="target"', {
6092 '--plugin', '../../<(make_clang_dir)/lib/LLVMgold.so',
6098 # Apply a lower LTO optimization level in non-official builds.
6099 ['use_lto==1 and clang==1 and buildtype!="Official"', {
6100 'target_defaults': {
6101 'target_conditions': [
6102 ['_toolset=="target"', {
6104 '-Wl,--plugin-opt,O1',
6107 ['_toolset=="target" and _type!="static_library"', {
6117 ['use_lto==1 and clang==1 and target_arch=="arm"', {
6118 'target_defaults': {
6119 'target_conditions': [
6120 ['_toolset=="target"', {
6121 # Without this flag, LTO produces a .text section that is larger
6122 # than the maximum call displacement, preventing the linker from
6123 # relocating calls (http://llvm.org/PR22999).
6125 '-Wl,-plugin-opt,-function-sections',
6131 ['(use_lto==1 or use_lto_o2==1) and clang==0', {
6132 'target_defaults': {
6133 'target_conditions': [
6134 ['_toolset=="target"', {
6142 ['(use_lto==1 or use_lto_o2==1) and clang==1', {
6143 'target_defaults': {
6144 'target_conditions': [
6145 ['_toolset=="target"', {
6154 'target_defaults': {
6155 'target_conditions': [
6156 ['_toolset=="target"', {
6158 '-fno-sanitize-trap=cfi',
6159 '-fsanitize-recover=cfi',
6168 '-fno-sanitize-trap=cfi',
6169 '-fsanitize-recover=cfi',
6173 '-fno-sanitize-trap=cfi',
6174 '-fsanitize-recover=cfi',
6178 'VCCLCompilerTool': {
6179 'AdditionalOptions': [
6180 '-fno-sanitize-trap=cfi',
6181 '-fsanitize-recover=cfi',
6186 ['_toolset=="target" and _type!="static_library"', {
6189 '-fno-sanitize-trap=cfi',
6190 '-fsanitize-recover=cfi',
6197 ['cfi_vptr==1 and cfi_diag==0', {
6198 'target_defaults': {
6199 'target_conditions': [
6200 ['_toolset=="target"', {
6209 'target_defaults': {
6210 'target_conditions': [
6211 ['_toolset=="target"', {
6213 '-fsanitize=cfi-vcall',
6214 '-fsanitize=cfi-derived-cast',
6215 '-fsanitize=cfi-unrelated-cast',
6216 '-fsanitize-blacklist=<(cfi_blacklist)',
6219 '-fsanitize=cfi-vcall',
6220 '-fsanitize=cfi-derived-cast',
6221 '-fsanitize=cfi-unrelated-cast',
6225 '-fsanitize=cfi-vcall',
6226 '-fsanitize=cfi-derived-cast',
6227 '-fsanitize=cfi-unrelated-cast',
6228 '-fsanitize-blacklist=<(cfi_blacklist)',
6232 'VCCLCompilerTool': {
6233 'AdditionalOptions': [
6234 '-fsanitize=cfi-vcall',
6235 '-fsanitize=cfi-derived-cast',
6236 '-fsanitize=cfi-unrelated-cast',
6237 '-fsanitize-blacklist=<(cfi_blacklist)',
6242 ['_toolset=="target" and _type!="static_library"', {
6245 '-fsanitize=cfi-vcall',
6246 '-fsanitize=cfi-derived-cast',
6247 '-fsanitize=cfi-unrelated-cast',
6256 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
6257 # This block adds *project-wide* configuration settings to each project
6258 # file. It's almost always wrong to put things here. Specify your
6259 # custom xcode_settings in target_defaults to add them to targets instead.
6262 # In an Xcode Project Info window, the "Base SDK for All Configurations"
6263 # setting sets the SDK on a project-wide basis. In order to get the
6264 # configured SDK to show properly in the Xcode UI, SDKROOT must be set
6265 # here at the project level.
6268 ['mac_sdk_path==""', {
6269 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
6271 'SDKROOT': '<(mac_sdk_path)', # -isysroot
6277 ['ios_sdk_path==""', {
6279 # TODO(justincohen): Ninja only supports simulator for now.
6280 ['"<(GENERATOR)"=="xcode"', {
6281 'SDKROOT': 'iphoneos<(ios_sdk)', # -isysroot
6283 'SDKROOT': 'iphonesimulator<(ios_sdk)', # -isysroot
6287 'SDKROOT': '<(ios_sdk_path)', # -isysroot
6292 # Target both iPhone and iPad.
6293 'TARGETED_DEVICE_FAMILY': '1,2',
6296 ['target_arch=="x64"', {
6301 ['target_arch=="ia32"', {
6310 # The Xcode generator will look for an xcode_settings section at the root
6311 # of each dict and use it to apply settings on a file-wide basis. Most
6312 # settings should not be here, they should be in target-specific
6313 # xcode_settings sections, or better yet, should use non-Xcode-specific
6314 # settings in target dicts. SYMROOT is a special case, because many other
6315 # Xcode variables depend on it, including variables such as
6316 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6317 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6318 # files to appear (when present) in the UI as actual files and not red
6319 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6320 # and therefore SYMROOT, needs to be set at the project level.
6321 'SYMROOT': '<(DEPTH)/xcodebuild',