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 # Typedef X509Certificate::OSCertHandle to OpenSSL's struct X509*.
74 'use_openssl_certs%': 0,
76 # Disable viewport meta tag by default.
77 'enable_viewport%': 0,
79 # Enable HiDPI support.
82 # Override buildtype to select the desired build flavor.
83 # Dev - everyday build for development/testing
84 # Official - release build (generally implies additional processing)
85 # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp
86 # conversion is done), some of the things which are now controlled by
87 # 'branding', such as symbol generation, will need to be refactored
88 # based on 'buildtype' (i.e. we don't care about saving symbols for
89 # non-Official # builds).
92 # Override branding to select the desired branding flavor.
93 'branding%': 'Chromium',
96 # ChromeOS and Windows use Aura and Ash.
97 ['chromeos==1 or OS=="win" or OS=="linux"', {
102 ['chromecast==1 and OS!="android"', {
112 # Whether we're a traditional desktop unix.
113 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and chromeos==0', {
119 # Embedded implies ozone.
125 'target_arch%': 'arm',
127 # Default architecture we're building for is the architecture we're
128 # building on, and possibly sub-architecture (for iOS builds).
129 'target_arch%': '<(host_arch)',
133 # Copy conditionally-set variables out one scope.
134 'chromeos%': '<(chromeos)',
135 'chromecast%': '<(chromecast)',
136 'desktop_linux%': '<(desktop_linux)',
137 'use_aura%': '<(use_aura)',
138 'use_ash%': '<(use_ash)',
139 'use_cras%': '<(use_cras)',
140 'use_ozone%': '<(use_ozone)',
141 'embedded%': '<(embedded)',
142 'use_libpci%': '<(use_libpci)',
143 'use_openssl%': '<(use_openssl)',
144 'use_openssl_certs%': '<(use_openssl_certs)',
145 'enable_viewport%': '<(enable_viewport)',
146 'enable_hidpi%': '<(enable_hidpi)',
147 'buildtype%': '<(buildtype)',
148 'branding%': '<(branding)',
149 'host_arch%': '<(host_arch)',
150 'target_arch%': '<(target_arch)',
152 'target_subarch%': '',
154 # The channel to build on Android: stable, beta, dev, canary, or
155 # default. "default" should be used on non-official builds.
156 'android_channel%': 'default',
158 # This is set when building the Android WebView inside the Android
159 # build system, using the 'android' gyp backend. The WebView code is
160 # still built when this is unset, but builds using the normal chromium
162 'android_webview_build%': 0,
164 # Set ARM architecture version.
167 # Use aurax11 for clipboard implementation. This is true on linux_aura.
168 'use_clipboard_aurax11%': 0,
172 # If no gomadir is set, it uses the default gomadir.
176 # The system root for cross-compiles. Default: none.
180 # The system libdir used for this ABI.
181 'system_libdir%': 'lib',
183 # Default MIPS arch variant. This is set in the conditions block
184 # below for MIPS targets.
185 'mips_arch_variant%': '',
187 # MIPS DSP ASE revision. Possible values are:
199 # Set default value of toolkit_views based on OS.
200 ['OS=="mac" or OS=="win" or chromeos==1 or use_aura==1', {
206 # Embedded builds use aura without ash or views.
213 # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux.
214 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', {
218 # Enable the OpenSSL backend on Mac OS and Windows.
219 ['OS=="mac" or OS=="win"', {
223 # Enable App Launcher everywhere but mobile.
224 ['OS!="ios" and OS!="android"', {
225 'enable_app_list%': 1,
227 'enable_app_list%': 0,
230 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="android")', {
231 'use_default_render_theme%': 1,
233 'use_default_render_theme%': 0,
237 'use_ozone_evdev%': 1,
239 'use_ozone_evdev%': 0,
242 # Set default gomadir.
244 'gomadir': 'c:\\goma\\goma-win',
246 'gomadir': '<!(/bin/echo -n ${HOME}/goma)',
249 # Set the default "target_subarch" on iOS. Valid values are "arm32",
250 # "arm64" and "both" (meaning a fat binary).
252 # TODO(sdefresne): change the default from "arm32" to "both" for
253 # "target_subarch" once http://crbug.com/339477 is fixed.
255 # TODO(sdefresne): set the "target_arch" to "arm" once compilation
256 # of skia has been fixed for simulator. http://crbug.com/342377
258 'target_subarch%': 'arm32',
261 # Set arch variants for MIPS platforms.
262 ['target_arch=="mips64el"', {
265 'mips_arch_variant%': 'r6',
267 'mips_arch_variant%': 'r2',
272 ['target_arch=="mipsel"', {
273 'mips_arch_variant%': 'r1',
278 # Copy conditionally-set variables out one scope.
279 'chromeos%': '<(chromeos)',
280 'chromecast%': '<(chromecast)',
281 'host_arch%': '<(host_arch)',
282 'target_arch%': '<(target_arch)',
283 'target_subarch%': '<(target_subarch)',
284 'mips_arch_variant%': '<(mips_arch_variant)',
285 'mips_dsp_rev%': '<(mips_dsp_rev)',
286 'toolkit_views%': '<(toolkit_views)',
287 'desktop_linux%': '<(desktop_linux)',
288 'use_aura%': '<(use_aura)',
289 'use_ash%': '<(use_ash)',
290 'use_cras%': '<(use_cras)',
291 'use_libpci%': '<(use_libpci)',
292 'use_ozone%': '<(use_ozone)',
293 'use_ozone_evdev%': '<(use_ozone_evdev)',
294 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
295 'embedded%': '<(embedded)',
296 'use_openssl%': '<(use_openssl)',
297 'use_openssl_certs%': '<(use_openssl_certs)',
298 'enable_viewport%': '<(enable_viewport)',
299 'enable_hidpi%': '<(enable_hidpi)',
300 'android_channel%': '<(android_channel)',
301 'android_webview_build%': '<(android_webview_build)',
302 'use_goma%': '<(use_goma)',
303 'gomadir%': '<(gomadir)',
304 'enable_app_list%': '<(enable_app_list)',
305 'use_default_render_theme%': '<(use_default_render_theme)',
306 'buildtype%': '<(buildtype)',
307 'branding%': '<(branding)',
308 'arm_version%': '<(arm_version)',
309 'sysroot%': '<(sysroot)',
310 'chroot_cmd%': '<(chroot_cmd)',
311 'system_libdir%': '<(system_libdir)',
313 # Set to 1 to enable fast builds. Set to 2 for even faster builds
314 # (it disables debug info for fastest compilation - only for use
315 # on compile-only bots).
318 # Set to 1 to not store any build metadata, e.g. ifdef out all __DATE__
319 # and __TIME__. Set to 0 to reenable the use of these macros in the code
320 # base. See http://crbug.com/314403.
321 'dont_embed_build_metadata%': 1,
323 # Set to 1 to force Visual C++ to use legacy debug information format /Z7.
324 # This is useful for parallel compilation tools which can't support /Zi.
325 # Only used on Windows.
328 # Set to 1 to enable dcheck in Release build.
329 'dcheck_always_on%': 0,
331 # Set to 1 to make a build that disables unshipped tracing events.
332 # Note: this setting is ignored if buildtype=="Official".
333 'tracing_like_official_build%': 0,
335 # Disable image loader component extension by default.
336 'image_loader_extension%': 0,
338 # Set NEON compilation flags.
341 # Detect NEON support at run-time.
342 'arm_neon_optional%': 0,
344 # Use libjpeg-turbo as the JPEG codec used by Chromium.
345 'use_libjpeg_turbo%': 1,
347 # Use system libjpeg. Note that the system's libjepg will be used even if
348 # use_libjpeg_turbo is set.
349 'use_system_libjpeg%': 0,
351 # By default, component is set to static_library and it can be overriden
352 # by the GYP command line or by ~/.gyp/include.gypi.
353 'component%': 'static_library',
355 # /analyze is off by default on Windows because it is very slow and noisy.
356 # Enable with GYP_DEFINES=win_analyze=1
359 # Set to select the Title Case versions of strings in GRD files.
360 'use_titlecase_in_grd%': 0,
362 # Use translations provided by volunteers at launchpad.net. This
363 # currently only works on Linux.
364 'use_third_party_translations%': 0,
366 # Remoting compilation is enabled by default. Set to 0 to disable.
369 # Configuration policy is enabled by default. Set to 0 to disable.
370 'configuration_policy%': 1,
372 # Variable safe_browsing is used to control the build time configuration
373 # for safe browsing feature. Safe browsing can be compiled in 3 different
374 # levels: 0 disables it, 1 enables it fully, and 2 enables only UI and
375 # reporting features without enabling phishing and malware detection. This
376 # is useful to integrate a third party phishing/malware detection to
377 # existing safe browsing logic.
380 # Web speech is enabled by default. Set to 0 to disable.
381 'enable_web_speech%': 1,
383 # Notifications are compiled in by default. Set to 0 to disable.
384 'notifications%' : 1,
386 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for
387 # regular builds and 1 for ASan builds.
388 'mac_want_real_dsym%': 'default',
390 # If this is set, the clang plugins used on the buildbot will be used.
391 # Run tools/clang/scripts/update.sh to make sure they are compiled.
392 # This causes 'clang_chrome_plugins_flags' to be set.
393 # Has no effect if 'clang' is not set as well.
394 'clang_use_chrome_plugins%': 1,
396 # Enable building with ASAN (Clang's -fsanitize=address option).
397 # -fsanitize=address only works with clang, but asan=1 implies clang=1
398 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addresssanitizer
400 'asan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/asan/blacklist.txt',
401 # Enable coverage gathering instrumentation in sanitizer tools. This flag
402 # also controls coverage granularity (1 for function-level coverage, 2
403 # for block-level coverage).
404 'sanitizer_coverage%': 0,
405 # Deprecated, only works if |sanitizer_coverage| isn't set.
406 # TODO(glider): remove this flag.
408 # Enable intra-object-overflow detection in ASan (experimental).
409 'asan_field_padding%': 0,
411 # Enable Chromium overrides of the default configurations for various
412 # dynamic tools (like ASan).
413 'use_sanitizer_options%': 0,
415 # Enable building with SyzyAsan.
416 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo
419 # Enable crash reporting via Kasko.
422 # Enable building with LSan (Clang's -fsanitize=leak option).
423 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1
424 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaksanitizer
427 # Enable building with TSan (Clang's -fsanitize=thread option).
428 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1
429 # See http://clang.llvm.org/docs/ThreadSanitizer.html
431 'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/tsan_v2/ignores.txt',
433 # Enable building with MSan (Clang's -fsanitize=memory option).
434 # MemorySanitizer only works with clang, but msan=1 implies clang=1
435 # See http://clang.llvm.org/docs/MemorySanitizer.html
437 'msan_blacklist%': '<(PRODUCT_DIR)/../../tools/msan/blacklist.txt',
438 # Track where uninitialized memory originates from. From fastest to
439 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2
440 # - track the chain of stores leading from allocation site to use site.
441 'msan_track_origins%': 2,
443 # Enable building with UBSan (Clang's -fsanitize=undefined option).
444 # -fsanitize=undefined only works with clang, but ubsan=1 implies clang=1
445 # See http://clang.llvm.org/docs/UsersManual.html
447 'ubsan_blacklist%': '<(PRODUCT_DIR)/../../tools/ubsan/blacklist.txt',
449 # Enable building with UBsan's vptr (Clang's -fsanitize=vptr option).
450 # -fsanitize=vptr only works with clang, but ubsan_vptr=1 implies clang=1
453 # Use dynamic libraries instrumented by one of the sanitizers
454 # instead of the standard system libraries. Set this flag to build the
455 # libraries from source.
456 'use_instrumented_libraries%': 0,
458 # Use dynamic libraries instrumented by one of the sanitizers
459 # instead of the standard system libraries. Set this flag to download
460 # prebuilt binaries from GCS.
461 'use_prebuilt_instrumented_libraries%': 0,
463 # Use libc++ (third_party/libc++ and third_party/libc++abi) instead of
464 # stdlibc++ as standard library. This is intended to use for instrumented
466 'use_custom_libcxx%': 0,
468 # Use system libc++ instead of the default C++ library, usually libstdc++.
469 # This is intended for iOS builds only.
470 'use_system_libcxx%': 0,
472 # Use a modified version of Clang to intercept allocated types and sizes
473 # for allocated objects. clang_type_profiler=1 implies clang=1.
474 # See http://dev.chromium.org/developers/deep-memory-profiler/cpp-object-type-identifier
475 # TODO(dmikurube): Support mac. See http://crbug.com/123758#c11
476 'clang_type_profiler%': 0,
478 # Set to true to instrument the code with function call logger.
479 # See src/third_party/cygprofile/cyg-profile.cc for details.
480 'order_profiling%': 0,
482 # Use the provided profiled order file to link Chrome image with it.
483 # This makes Chrome faster by better using CPU cache when executing code.
484 # This is known as PGO (profile guided optimization).
485 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-effort
486 'order_text_section%' : "",
488 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
489 # libraries on linux x86-64 and arm, plus ASLR.
492 # Whether one-click signin is enabled or not.
493 'enable_one_click_signin%': 0,
495 # Whether to back up data before sync.
496 'enable_pre_sync_backup%': 0,
498 # Enable Chrome browser extensions
499 'enable_extensions%': 1,
502 'enable_google_now%': 1,
504 # Enable basic printing support and UI.
505 'enable_basic_printing%': 1,
507 # Enable printing with print preview. It does not imply
508 # enable_basic_printing. It's possible to build Chrome with preview only.
509 'enable_print_preview%': 1,
511 # Set the version of CLD.
512 # 0: Don't specify the version. This option is for the Finch testing.
517 # For CLD2, the size of the tables that should be included in the build
518 # Only evaluated if cld_version == 2 or if building the CLD2 dynamic data
520 # See third_party/cld_2/cld_2.gyp for more information.
521 # 0: Small tables, lower accuracy
522 # 2: Large tables, high accuracy
523 'cld2_table_size%': 2,
525 # Enable spell checker.
526 'enable_spellcheck%': 1,
528 # Webrtc compilation is enabled by default. Set to 0 to disable.
531 # Media router support is enabled by default. Set to 0 to disable.
532 'enable_media_router%': 1,
534 # Enables use of the session service, which is enabled by default.
535 # Support for disabling depends on the platform.
536 'enable_session_service%': 1,
538 # Enables theme support, which is enabled by default. Support for
539 # disabling depends on the platform.
542 # Enables autofill dialog and associated features; disabled by default.
543 'enable_autofill_dialog%' : 0,
545 # Defaults Wallet integration in Autofill dialog to use production
546 # servers. Unofficial builds won't have the proper API keys.
547 'enable_prod_wallet_service%': 0,
549 # Enables support for background apps.
550 'enable_background%': 1,
552 # Enable the task manager by default.
553 'enable_task_manager%': 1,
555 # Enables used resource whitelist generation; disabled by default.
556 'enable_resource_whitelist_generation%': 0,
558 # Enable FILE support by default.
559 'disable_file_support%': 0,
561 # Enable FTP support by default.
562 'disable_ftp_support%': 0,
564 # Use native android functions in place of ICU. Not supported by most
566 'use_icu_alternatives_on_android%': 0,
568 # Use of precompiled headers on Windows.
570 # This variable may be explicitly set to 1 (enabled) or 0
571 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
572 # This setting will override the default.
575 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders
577 'chromium_win_pch%': 0,
580 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts',
581 # Set this to true when building with Clang.
582 # See http://code.google.com/p/chromium/wiki/Clang for details.
583 # If this is set, clang is used as both host and target compiler in
584 # cross-compile builds.
587 # Use experimental lld linker instead of the platform's default linker.
590 # Enable plugin installation by default.
591 'enable_plugin_installation%': 1,
593 # Specifies whether to use canvas_skia.cc in place of platform
594 # specific implementations of gfx::Canvas. Affects text drawing in the
596 # TODO(asvitkine): Enable this on all platforms and delete this flag.
597 # http://crbug.com/105550
598 'use_canvas_skia%': 0,
600 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work
601 # with one of those tools.
602 'build_for_tool%': '',
604 # If no directory is specified then a temporary directory will be used.
605 'test_isolation_outdir%': '',
607 'wix_path%': '<(DEPTH)/third_party/wix',
609 # Supervised users are enabled by default.
610 'enable_supervised_users%': 1,
612 # Platform sends memory pressure signals natively.
613 'native_memory_pressure_signals%': 0,
615 'spdy_proxy_auth_property%' : '',
616 'spdy_proxy_auth_value%' : '',
618 'enable_service_discovery%': 0,
619 'enable_wifi_bootstrapping%': 0,
620 'enable_hangout_services_extension%': 0,
622 # Enable the Syzygy optimization step.
623 'syzygy_optimize%': 0,
625 # Enable hole punching for the protected video.
628 # Automatically select platforms under ozone. Turn this off to
629 # build only explicitly selected platforms.
630 'ozone_auto_platforms%': 1,
632 # If this is set clang is used as host compiler, but not as target
633 # compiler. Always do this by default.
636 # Variables to control Link-Time Optimizations (LTO).
637 # Note: the variables must *not* be enabled at the same time.
638 # In this case LTO would 'merge' the optimization flags
639 # at link-time which would lead to all code be optimized with -O2.
640 # Enable LTO on the code compiled with -Os.
641 # See crbug.com/407544
643 # Enable LTO on code compiled with -O2.
646 # Allowed level of identical code folding in the gold linker.
647 'gold_icf_level%': 'safe',
649 # Libxkbcommon usage.
652 # Control Flow Integrity for virtual calls.
653 # See http://clang.llvm.org/docs/ControlFlowIntegrity.html
656 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa.
657 'mac_views_browser%': 0,
660 # A flag for POSIX platforms
667 # A flag for BSD platforms
668 ['OS=="freebsd" or OS=="openbsd"', {
675 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==0', {
681 # When OpenSSL is used for SSL and crypto on Unix-like systems, use
682 # OpenSSL's certificate definition.
683 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==1', {
684 'use_openssl_certs%': 1,
686 'use_openssl_certs%': 0,
689 # libudev usage. This currently only affects the content layer.
690 ['OS=="linux" and embedded==0', {
696 # Flags to use X11 on non-Mac POSIX platforms.
697 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
704 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
710 # Flags to use pango and cairo.
711 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', {
720 ['OS=="linux" and embedded==0', {
726 # We always use skia text rendering in Aura on Windows, since GDI
727 # doesn't agree with our BackingStore.
728 # TODO(beng): remove once skia text rendering is on by default.
729 ['use_aura==1 and OS=="win"', {
730 'enable_skia_text%': 1,
733 # A flag to enable or disable our compile-time dependency
734 # on gnome-keyring. If that dependency is disabled, no gnome-keyring
735 # support will be available. This option is useful
736 # for Linux distributions and for Aura.
737 ['OS!="linux" or chromeos==1', {
738 'use_gnome_keyring%': 0,
740 'use_gnome_keyring%': 1,
743 ['OS=="mac" or OS=="ios"', {
744 # Mac and iOS want Title Case strings
745 'use_titlecase_in_grd%': 1,
748 # Enable loader extensions on Chrome OS.
750 'image_loader_extension%': 1,
752 'image_loader_extension%': 0,
755 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
756 'enable_one_click_signin%': 1,
757 'enable_pre_sync_backup%': 1,
761 'enable_extensions%': 0,
762 'enable_google_now%': 0,
764 'enable_spellcheck%': 0,
768 'arm_neon_optional%': 1,
769 'native_memory_pressure_signals%': 1,
770 'enable_basic_printing%': 1,
771 'enable_print_preview%': 0,
772 'enable_task_manager%':0,
776 # Android OS includes support for proprietary codecs regardless of
777 # building Chromium or Google Chrome. We also ship Google Chrome and
778 # Chromecast with proprietary codecs.
779 ['OS=="android" or branding=="Chrome" or chromecast==1', {
780 'proprietary_codecs%': 1,
782 'proprietary_codecs%': 0,
785 ['OS=="mac" or OS=="ios"', {
786 'native_memory_pressure_signals%': 1,
789 # Enable autofill dialog for Android, Mac and Views-enabled platforms.
790 ['toolkit_views==1 or (OS=="android" and android_webview_build==0) or OS=="mac"', {
791 'enable_autofill_dialog%': 1,
794 ['buildtype=="Official"', {
795 'enable_prod_wallet_service%': 1,
805 'disable_ftp_support%': 1,
806 'enable_extensions%': 0,
807 'enable_google_now%': 0,
809 'cld2_table_size%': 0,
810 'enable_basic_printing%': 0,
811 'enable_print_preview%': 0,
812 'enable_session_service%': 0,
813 'enable_spellcheck%': 0,
819 'enable_supervised_users%': 0,
820 'enable_task_manager%': 0,
821 'use_system_libcxx%': 1,
824 # Use GPU accelerated cross process image transport by default
825 # on linux builds with the Aura window manager
826 ['use_aura==1 and OS=="linux"', {
827 'ui_compositor_image_transport%': 1,
829 'ui_compositor_image_transport%': 0,
832 # Turn precompiled headers on by default.
833 ['OS=="win" and buildtype!="Official"', {
834 'chromium_win_pch%': 1
837 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', {
838 'enable_plugin_installation%': 0,
840 'enable_plugin_installation%': 1,
843 # Whether PPAPI is enabled.
844 ['OS=="android" or OS=="ios" or embedded==1', {
845 'enable_plugins%': 0,
847 'enable_plugins%': 1,
850 # linux_use_bundled_gold: whether to use the gold linker binary checked
851 # into third_party/binutils. Force this off via GYP_DEFINES when you
852 # are using a custom toolchain and need to control -B in ldflags.
853 # Do not use 32-bit gold on 32-bit hosts as it runs out address space
854 # for component=static_library builds.
855 ['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', {
856 'linux_use_bundled_gold%': 1,
858 'linux_use_bundled_gold%': 0,
861 # linux_use_bundled_binutils: whether to use the binary binutils
862 # checked into third_party/binutils. These are not multi-arch so cannot
863 # be used except on x86 and x86-64 (the only two architectures which
864 # are currently checke in). Force this off via GYP_DEFINES when you
865 # are using a custom toolchain and need to control -B in cflags.
866 ['OS=="linux" and (target_arch=="x64")', {
867 'linux_use_bundled_binutils%': 1,
869 'linux_use_bundled_binutils%': 0,
872 # linux_use_gold_flags: whether to use build flags that rely on gold.
873 # On by default for x64 Linux.
874 ['OS=="linux" and target_arch=="x64"', {
875 'linux_use_gold_flags%': 1,
877 'linux_use_gold_flags%': 0,
880 # linux_use_debug_fission: whether to use split DWARF debug info
881 # files. This can reduce link time significantly, but is incompatible
882 # with some utilities such as icecc and ccache. Requires gold and
883 # gcc >= 4.8 or clang.
884 # http://gcc.gnu.org/wiki/DebugFission
885 ['OS=="linux" and target_arch=="x64"', {
886 'linux_use_debug_fission%': 1,
888 'linux_use_debug_fission%': 0,
891 ['OS=="android" or OS=="ios"', {
892 'enable_captive_portal_detection%': 0,
893 'enable_media_router%': 0,
895 'enable_captive_portal_detection%': 1,
896 'enable_media_router%': 1,
899 # Enable Skia UI text drawing incrementally on different platforms.
900 # http://crbug.com/105550
902 # On Aura, this allows per-tile painting to be used in the browser
905 'use_canvas_skia%': 1,
909 'enable_basic_printing%': 0,
910 'enable_print_preview%': 1,
911 # When building for ChromeOS we dont want Chromium to use libjpeg_turbo.
912 'use_libjpeg_turbo%': 0,
915 # Do not enable the Settings App on ChromeOS.
916 ['enable_app_list==1 and chromeos==0', {
917 'enable_settings_app%': 1,
919 'enable_settings_app%': 0,
922 ['OS=="linux" and target_arch=="arm" and chromeos==0', {
923 # Set some defaults for arm/linux chrome builds
924 'use_allocator%': 'none',
925 # sysroot needs to be an absolute path otherwise it generates
926 # incorrect results when passed to pkg-config
927 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_arm-sysroot',
928 }], # OS=="linux" and target_arch=="arm" and chromeos==0
930 ['OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0', {
932 ['target_arch=="x64"', {
933 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_amd64-sysroot',
935 ['target_arch=="ia32"', {
936 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_i386-sysroot',
939 }], # OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0
941 ['OS=="linux" and target_arch=="mipsel"', {
942 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot',
943 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu-gcc',
946 # Whether tests targets should be run, archived or just have the
947 # dependencies verified. All the tests targets have the '_run' suffix,
948 # e.g. base_unittests_run runs the target base_unittests. The test
949 # target always calls tools/swarming_client/isolate.py. See the script's
950 # --help for more information. Meant to be overriden with GYP_DEFINES.
951 # TODO(maruel): Remove the conditions as more configurations are
953 ['OS!="ios" and OS!="android" and chromeos==0', {
954 'test_isolation_mode%': 'check',
956 'test_isolation_mode%': 'noop',
958 # Whether Android build uses OpenMAX DL FFT.
959 ['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")', {
960 # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mipsel.
961 # When enabled, this will also enable WebAudio support on
962 # Android for these architectures. Default is enabled. Whether
963 # WebAudio is actually available depends on runtime settings
965 'use_openmax_dl_fft%': 1,
967 'use_openmax_dl_fft%': 0,
969 ['OS=="win" or OS=="linux"', {
973 # Turns on compiler optimizations in V8 in Debug build, except
974 # on android_clang, where we're hitting a weird linker error.
975 # TODO(dpranke): http://crbug.com/266155 .
977 'v8_optimized_debug%': 1,
979 'v8_optimized_debug%': 2,
982 # Disable various features by default on embedded.
985 'enable_basic_printing%': 0,
986 'enable_print_preview%': 0,
989 # By default, use ICU data file (icudtl.dat) on all platforms
990 # except when building Android WebView.
991 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium).
992 # Set the data reduction proxy origin for Android Webview.
993 ['android_webview_build==0', {
994 'icu_use_data_file_flag%' : 1,
996 'icu_use_data_file_flag%' : 0,
998 ['OS=="win" or OS=="mac"', {
999 'enable_wifi_bootstrapping%' : 1,
1002 # Path to sas.dll, which provides the SendSAS function.
1003 # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs.85).aspx
1004 ['target_arch=="x64"', {
1005 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/amd64',
1007 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
1010 # Turn on JNI generation optimizations on non-WebView builds.
1011 ['OS=="android" and android_webview_build==0', {
1012 'optimize_jni_generation%': 1,
1014 'optimize_jni_generation%': 0,
1017 # TODO(rmcilroy): Enable v8_use_external_startup_data on ChromeOS
1018 # http://crbug.com/421063
1019 ['android_webview_build==0 and chromecast==0 and chromeos==0 and OS!="ios"', {
1020 'v8_use_external_startup_data%': 1,
1022 'v8_use_external_startup_data%': 0,
1026 # Set this to 1 to enable use of concatenated impulse responses
1027 # for the HRTF panner in WebAudio.
1028 'use_concatenated_impulse_responses': 1,
1030 # You can set the variable 'use_official_google_api_keys' to 1
1031 # to use the Google-internal file containing official API keys
1032 # for Google Chrome even in a developer build. Setting this
1033 # variable explicitly to 1 will cause your build to fail if the
1034 # internal file is missing.
1036 # The variable is documented here, but not handled in this file;
1037 # see //google_apis/determine_use_official_keys.gypi for the
1040 # Set the variable to 0 to not use the internal file, even when
1041 # it exists in your checkout.
1043 # Leave it unset in your include.gypi to have the variable
1044 # implicitly set to 1 if you have
1045 # src/google_apis/internal/google_chrome_api_keys.h in your
1046 # checkout, and implicitly set to 0 if not.
1048 # Note that official builds always behave as if the variable
1049 # was explicitly set to 1, i.e. they always use official keys,
1050 # and will fail to build if the internal file is missing.
1052 # NOTE: You MUST NOT explicitly set the variable to 2 in your
1053 # include.gypi or by other means. Due to subtleties of GYP, this
1054 # is not the same as leaving the variable unset, even though its
1056 # //google_apis/determine_use_official_keys.gypi is 2.
1058 # Set these to bake the specified API keys and OAuth client
1059 # IDs/secrets into your build.
1061 # If you create a build without values baked in, you can instead
1062 # set environment variables to provide the keys at runtime (see
1063 # src/google_apis/google_api_keys.h for details). Features that
1064 # require server-side APIs may fail to work if no keys are
1067 # Note that if you are building an official build or if
1068 # use_official_google_api_keys has been set to 1 (explicitly or
1069 # implicitly), these values will be ignored and the official
1070 # keys will be used instead.
1071 'google_api_key%': '',
1072 'google_default_client_id%': '',
1073 'google_default_client_secret%': '',
1074 # Native Client is enabled by default.
1075 'disable_nacl%': '0',
1078 # Copy conditionally-set variables out one scope.
1079 'branding%': '<(branding)',
1080 'buildtype%': '<(buildtype)',
1081 'target_arch%': '<(target_arch)',
1082 'target_subarch%': '<(target_subarch)',
1083 'mips_arch_variant%': '<(mips_arch_variant)',
1084 'mips_dsp_rev%': '<(mips_dsp_rev)',
1085 'host_arch%': '<(host_arch)',
1086 'toolkit_views%': '<(toolkit_views)',
1087 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
1088 'use_aura%': '<(use_aura)',
1089 'use_ash%': '<(use_ash)',
1090 'use_cras%': '<(use_cras)',
1091 'use_libpci%': '<(use_libpci)',
1092 'use_openssl%': '<(use_openssl)',
1093 'use_openssl_certs%': '<(use_openssl_certs)',
1094 'use_nss%': '<(use_nss)',
1095 'use_udev%': '<(use_udev)',
1096 'os_bsd%': '<(os_bsd)',
1097 'os_posix%': '<(os_posix)',
1098 'use_dbus%': '<(use_dbus)',
1099 'use_glib%': '<(use_glib)',
1100 'use_pango%': '<(use_pango)',
1101 'use_cairo%': '<(use_cairo)',
1102 'use_ozone%': '<(use_ozone)',
1103 'use_ozone_evdev%': '<(use_ozone_evdev)',
1104 'use_xkbcommon%': '<(use_xkbcommon)',
1105 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
1106 'desktop_linux%': '<(desktop_linux)',
1107 'use_x11%': '<(use_x11)',
1108 'use_gnome_keyring%': '<(use_gnome_keyring)',
1109 'linux_fpic%': '<(linux_fpic)',
1110 'chromeos%': '<(chromeos)',
1111 'chromecast%': '<(chromecast)',
1112 'enable_viewport%': '<(enable_viewport)',
1113 'enable_hidpi%': '<(enable_hidpi)',
1114 'image_loader_extension%': '<(image_loader_extension)',
1115 'fastbuild%': '<(fastbuild)',
1116 'dont_embed_build_metadata%': '<(dont_embed_build_metadata)',
1117 'win_z7%': '<(win_z7)',
1118 'dcheck_always_on%': '<(dcheck_always_on)',
1119 'tracing_like_official_build%': '<(tracing_like_official_build)',
1120 'arm_version%': '<(arm_version)',
1121 'arm_neon%': '<(arm_neon)',
1122 'arm_neon_optional%': '<(arm_neon_optional)',
1123 'sysroot%': '<(sysroot)',
1124 'chroot_cmd%': '<(chroot_cmd)',
1125 'system_libdir%': '<(system_libdir)',
1126 'component%': '<(component)',
1127 'win_analyze%': '<(win_analyze)',
1128 'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_generation)',
1129 'use_titlecase_in_grd%': '<(use_titlecase_in_grd)',
1130 'use_third_party_translations%': '<(use_third_party_translations)',
1131 'remoting%': '<(remoting)',
1132 'enable_one_click_signin%': '<(enable_one_click_signin)',
1133 'enable_pre_sync_backup%': '<(enable_pre_sync_backup)',
1134 'enable_media_router%': '<(enable_media_router)',
1135 'enable_webrtc%': '<(enable_webrtc)',
1136 'chromium_win_pch%': '<(chromium_win_pch)',
1137 'configuration_policy%': '<(configuration_policy)',
1138 'safe_browsing%': '<(safe_browsing)',
1139 'enable_web_speech%': '<(enable_web_speech)',
1140 'notifications%': '<(notifications)',
1141 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
1142 'mac_want_real_dsym%': '<(mac_want_real_dsym)',
1144 'asan_blacklist%': '<(asan_blacklist)',
1145 'asan_coverage%': '<(asan_coverage)',
1146 'sanitizer_coverage%': '<(sanitizer_coverage)',
1147 'asan_field_padding%': '<(asan_field_padding)',
1148 'use_sanitizer_options%': '<(use_sanitizer_options)',
1149 'syzyasan%': '<(syzyasan)',
1150 'kasko%': '<(kasko)',
1151 'syzygy_optimize%': '<(syzygy_optimize)',
1154 'msan_blacklist%': '<(msan_blacklist)',
1155 'msan_track_origins%': '<(msan_track_origins)',
1157 'tsan_blacklist%': '<(tsan_blacklist)',
1158 'ubsan%': '<(ubsan)',
1159 'ubsan_blacklist%': '<(ubsan_blacklist)',
1160 'ubsan_vptr%': '<(ubsan_vptr)',
1161 'use_instrumented_libraries%': '<(use_instrumented_libraries)',
1162 'use_prebuilt_instrumented_libraries%': '<(use_prebuilt_instrumented_libraries)',
1163 'use_custom_libcxx%': '<(use_custom_libcxx)',
1164 'use_system_libcxx%': '<(use_system_libcxx)',
1165 'clang_type_profiler%': '<(clang_type_profiler)',
1166 'order_profiling%': '<(order_profiling)',
1167 'order_text_section%': '<(order_text_section)',
1168 'enable_extensions%': '<(enable_extensions)',
1169 'enable_plugin_installation%': '<(enable_plugin_installation)',
1170 'enable_plugins%': '<(enable_plugins)',
1171 'enable_session_service%': '<(enable_session_service)',
1172 'enable_themes%': '<(enable_themes)',
1173 'enable_autofill_dialog%': '<(enable_autofill_dialog)',
1174 'enable_prod_wallet_service%': '<(enable_prod_wallet_service)',
1175 'enable_background%': '<(enable_background)',
1176 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
1177 'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
1178 'linux_use_gold_flags%': '<(linux_use_gold_flags)',
1179 'linux_use_debug_fission%': '<(linux_use_debug_fission)',
1180 'use_canvas_skia%': '<(use_canvas_skia)',
1181 'test_isolation_mode%': '<(test_isolation_mode)',
1182 'test_isolation_outdir%': '<(test_isolation_outdir)',
1183 'enable_basic_printing%': '<(enable_basic_printing)',
1184 'enable_print_preview%': '<(enable_print_preview)',
1185 'enable_spellcheck%': '<(enable_spellcheck)',
1186 'enable_google_now%': '<(enable_google_now)',
1187 'cld_version%': '<(cld_version)',
1188 'cld2_table_size%': '<(cld2_table_size)',
1189 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1190 'disable_file_support%': '<(disable_file_support)',
1191 'disable_ftp_support%': '<(disable_ftp_support)',
1192 'use_icu_alternatives_on_android%': '<(use_icu_alternatives_on_android)',
1193 'enable_task_manager%': '<(enable_task_manager)',
1194 'sas_dll_path%': '<(sas_dll_path)',
1195 'wix_path%': '<(wix_path)',
1196 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1197 'use_system_libjpeg%': '<(use_system_libjpeg)',
1198 'android_channel%': '<(android_channel)',
1199 'android_webview_build%': '<(android_webview_build)',
1200 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1201 'gyp_managed_install%': 0,
1202 'create_standalone_apk%': 1,
1203 'enable_app_list%': '<(enable_app_list)',
1204 'use_default_render_theme%': '<(use_default_render_theme)',
1205 'enable_settings_app%': '<(enable_settings_app)',
1206 'google_api_key%': '<(google_api_key)',
1207 'google_default_client_id%': '<(google_default_client_id)',
1208 'google_default_client_secret%': '<(google_default_client_secret)',
1209 'enable_supervised_users%': '<(enable_supervised_users)',
1210 'native_memory_pressure_signals%': '<(native_memory_pressure_signals)',
1211 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
1212 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
1213 'enable_mdns%' : '<(enable_mdns)',
1214 'enable_service_discovery%' : '<(enable_service_discovery)',
1215 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)',
1216 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)',
1217 'v8_optimized_debug%': '<(v8_optimized_debug)',
1218 'proprietary_codecs%': '<(proprietary_codecs)',
1219 'use_goma%': '<(use_goma)',
1220 'gomadir%': '<(gomadir)',
1221 'use_lto%': '<(use_lto)',
1222 'use_lto_o2%': '<(use_lto_o2)',
1223 'gold_icf_level%': '<(gold_icf_level)',
1224 'video_hole%': '<(video_hole)',
1225 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)',
1226 'cfi_vptr%': '<(cfi_vptr)',
1227 'mac_views_browser%': '<(mac_views_browser)',
1229 # Use system protobuf instead of bundled one.
1230 'use_system_protobuf%': 0,
1232 # Use system yasm instead of bundled one.
1233 'use_system_yasm%': 0,
1235 # Use system ICU instead of bundled one.
1236 'use_system_icu%' : 0,
1238 # Default to enabled PIE; this is important for ASLR but we may need to be
1239 # able to turn it off for various reasons.
1240 'linux_disable_pie%': 0,
1242 # The release channel that this build targets. This is used to restrict
1243 # channel-specific build options, like which installer packages to create.
1244 # The default is 'all', which does no channel-specific filtering.
1247 # Override chromium_mac_pch and set it to 0 to suppress the use of
1248 # precompiled headers on the Mac. Prefix header injection may still be
1249 # used, but prefix headers will not be precompiled. This is useful when
1250 # using distcc to distribute a build to compile slaves that don't
1251 # share the same compiler executable as the system driving the compilation,
1252 # because precompiled headers rely on pointers into a specific compiler
1253 # executable's image. Setting this to 0 is needed to use an experimental
1254 # Linux-Mac cross compiler distcc farm.
1255 'chromium_mac_pch%': 1,
1257 # The default value for mac_strip in target_defaults. This cannot be
1258 # set there, per the comment about variable% in a target_defaults.
1259 'mac_strip_release%': 0,
1261 # Set to 1 to enable java code coverage. Instruments classes during build
1262 # to produce .ec files during runtime.
1263 'emma_coverage%': 0,
1265 # EMMA filter string consisting of a list of inclusion/exclusion patterns
1266 # separated with whitespace and/or comma. Only has effect if
1267 # 'emma_coverage=1'.
1270 # Set to 1 to enable running Android lint on java/class files.
1273 # Although base/allocator lets you select a heap library via an
1274 # environment variable, the libcmt shim it uses sometimes gets in
1275 # the way. To disable it entirely, and switch to normal msvcrt, do e.g.
1276 # 'win_use_allocator_shim': 0,
1277 # 'win_release_RuntimeLibrary': 2
1278 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build.
1279 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt
1281 # TODO(bradnelson): eliminate this when possible.
1282 # To allow local gyp files to prevent release.vsprops from being included.
1283 # Yes(1) means include release.vsprops.
1284 # Once all vsprops settings are migrated into gyp, this can go away.
1285 'msvs_use_common_release%': 1,
1287 # TODO(bradnelson): eliminate this when possible.
1288 # To allow local gyp files to override additional linker options for msvs.
1289 # Yes(1) means set use the common linker options.
1290 'msvs_use_common_linker_extras%': 1,
1292 # TODO(sgk): eliminate this if possible.
1293 # It would be nicer to support this via a setting in 'target_defaults'
1294 # in chrome/app/locales/locales.gypi overriding the setting in the
1295 # 'Debug' configuration in the 'target_defaults' dict below,
1296 # but that doesn't work as we'd like.
1297 'msvs_debug_link_incremental%': '2',
1299 # Needed for some of the largest modules.
1300 'msvs_debug_link_nonincremental%': '1',
1302 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows
1303 # to get incremental linking to be faster in debug builds.
1304 'incremental_chrome_dll%': '0',
1306 # Experimental setting to break chrome.dll into multiple pieces based on
1308 'chrome_multiple_dll%': '0',
1310 # Experimental setting to optimize Chrome's DLLs with PGO.
1311 'chrome_pgo_phase%': '0',
1313 # Whether the VS xtree header has been patched to disable warning 4702. If
1314 # it has, then we don't need to disable 4702 (unreachable code warning).
1315 # The patch is preapplied to the internal toolchain and hence all bots.
1316 'msvs_xtree_patched%': '<!pymod_do_main(win_is_xtree_patched)',
1319 'clang%': '<(clang)',
1320 'host_clang%': '<(host_clang)',
1321 'make_clang_dir%': '<(make_clang_dir)',
1322 'use_lld%': '<(use_lld)',
1324 # Control which version of clang to use when building for iOS. If set to
1325 # '1', uses the version of clang that ships with Xcode. If set to '0', uses
1326 # the version of clang that ships with the Chromium source. This variable
1327 # is automatically set to '1' when using the Xcode generator.
1330 # These two variables can be set in GYP_DEFINES while running
1331 # |gclient runhooks| to let clang run a plugin in every compilation.
1332 # Only has an effect if 'clang=1' is in GYP_DEFINES as well.
1334 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dylib clang_add_plugin=print-fns' gclient runhooks
1337 'clang_add_plugin%': '',
1339 # Tell ld64 to write map files describing binary layout. Useful
1340 # for looking at what contributes to binary size, e.g. with
1341 # https://github.com/nico/bloat
1342 'mac_write_linker_maps%': 0,
1344 # The default type of gtest.
1345 'gtest_target_type%': 'executable',
1347 # Enable sampling based profiler.
1348 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
1350 # Profile without optimizing out stack frames when profiling==1.
1351 'profiling_full_stack_frames%': '0',
1353 # And if we want to dump symbols for Breakpad-enabled builds.
1354 'linux_dump_symbols%': 0,
1355 # And if we want to strip the binary after dumping symbols.
1356 'linux_strip_binary%': 0,
1357 # If we want stack unwind support for backtrace().
1358 'debug_unwind_tables%': 1,
1359 'release_unwind_tables%': 1,
1361 # Override where to find binutils
1362 'binutils_version%': 0,
1363 'binutils_dir%': '',
1366 # Default of 'use_allocator' is set to 'none' if OS=='android' later.
1367 'use_allocator%': 'tcmalloc',
1369 # Set to 1 to link against libgnome-keyring instead of using dlopen().
1370 'linux_link_gnome_keyring%': 0,
1371 # Set to 1 to link against gsettings APIs instead of using dlopen().
1372 'linux_link_gsettings%': 0,
1374 # Enable use of OpenMAX DL FFT routines.
1375 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
1377 # Enable new NPDevice API.
1378 'enable_new_npdevice_api%': 0,
1380 # .gyp files or targets should set chromium_code to 1 if they build
1381 # Chromium-specific code, as opposed to external code. This variable is
1382 # used to control such things as the set of warnings to enable, and
1383 # whether warnings are treated as errors.
1384 'chromium_code%': 0,
1386 # Disable fatal linker warnings, similarly to how we make it possible
1387 # to disable -Werror (e.g. for different toolchain versions).
1388 'disable_fatal_linker_warnings%': 0,
1390 'release_valgrind_build%': 0,
1392 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
1393 'enable_wexit_time_destructors%': 0,
1395 # Build libpeerconnection as a static library by default.
1396 'libpeer_target_type%': 'static_library',
1398 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
1399 'internal_gles2_conform_tests%': 0,
1401 # Set to 1 to compile with the Khronos GL-CTS conformance tests.
1402 'internal_khronos_glcts_tests%': 0,
1404 # Set to 1 to compile the filter fuzzer.
1405 'internal_filter_fuzzer%': 0,
1407 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
1408 # so Cocoa is happy (http://crbug.com/20441).
1410 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB',
1411 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he',
1412 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv',
1413 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
1414 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk',
1415 'vi', 'zh-CN', 'zh-TW',
1418 # Pseudo locales are special locales which are used for testing and
1419 # debugging. They don't get copied to the final app. For more info,
1420 # check out https://sites.google.com/a/chromium.org/dev/Home/fake-bidi
1427 # If debug_devtools is set to 1, JavaScript files for DevTools are
1428 # stored as is and loaded from disk. Otherwise, a concatenated file
1429 # is stored in resources.pak. It is still possible to load JS files
1430 # from disk by passing --debug-devtools cmdline switch.
1431 'debug_devtools%': 0,
1433 # The Java Bridge is not compiled in by default.
1436 # Code signing for iOS binaries. The bots need to be able to disable this.
1437 'chromium_ios_signing%': 1,
1439 # This flag is only used when disable_nacl==0 and disables all those
1440 # subcomponents which would require the installation of a native_client
1441 # untrusted toolchain.
1442 'disable_nacl_untrusted%': 0,
1444 # Disable Dart by default.
1447 # Copy out the setting of disable_nacl.
1448 'disable_nacl%': '<(disable_nacl)',
1450 # Portable Native Client is enabled by default.
1451 'disable_pnacl%': 0,
1453 # Whether to build full debug version for Debug configuration on Android.
1454 # Compared to full debug version, the default Debug configuration on Android
1455 # has no full v8 debug, has size optimization and linker gc section, so that
1456 # we can build a debug version with acceptable size and performance.
1457 'android_full_debug%': 0,
1459 # Sets the default version name and code for Android app, by default we
1460 # do a developer build.
1461 'android_app_version_name%': 'Developer Build',
1462 'android_app_version_code%': 1,
1464 # Contains data about the attached devices for gyp_managed_install.
1465 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1467 'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
1468 'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
1470 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1471 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1473 # Whether we are using the rlz library or not. Platforms like Android send
1474 # rlz codes for searches but do not use the library.
1477 # Turns on the i18n support in V8.
1478 'v8_enable_i18n_support': 1,
1480 # Compile d8 for the host toolset.
1481 'v8_toolset_for_d8': 'host',
1483 # Use brlapi from brltty for braille display support.
1486 # Relative path to icu.gyp from this file.
1487 'icu_gyp_path': '../third_party/icu/icu.gyp',
1489 # IPC fuzzer is disabled by default.
1490 'enable_ipc_fuzzer%': 0,
1492 # Force disable libstdc++ debug mode.
1493 'disable_glibcxx_debug%': 0,
1495 # Set to 1 to compile with MSE support for MPEG2 TS
1496 'enable_mpeg2ts_stream_parser%': 0,
1498 # Support ChromeOS touchpad gestures with ozone.
1499 'use_evdev_gestures%': 0,
1501 # Default ozone platform (if no --ozone-platform flag).
1502 'ozone_platform%': "",
1504 # Ozone platforms to include in the build.
1505 'ozone_platform_caca%': 0,
1506 'ozone_platform_dri%': 0,
1507 'ozone_platform_drm%': 0,
1508 'ozone_platform_egltest%': 0,
1509 'ozone_platform_gbm%': 0,
1510 'ozone_platform_ozonex%': 0,
1511 'ozone_platform_test%': 0,
1513 # Experiment: http://crbug.com/426914
1517 ['buildtype=="Official"', {
1518 # Continue to embed build meta data in Official builds, basically the
1519 # time it was built.
1520 # TODO(maruel): This decision should be revisited because having an
1521 # official deterministic build has high value too but MSVC toolset can't
1522 # generate anything deterministic with WPO enabled AFAIK.
1523 'dont_embed_build_metadata%': 0,
1525 # Enable the Syzygy optimization step for the official builds.
1526 ['OS=="win" and buildtype=="Official" and syzyasan!=1 and clang!=1', {
1527 'syzygy_optimize%': 1,
1529 'syzygy_optimize%': 0,
1531 # Get binutils version so we can enable debug fission if we can.
1532 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1534 # compiler_version doesn't work with clang
1535 # TODO(mithro): Land https://codereview.chromium.org/199793014/ so
1536 # compiler_version works with clang.
1537 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so
1538 # that it takes effect here.
1539 ['clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', {
1540 'binutils_version%': '<!pymod_do_main(compiler_version target assembler)',
1542 # On Android we know the binutils version in the toolchain.
1544 'binutils_version%': 222,
1546 ['host_arch=="x64"', {
1547 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1549 ['host_arch=="ia32"', {
1550 'binutils_dir%': 'third_party/binutils/Linux_ia32/Release/bin',
1552 # Our version of binutils in third_party/binutils
1553 ['linux_use_bundled_binutils==1', {
1554 'binutils_version%': 224,
1558 'binutils_version%': 0,
1560 # The version of GCC in use, set later in platforms that use GCC and have
1561 # not explicitly chosen to build with clang. Currently, this means all
1562 # platforms except Windows, Mac and iOS.
1563 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1564 # it takes effect here.
1565 ['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', {
1567 ['OS=="android" and android_webview_build==0', {
1568 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1569 # We directly set the gcc version since we know what we use.
1572 ['OS=="android" and android_webview_build==1', {
1573 # Android WebView uses a hermetic clang toolchain for host builds.
1574 'host_gcc_version%': 0,
1575 # Android WebView uses the GCC toolchain from the Android build.
1579 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1580 'gcc_version%': '<!pymod_do_main(compiler_version target compiler)',
1584 'host_gcc_version%': 0,
1587 ['OS=="win" and "<!pymod_do_main(dir_exists <(windows_sdk_default_path))"=="True"', {
1588 'windows_sdk_path%': '<(windows_sdk_default_path)',
1590 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.1',
1592 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=="True"', {
1593 'directx_sdk_path%': '<(directx_sdk_default_path)',
1595 'directx_sdk_path%': '$(DXSDK_DIR)',
1598 'windows_driver_kit_path%': '$(WDK_DIR)',
1600 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1602 ['target_arch=="mipsel" or target_arch=="mips64el"', {
1605 'nacl_untrusted_build%': 0,
1606 'use_allocator%': 'none',
1608 ['OS=="linux" and target_arch=="mipsel"', {
1609 'sysroot%': '<(sysroot)',
1612 # Use a 64-bit linker to avoid running out of address space. The
1613 # buildbots should have a 64-bit kernel and a 64-bit libc installed.
1614 ['host_arch=="ia32" and target_arch=="ia32"', {
1615 # TODO(thestig) This is a horrible way to force the desired
1616 # configuration. Our gyp variable scoping is likely wrong and
1617 # needs to be cleaned up. The GN configuration should be changed
1619 'binutils_version%': 224,
1620 'linux_use_bundled_binutils%': '1',
1621 'linux_use_bundled_gold%': '1',
1622 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1624 # All Chrome builds have breakpad symbols, but only process the
1625 # symbols from official builds.
1626 ['(branding=="Chrome" and buildtype=="Official")', {
1627 'linux_dump_symbols%': 1,
1629 # Omit unwind support in official release builds to save space. We
1630 # can use breakpad for these builds.
1631 'release_unwind_tables%': 0,
1634 }], # os_posix==1 and OS!="mac" and OS!="ios"
1637 'enable_background%': 0,
1638 'icu_use_data_file_flag%': 1,
1639 'enable_web_speech%': 0,
1640 'use_system_libxml%': 1,
1641 'use_system_sqlite%': 1,
1643 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1644 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
1645 'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr',
1646 'uk', 'vi', 'zh-CN', 'zh-TW',
1649 # iOS SDK and deployment target support. The |ios_sdk| value is left
1650 # blank so that when it is set in the project files it will be the
1651 # "current" iOS SDK. Forcing a specific SDK even if it is "current"
1652 # causes Xcode to spit out a warning for every single project file for
1653 # not using the "current" SDK.
1655 'ios_sdk_path%': '',
1656 'ios_deployment_target%': '7.0',
1659 # ios_product_name is set to the name of the .app bundle as it should
1661 ['branding=="Chrome"', {
1662 'ios_product_name%': 'Chrome',
1663 }, { # else: branding!="Chrome"
1664 'ios_product_name%': 'Chromium',
1666 ['branding=="Chrome" and buildtype=="Official"', {
1668 }, { # else: branding!="Chrome" or buildtype!="Official"
1674 # Location of Android NDK.
1677 # Standard libraries can use the relative path to the NDK.
1678 'android_ndk_root%': '../../third_party/android_tools/ndk/',
1679 # Unfortunately, it is required to use the absolute path to the SDK
1680 # because it us passed to ant which uses a different relative path
1682 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/sdk/',
1683 # Similarly, gdbserver and the Android toolchain need to use the
1684 # absolute path to the NDK because they are used at different levels
1686 'android_ndk_absolute_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/ndk/',
1687 'android_host_arch%': '<!(uname -m)',
1688 # Android API-level of the SDK used for compilation.
1689 'android_sdk_version%': '22',
1690 'android_sdk_build_tools_version%': '22.0.0',
1691 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
1693 # Copy conditionally-set variables out one scope.
1694 'android_ndk_root%': '<(android_ndk_root)',
1695 'android_ndk_absolute_root%': '<(android_ndk_absolute_root)',
1696 'android_sdk_root%': '<(android_sdk_root)',
1697 'android_sdk_version%': '<(android_sdk_version)',
1698 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport',
1699 'host_os%': '<(host_os)',
1701 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_version)',
1702 # Android SDK build tools (e.g. dx, aapt, aidl)
1703 'android_sdk_tools%': '<(android_sdk_root)/build-tools/<(android_sdk_build_tools_version)',
1705 # Android API level 14 is ICS (Android 4.0) which is the minimum
1706 # platform requirement for Chrome on Android, we use it for native
1709 ['target_arch == "ia32"', {
1710 'android_app_abi%': 'x86',
1711 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86/gdbserver/gdbserver',
1712 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-x86',
1713 'android_ndk_lib_dir%': 'usr/lib',
1714 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1716 ['target_arch == "x64"', {
1717 'android_app_abi%': 'x86_64',
1718 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-x86_64/gdbserver/gdbserver',
1719 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-x86_64',
1720 'android_ndk_lib_dir%': 'usr/lib64',
1721 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/x86_64-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1723 ['target_arch=="arm"', {
1726 'android_app_abi%': 'armeabi',
1728 'android_app_abi%': 'armeabi-v7a',
1731 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm/gdbserver/gdbserver',
1732 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-arm',
1733 'android_ndk_lib_dir%': 'usr/lib',
1734 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/arm-linux-androideabi-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1736 ['target_arch == "arm64"', {
1737 'android_app_abi%': 'arm64-v8a',
1738 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-arm64/gdbserver/gdbserver',
1739 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-arm64',
1740 'android_ndk_lib_dir%': 'usr/lib',
1741 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1743 ['target_arch == "mipsel"', {
1744 'android_app_abi%': 'mips',
1745 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips/gdbserver/gdbserver',
1746 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-mips',
1747 'android_ndk_lib_dir%': 'usr/lib',
1748 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mipsel-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1750 ['target_arch == "mips64el"', {
1751 'android_app_abi%': 'mips64',
1752 'android_gdbserver%': '<(android_ndk_absolute_root)/prebuilt/android-mips64/gdbserver/gdbserver',
1753 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-mips64',
1754 'android_ndk_lib_dir%': 'usr/lib64',
1755 'android_toolchain%': '<(android_ndk_absolute_root)/toolchains/mips64el-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1759 # Copy conditionally-set variables out one scope.
1760 'android_app_abi%': '<(android_app_abi)',
1761 'android_gdbserver%': '<(android_gdbserver)',
1762 'android_ndk_root%': '<(android_ndk_root)',
1763 'android_ndk_sysroot%': '<(android_ndk_sysroot)',
1764 'android_sdk_root%': '<(android_sdk_root)',
1765 'android_sdk_version%': '<(android_sdk_version)',
1766 'android_toolchain%': '<(android_toolchain)',
1768 'android_ndk_include': '<(android_ndk_sysroot)/usr/include',
1769 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
1770 'android_sdk_tools%': '<(android_sdk_tools)',
1771 'android_sdk%': '<(android_sdk)',
1772 'android_sdk_jar%': '<(android_sdk)/android.jar',
1774 'android_stlport_root': '<(android_stlport_root)',
1775 'android_stlport_include': '<(android_stlport_root)/stlport',
1776 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_abi)',
1777 'host_os%': '<(host_os)',
1779 # Location of the "objcopy" binary, used by both gyp and scripts.
1780 'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)',
1782 # Location of the "strip" binary, used by both gyp and scripts.
1783 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
1785 # Location of the "readelf" binary.
1786 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1788 # Determines whether we should optimize JNI generation at the cost of
1789 # breaking assumptions in the build system that when inputs have changed
1790 # the outputs should always change as well. This is meant purely for
1791 # developer builds, to avoid spurious re-linking of native files.
1792 'optimize_jni_generation%': '<(optimize_jni_generation)',
1794 # Always uses openssl.
1796 'use_openssl_certs%': 1,
1798 'proprietary_codecs%': '<(proprietary_codecs)',
1799 'safe_browsing%': 2,
1800 'enable_web_speech%': 0,
1802 'build_ffmpegsumo%': 0,
1803 'use_allocator%': 'none',
1805 # Disable Native Client.
1808 # Android does not support background apps.
1809 'enable_background%': 0,
1811 # Sessions are store separately in the Java side.
1812 'enable_session_service%': 0,
1816 'gtest_target_type%': 'shared_library',
1818 # Uses system APIs for decoding audio and video.
1819 'use_libffmpeg%': '0',
1821 # TODO(torne): Remove this unsupported option once all the places that
1822 # test it have been updated.
1823 'use_system_stlport%': 0,
1825 # Copy it out one scope.
1826 'android_webview_build%': '<(android_webview_build)',
1829 'use_system_fontconfig%': 0,
1831 'use_system_fontconfig%': 1,
1834 'enable_mpeg2ts_stream_parser%': 1,
1835 'ffmpeg_branding%': 'ChromeOS',
1836 'ozone_platform_ozonex%': 1,
1837 'use_playready%': 0,
1839 ['target_arch=="arm"', {
1841 'arm_tune%': 'cortex-a9',
1847 ['android_webview_build==1', {
1848 # When building the WebView in the Android tree, jarjar will remap all
1849 # the class names, so the JNI generator needs to know this.
1850 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt',
1852 ['OS=="linux" and target_arch!="mipsel"', {
1857 # All Chrome builds have breakpad symbols, but only process the
1858 # symbols from official builds.
1859 ['(branding=="Chrome" and buildtype=="Official")', {
1860 'mac_strip_release%': 1,
1864 ['OS=="mac" or OS=="ios"', {
1868 # Mac OS X SDK and deployment target support. The SDK identifies
1869 # the version of the system headers that will be used, and
1870 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
1871 # macro. "Maximum allowed" refers to the operating system version
1872 # whose APIs are available in the headers. The deployment target
1873 # identifies the minimum system version that the built products are
1874 # expected to function on. It corresponds to the
1875 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these
1876 # macros are available, #include <AvailabilityMacros.h>. Additional
1877 # documentation on these macros is available at
1878 # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTION3
1879 # Chrome normally builds with the Mac OS X 10.6 SDK and sets the
1880 # deployment target to 10.6. Other projects, such as O3D, may
1881 # override these defaults.
1883 # Normally, mac_sdk_min is used to find an SDK that Xcode knows
1884 # about that is at least the specified version. In official builds,
1885 # the SDK must match mac_sdk_min exactly. If the SDK is installed
1886 # someplace that Xcode doesn't know about, set mac_sdk_path to the
1887 # path to the SDK; when set to a non-empty string, SDK detection
1888 # based on mac_sdk_min will be bypassed entirely.
1891 'mac_sdk_min%': '10.8',
1892 }, { # else OS!="ios"
1893 'mac_sdk_min%': '10.6',
1896 'mac_sdk_path%': '',
1898 'mac_deployment_target%': '10.6',
1901 'mac_sdk_min': '<(mac_sdk_min)',
1902 'mac_sdk_path': '<(mac_sdk_path)',
1903 'mac_deployment_target': '<(mac_deployment_target)',
1905 # Compile in Breakpad support by default so that it can be
1906 # tested, even if it is not enabled by default at runtime.
1907 'mac_breakpad_compiled_in%': 1,
1909 # mac_product_name is set to the name of the .app bundle as it should
1910 # appear on disk. This duplicates data from
1911 # chrome/app/theme/chromium/BRANDING and
1912 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get
1913 # these names into the build system.
1914 ['branding=="Chrome"', {
1915 'mac_product_name%': 'Google Chrome',
1916 }, { # else: branding!="Chrome"
1917 'mac_product_name%': 'Chromium',
1919 # Official mac builds require a specific OS X SDK, but iOS and
1920 # non-official mac builds do not.
1921 ['branding=="Chrome" and buildtype=="Official" and OS=="mac"', {
1922 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac_sdk_min) --sdk_path=<(mac_sdk_path))',
1924 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))',
1926 ['branding=="Chrome" and buildtype=="Official"', {
1927 # Enable uploading crash dumps.
1928 'mac_breakpad_uploads%': 1,
1929 # Enable dumping symbols at build time for use by Mac Breakpad.
1931 # Enable Keystone auto-update support.
1933 }, { # else: branding!="Chrome" or buildtype!="Official"
1934 'mac_breakpad_uploads%': 0,
1939 }], # OS=="mac" or OS=="ios"
1942 # This is the architecture convention used in WinSDK paths.
1943 ['target_arch=="ia32"', {
1944 'winsdk_arch%': 'x86',
1946 'winsdk_arch%': '<(target_arch)',
1948 ['component=="shared_library"', {
1949 'win_use_allocator_shim%': 0,
1951 # Turn on multiple dll by default on Windows when in static_library.
1952 'chrome_multiple_dll%': 1,
1954 ['asan==1 or syzyasan==1', {
1955 'win_use_allocator_shim%': 0,
1960 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', {
1961 # Only enabled by default for ninja because it's buggy in VS.
1962 # Not enabled for component=static_library because some targets
1963 # are too large and the toolchain fails due to the size of the
1965 'incremental_chrome_dll%': 1,
1967 # Don't do incremental linking for large modules on 32-bit or when
1968 # component=static_library as the toolchain fails due to the size of
1970 ['MSVS_OS_BITS==32 or component=="static_library"', {
1971 'msvs_large_module_debug_link_mode%': '1', # No
1973 'msvs_large_module_debug_link_mode%': '2', # Yes
1976 'nacl_win64_defines': [
1977 # This flag is used to minimize dependencies when building
1978 # Native Client loader for 64-bit Windows.
1981 # Need to include allocator target, but exclude tcmalloc files.
1982 'use_allocator%': 'winheap',
1985 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios" and embedded==0', {
1991 ['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win")', {
1992 'enable_pepper_cdms%': 1,
1994 'enable_pepper_cdms%': 0,
1997 ['OS=="android" or chromecast==1', {
1998 'enable_browser_cdms%': 1,
2000 'enable_browser_cdms%': 0,
2003 # Native Client glibc toolchain is enabled
2004 # by default except on arm, mips and mips64.
2005 ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"', {
2006 'disable_glibc%': 1,
2008 'disable_glibc%': 0,
2011 # Set the relative path from this file to the GYP file of the JPEG
2012 # library used by Chromium.
2013 ['use_system_libjpeg==1 or use_libjpeg_turbo==0', {
2014 # Configuration for using the system libjeg is here.
2015 'libjpeg_gyp_path': '../third_party/libjpeg/libjpeg.gyp',
2017 'libjpeg_gyp_path': '../third_party/libjpeg_turbo/libjpeg.gyp',
2020 # Options controlling the use of GConf (the classic GNOME configuration
2021 # system) and GIO, which contains GSettings (the new GNOME config system).
2022 ['chromeos==1 or embedded==1', {
2030 # Set up -D and -E flags passed into grit.
2031 ['branding=="Chrome"', {
2032 # TODO(mmoss) The .grd files look for _google_chrome, but for
2033 # consistency they should look for google_chrome_build like C++.
2034 'grit_defines': ['-D', '_google_chrome',
2035 '-E', 'CHROMIUM_BUILD=google_chrome'],
2037 'grit_defines': ['-D', '_chromium',
2038 '-E', 'CHROMIUM_BUILD=chromium'],
2041 'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'],
2043 ['desktop_linux==1', {
2044 'grit_defines': ['-D', 'desktop_linux'],
2046 ['toolkit_views==1', {
2047 'grit_defines': ['-D', 'toolkit_views'],
2050 'grit_defines': ['-D', 'use_aura'],
2053 'grit_defines': ['-D', 'use_ash'],
2056 'grit_defines': ['-D', 'use_nss'],
2059 'grit_defines': ['-D', 'use_ozone'],
2061 ['image_loader_extension==1', {
2062 'grit_defines': ['-D', 'image_loader_extension'],
2065 'grit_defines': ['-D', 'remoting'],
2067 ['use_titlecase_in_grd==1', {
2068 'grit_defines': ['-D', 'use_titlecase'],
2070 ['use_third_party_translations==1', {
2071 'grit_defines': ['-D', 'use_third_party_translations'],
2073 'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia',
2074 'ka', 'ku', 'kw', 'ms', 'ug'
2080 '-E', 'ANDROID_JAVA_TAGGED_ONLY=true',
2081 '--no-output-all-resource-defines',
2084 ['<(android_webview_build)==1', {
2085 'grit_defines': ['-D', 'is_android_webview_build'],
2089 ['OS=="mac" or OS=="ios"', {
2090 'grit_defines': ['-D', 'scale_factors=2x'],
2094 'enable_coverage%': 0,
2098 '--no-output-all-resource-defines',
2100 # iOS uses a whitelist to filter resources.
2101 'grit_whitelist%': '<(DEPTH)/build/ios/grit_whitelist.txt',
2103 # Enable host builds when generating with ninja-ios.
2105 ['"<(GENERATOR)"=="ninja"', {
2109 # Use the version of clang shipped with Xcode when building official
2110 # version of Chrome for iOS.
2112 # TODO(eugenebut): Remove enable_coverage check once
2113 # libclang_rt.profile_ios.a is bundled with Chromium's clang.
2114 # http://crbug.com/450379
2115 ['buildtype=="Official" or enable_coverage', {
2120 ['enable_extensions==1', {
2121 'grit_defines': ['-D', 'enable_extensions'],
2123 ['enable_plugins!=0', {
2124 'grit_defines': ['-D', 'enable_plugins'],
2126 ['enable_basic_printing==1 or enable_print_preview==1', {
2127 'grit_defines': ['-D', 'enable_printing'],
2129 ['enable_print_preview==1', {
2130 'grit_defines': ['-D', 'enable_print_preview'],
2132 ['enable_themes==1', {
2133 'grit_defines': ['-D', 'enable_themes'],
2135 ['enable_app_list==1', {
2136 'grit_defines': ['-D', 'enable_app_list'],
2138 ['enable_settings_app==1', {
2139 'grit_defines': ['-D', 'enable_settings_app'],
2141 ['enable_google_now==1', {
2142 'grit_defines': ['-D', 'enable_google_now'],
2144 ['use_concatenated_impulse_responses==1', {
2145 'grit_defines': ['-D', 'use_concatenated_impulse_responses'],
2147 ['enable_media_router==1', {
2148 'grit_defines': ['-D', 'enable_media_router'],
2150 ['enable_webrtc==1', {
2151 'grit_defines': ['-D', 'enable_webrtc'],
2153 ['enable_hangout_services_extension==1', {
2154 'grit_defines': ['-D', 'enable_hangout_services_extension'],
2156 ['enable_task_manager==1', {
2157 'grit_defines': ['-D', 'enable_task_manager'],
2159 ['notifications==1', {
2160 'grit_defines': ['-D', 'enable_notifications'],
2162 ['enable_wifi_bootstrapping==1', {
2163 'grit_defines': ['-D', 'enable_wifi_bootstrapping'],
2165 ['mac_views_browser==1', {
2166 'grit_defines': ['-D', 'mac_views_browser'],
2168 ['enable_resource_whitelist_generation==1 and OS!="win"', {
2169 'grit_rc_header_format': ['-h', '#define {textual_id} _Pragma("whitelisted_resource_{numeric_id}") {numeric_id}'],
2171 ['enable_resource_whitelist_generation==1 and OS=="win"', {
2172 'grit_rc_header_format': ['-h', '#define {textual_id} __pragma(message("whitelisted_resource_{numeric_id}")) {numeric_id}'],
2174 ['enable_mdns==1 or OS=="mac"', {
2175 'grit_defines': ['-D', 'enable_service_discovery'],
2176 'enable_service_discovery%': 1
2178 ['clang_use_chrome_plugins==1 and OS!="win"', {
2181 ['OS=="mac" or OS=="ios"', {
2182 'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.dylib',
2183 }, { # OS != "mac" or OS != "ios"
2184 'clang_lib_path%': '<!(cd <(DEPTH) && pwd -P)/third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.so',
2188 # If you change these, also change build/config/clang/BUILD.gn.
2189 'clang_chrome_plugins_flags%':
2190 '-Xclang -load -Xclang <(clang_lib_path)'
2191 ' -Xclang -add-plugin -Xclang find-bad-constructs',
2193 ['asan==1 or msan==1 or lsan==1 or tsan==1', {
2195 'use_allocator%': 'none',
2196 'use_sanitizer_options%': 1,
2197 # Disable ICF in the linker to avoid debug info loss.
2198 'gold_icf_level%': 'none',
2200 ['asan==1 and OS=="linux" and chromeos==0', {
2201 'use_custom_libcxx%': 1,
2209 ['asan==1 and OS=="mac"', {
2210 'mac_strip_release': 1,
2213 'use_custom_libcxx%': 1,
2216 # Use a just-built, MSan-instrumented libc++ instead of the system-wide
2217 # libstdc++. This is required to avoid false positive reports whenever
2218 # the C++ standard library is used.
2219 'use_custom_libcxx%': 1,
2220 # Running the V8-generated code on an ARM simulator is a powerful hack
2221 # that allows the tool to see the memory accesses from JITted code.
2222 # Without this flag, JS code causes false positive reports from MSan.
2223 'v8_target_arch': 'arm64',
2226 ['OS=="linux" and clang_type_profiler==1', {
2228 'clang_use_chrome_plugins%': 0,
2230 ['host_arch=="x64"', {
2231 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_x64',
2233 ['host_arch=="ia32"', {
2234 # 32-bit Clang is unsupported. It may not build. Put your 32-bit
2235 # Clang in this directory at your own risk if needed for some
2236 # purpose (e.g. to compare 32-bit and 64-bit behavior like memory
2237 # usage). Any failure by this compiler should not close the tree.
2238 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32',
2244 # The Clang plugins don't currently work on Windows.
2245 # TODO(hans): One day, this will work. (crbug.com/82385)
2246 'clang_use_chrome_plugins%': 0,
2249 # On valgrind bots, override the optimizer settings so we don't inline too
2250 # much and make the stacks harder to figure out.
2252 # TODO(rnk): Kill off variables that no one else uses and just implement
2253 # them under a build_for_tool== condition.
2254 ['build_for_tool=="memcheck" or build_for_tool=="tsan"', {
2256 'mac_debug_optimization': '1',
2257 'mac_release_optimization': '1',
2258 'release_optimize': '1',
2259 'no_gc_sections': 1,
2260 'debug_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2261 '-fno-builtin -fno-optimize-sibling-calls',
2262 'release_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2263 '-fno-builtin -fno-optimize-sibling-calls',
2265 # MSVS flags for TSan on Pin and Windows.
2266 'win_debug_RuntimeChecks': '0',
2267 'win_debug_disable_iterator_debugging': '1',
2268 'win_debug_Optimization': '1',
2269 'win_debug_InlineFunctionExpansion': '0',
2270 'win_release_InlineFunctionExpansion': '0',
2271 'win_release_OmitFramePointers': '0',
2273 'use_allocator': 'tcmalloc',
2274 'release_valgrind_build': 1,
2276 'component': 'static_library',
2277 'use_system_zlib': 0,
2280 # Build tweaks for DrMemory.
2281 # TODO(rnk): Combine with tsan config to share the builder.
2282 # http://crbug.com/108155
2283 ['build_for_tool=="drmemory"', {
2284 # These runtime checks force initialization of stack vars which blocks
2285 # DrMemory's uninit detection.
2286 'win_debug_RuntimeChecks': '0',
2287 # Iterator debugging is slow.
2288 'win_debug_disable_iterator_debugging': '1',
2289 # Try to disable optimizations that mess up stacks in a release build.
2290 # DrM-i#1054 (https://github.com/DynamoRIO/drmemory/issues/1054)
2291 # /O2 and /Ob0 (disable inline) cannot be used together because of a
2292 # compiler bug, so we use /Ob1 instead.
2293 'win_release_InlineFunctionExpansion': '1',
2294 'win_release_OmitFramePointers': '0',
2295 # Ditto for debug, to support bumping win_debug_Optimization.
2296 'win_debug_InlineFunctionExpansion': 0,
2297 'win_debug_OmitFramePointers': 0,
2298 # Keep the code under #ifndef NVALGRIND.
2299 'release_valgrind_build': 1,
2302 # Enable RLZ on Win, Mac, iOS and ChromeOS.
2303 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos==1)', {
2307 # Set default compiler flags depending on ARM version.
2308 ['arm_version==6 and android_webview_build==0', {
2309 'arm_arch%': 'armv6',
2312 'arm_float_abi%': 'softfp',
2315 ['arm_version==7 and android_webview_build==0', {
2316 'arm_arch%': 'armv7-a',
2317 'arm_tune%': 'generic-armv7-a',
2322 'arm_fpu%': 'vfpv3-d16',
2325 # Change the default to hard once the armhf transition is complete.
2326 'arm_float_abi%': 'softfp',
2330 # Set default compiler flags for MIPS floating-point support.
2331 ['target_arch=="mipsel" and android_webview_build==0', {
2332 'mips_float_abi%': 'hard',
2334 ['target_arch=="mipsel" and mips_arch_variant=="r2" and android_webview_build==0', {
2335 'mips_fpu_mode%': 'fp32',
2338 ['android_webview_build==1', {
2339 # The WebView build gets its cpu-specific flags from the Android build system.
2343 'arm_float_abi%': '',
2345 'mips_float_abi%': '',
2346 'mips_fpu_mode%': '',
2349 # Enable brlapi by default for chromeos.
2354 ['use_ozone==1 and ozone_auto_platforms==1', {
2355 # Use test as the default platform.
2356 'ozone_platform%': 'test',
2358 # Build all platforms whose deps are in install-build-deps.sh.
2359 # Only these platforms will be compile tested by buildbots.
2360 'ozone_platform_dri%': 1,
2361 'ozone_platform_drm%': 1,
2362 'ozone_platform_test%': 1,
2363 'ozone_platform_egltest%': 1,
2366 ['desktop_linux==1 and use_aura==1 and use_x11==1', {
2367 'use_clipboard_aurax11%': 1,
2370 ['OS=="win" and use_goma==1', {
2371 # goma doesn't support pch yet.
2372 'chromium_win_pch': 0,
2373 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
2375 ['win_z7==0 and fastbuild==0', {
2381 ['OS=="win" and (clang==1 or asan==1)', {
2382 'chromium_win_pch': 0,
2386 'host_cc': '<(make_clang_dir)/bin/clang',
2387 'host_cxx': '<(make_clang_dir)/bin/clang++',
2389 'host_cc': '<!(which gcc)',
2390 'host_cxx': '<!(which g++)',
2393 # The seccomp-bpf sandbox is only supported on five architectures
2395 # Do not disable seccomp_bpf anywhere without talking to
2396 # security@chromium.org!
2397 ['((OS=="linux" or OS=="android") and '
2398 '(target_arch=="ia32" or target_arch=="x64" or '
2399 'target_arch=="arm" or target_arch=="mipsel" or '
2400 'target_arch=="arm64"))', {
2401 'use_seccomp_bpf%': 1,
2403 'use_seccomp_bpf%': 0,
2411 # The path to the ANGLE library.
2412 'angle_path': '<(DEPTH)/third_party/angle',
2414 # List of default apps to install in new profiles. The first list contains
2415 # the source files as found in svn. The second list, used only for linux,
2416 # contains the destination location for each of the files. When a crx
2417 # is added or removed from the list, the chrome/browser/resources/
2418 # default_apps/external_extensions.json file must also be updated.
2420 # README: GN version of these is in the target //chrome:default_apps
2421 # (there's no global variable like in GYP). Be sure to update that target
2422 # if you change these lists!
2423 'default_apps_list': [
2424 'browser/resources/default_apps/external_extensions.json',
2425 'browser/resources/default_apps/gmail.crx',
2426 'browser/resources/default_apps/search.crx',
2427 'browser/resources/default_apps/youtube.crx',
2428 'browser/resources/default_apps/drive.crx',
2429 'browser/resources/default_apps/docs.crx',
2431 'default_apps_list_linux_dest': [
2432 '<(PRODUCT_DIR)/default_apps/external_extensions.json',
2433 '<(PRODUCT_DIR)/default_apps/gmail.crx',
2434 '<(PRODUCT_DIR)/default_apps/search.crx',
2435 '<(PRODUCT_DIR)/default_apps/youtube.crx',
2436 '<(PRODUCT_DIR)/default_apps/drive.crx',
2437 '<(PRODUCT_DIR)/default_apps/docs.crx',
2440 # Whether to allow building of the GPU-related isolates.
2441 'archive_gpu_tests%': 0,
2443 # Whether to allow building of chromoting related isolates.
2444 'archive_chromoting_tests%': 0,
2446 'target_defaults': {
2448 # The condition that operates on chromium_code is in a target_conditions
2449 # section, and will not have access to the default fallback value of
2450 # chromium_code at the top of this file, or to the chromium_code
2451 # variable placed at the root variables scope of .gyp files, because
2452 # those variables are not set at target scope. As a workaround,
2453 # if chromium_code is not set at target scope, define it in target scope
2454 # to contain whatever value it has during early variable expansion.
2455 # That's enough to make it available during target conditional
2457 'chromium_code%': '<(chromium_code)',
2459 'component%': '<(component)',
2461 'chromecast%': '<(chromecast)',
2463 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx
2464 'win_release_Optimization%': '2', # 2 = /O2
2465 'win_debug_Optimization%': '0', # 0 = /Od
2467 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx
2468 # Tri-state: blank is default, 1 on, 0 off
2469 'win_release_OmitFramePointers%': '0',
2470 # Tri-state: blank is default, 1 on, 0 off
2471 'win_debug_OmitFramePointers%': '',
2473 # See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx
2474 'win_debug_RuntimeChecks%': '3', # 3 = all checks enabled, 0 = off
2476 # See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx
2477 'win_debug_InlineFunctionExpansion%': '', # empty = default, 0 = off,
2478 'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max
2480 # VS inserts quite a lot of extra checks to algorithms like
2481 # std::partial_sort in Debug build which make them O(N^2)
2482 # instead of O(N*logN). This is particularly slow under memory
2483 # tools like ThreadSanitizer so we want it to be disablable.
2484 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2485 'win_debug_disable_iterator_debugging%': '0',
2487 # An application manifest fragment to declare compatibility settings for
2488 # 'executable' targets. Ignored in other target type.
2489 'win_exe_compatibility_manifest%':
2490 '<(DEPTH)\\build\\win\\compatibility.manifest',
2492 'release_extra_cflags%': '',
2493 'debug_extra_cflags%': '',
2495 'release_valgrind_build%': '<(release_valgrind_build)',
2497 # the non-qualified versions are widely assumed to be *nix-only
2498 'win_release_extra_cflags%': '',
2499 'win_debug_extra_cflags%': '',
2501 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
2502 'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)',
2504 # Only used by Windows build for now. Can be used to build into a
2505 # differet output directory, e.g., a build_dir_prefix of VS2010_ would
2506 # output files in src/build/VS2010_{Debug,Release}.
2507 'build_dir_prefix%': '',
2509 # Targets are by default not nacl untrusted code.
2510 'nacl_untrusted_build%': 0,
2512 'pnacl_compile_flags': [
2513 # pnacl uses the clang compiler so we need to suppress all the
2514 # same warnings as we do for clang.
2515 # TODO(sbc): Remove these if/when they are removed from the clang
2517 '-Wno-unused-function',
2518 '-Wno-char-subscripts',
2519 '-Wno-c++11-extensions',
2520 '-Wno-unnamed-type-template-args',
2523 # By default, Android targets have their exported JNI symbols stripped,
2524 # so we test the manual JNI registration code paths that are required
2525 # when using the crazy linker. To allow use of native JNI exports (lazily
2526 # resolved by the JVM), targets can enable this variable, which will stop
2527 # the stripping from happening. Only targets which do not need to be
2528 # compatible with the crazy linker are permitted to set this.
2529 'use_native_jni_exports%': 0,
2532 ['OS=="win" and component=="shared_library"', {
2533 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2534 'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL)
2535 'win_debug_RuntimeLibrary%': '3', # 3 = /MDd (debug DLL)
2537 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2538 'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
2539 'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static)
2542 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2543 'mac_release_optimization%': 's', # Use -Os unless overridden
2544 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2546 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2547 'mac_release_optimization%': '2', # Use -O2 unless overridden
2548 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2551 'host_os%': '<(host_os)', # See comment above chromium_code.
2554 'clang_warning_flags': [
2557 # Don't die on dtoa code that uses a char as an array index.
2558 # This is required solely for base/third_party/dmg_fp/dtoa.cc.
2559 '-Wno-char-subscripts',
2561 # TODO(thakis): This used to be implied by -Wno-unused-function,
2562 # which we no longer use. Check if it makes sense to remove
2563 # this as well. http://crbug.com/316352
2564 '-Wno-unneeded-internal-declaration',
2566 # Warns on switches on enums that cover all enum values but
2567 # also contain a default: branch. Chrome is full of that.
2568 '-Wno-covered-switch-default',
2570 # Warns when a const char[] is converted to bool.
2571 '-Wstring-conversion',
2573 # C++11-related flags:
2575 # This warns on using ints as initializers for floats in
2576 # initializer lists (e.g. |int a = f(); CGSize s = { a, a };|),
2577 # which happens in several places in chrome code. Not sure if
2578 # this is worth fixing.
2579 '-Wno-c++11-narrowing',
2581 # Clang considers the `register` keyword as deprecated, but e.g.
2582 # code generated by flex (used in angle) contains that keyword.
2583 # http://crbug.com/255186
2584 '-Wno-deprecated-register',
2586 # TODO(hans): Get this cleaned up.
2587 '-Wno-inconsistent-missing-override',
2590 'includes': [ 'set_clang_warning_flags.gypi', ],
2592 # Don't use deprecated V8 APIs anywhere.
2593 'V8_DEPRECATION_WARNINGS',
2596 '<(SHARED_INTERMEDIATE_DIR)',
2599 ['(OS=="mac" or OS=="ios") and asan==1', {
2601 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
2604 ['OS=="win" and asan==1 and component=="shared_library"', {
2606 '<(DEPTH)/build/win/asan.gyp:asan_dynamic_runtime',
2609 ['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', {
2610 'cflags_cc!': ['-fno-rtti'],
2613 '-gline-tables-only',
2614 '-fintercept-allocation-functions',
2616 'defines': ['TYPE_PROFILING'],
2618 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
2621 ['branding=="Chrome"', {
2622 'defines': ['GOOGLE_CHROME_BUILD'],
2623 }, { # else: branding!="Chrome"
2624 'defines': ['CHROMIUM_BUILD'],
2626 ['OS=="mac" and component=="shared_library"', {
2628 'DYLIB_INSTALL_NAME_BASE': '@rpath',
2629 'LD_RUNPATH_SEARCH_PATHS': [
2630 # For unbundled binaries.
2632 # For bundled binaries, to get back from Binary.app/Contents/MacOS.
2633 '@loader_path/../../..',
2637 ['(clang==1 or host_clang==1) and OS!="win"', {
2638 # This is here so that all files get recompiled after a clang roll and
2639 # when turning clang on or off.
2640 # (defines are passed via the command line, and build systems rebuild
2641 # things when their commandline changes). Nothing should ever read this
2643 'defines': ['CR_CLANG_REVISION=<!(<(DEPTH)/tools/clang/scripts/update.sh --print-revision)'],
2646 'defines': ['ENABLE_RLZ'],
2648 ['component=="shared_library"', {
2649 'defines': ['COMPONENT_BUILD'],
2651 ['toolkit_views==1', {
2652 'defines': ['TOOLKIT_VIEWS=1'],
2654 ['ui_compositor_image_transport==1', {
2655 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'],
2658 'defines': ['USE_AURA=1'],
2661 'defines': ['USE_ASH=1'],
2664 'defines': ['USE_PANGO=1'],
2667 'defines': ['USE_CAIRO=1'],
2670 'defines': ['USE_CRAS=1'],
2673 'defines': ['USE_OZONE=1'],
2675 ['use_default_render_theme==1', {
2676 'defines': ['USE_DEFAULT_RENDER_THEME=1'],
2678 ['use_libjpeg_turbo==1', {
2679 'defines': ['USE_LIBJPEG_TURBO=1'],
2682 'defines': ['USE_X11=1'],
2684 ['use_clipboard_aurax11==1', {
2685 'defines': ['USE_CLIPBOARD_AURAX11=1'],
2687 ['enable_one_click_signin==1', {
2688 'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
2690 ['enable_pre_sync_backup==1', {
2691 'defines': ['ENABLE_PRE_SYNC_BACKUP'],
2693 ['image_loader_extension==1', {
2694 'defines': ['IMAGE_LOADER_EXTENSION=1'],
2697 'defines': ['ENABLE_PROFILING=1'],
2700 'defines': ['ENABLE_REMOTING=1'],
2702 ['enable_webrtc==1', {
2703 'defines': ['ENABLE_WEBRTC=1'],
2705 ['proprietary_codecs==1', {
2706 'defines': ['USE_PROPRIETARY_CODECS'],
2708 ['enable_mpeg2ts_stream_parser==1', {
2709 'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
2713 ['enable_viewport==1', {
2714 'defines': ['ENABLE_VIEWPORT'],
2716 ['enable_pepper_cdms==1', {
2717 'defines': ['ENABLE_PEPPER_CDMS'],
2719 ['enable_browser_cdms==1', {
2720 'defines': ['ENABLE_BROWSER_CDMS'],
2722 ['configuration_policy==1', {
2723 'defines': ['ENABLE_CONFIGURATION_POLICY'],
2725 ['notifications==1', {
2726 'defines': ['ENABLE_NOTIFICATIONS'],
2728 ['enable_hidpi==1', {
2729 'defines': ['ENABLE_HIDPI=1'],
2731 ['native_memory_pressure_signals==1', {
2732 'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'],
2735 'defines': ['USE_UDEV'],
2739 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
2742 ['OS=="win" and fastbuild==2', {
2743 # Completely disable debug information.
2746 'GenerateDebugInformation': 'false',
2748 'VCCLCompilerTool': {
2749 'DebugInformationFormat': '0',
2753 ['OS=="win" and fastbuild==1', {
2756 # This tells the linker to generate .pdbs, so that
2757 # we can get meaningful stack traces.
2758 'GenerateDebugInformation': 'true',
2760 'VCCLCompilerTool': {
2761 # No debug info to be generated by compiler.
2762 'DebugInformationFormat': '0',
2766 ['(OS=="android" or OS=="linux") and fastbuild==2', {
2767 'variables': { 'debug_extra_cflags': '-g0', },
2769 ['(OS=="android" or OS=="linux") and fastbuild==1', {
2770 # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2772 'variables': { 'debug_extra_cflags': '-g0', },
2774 # Android builds symbols on release by default, disable them.
2775 ['OS=="android" and fastbuild==2', {
2776 'variables': { 'release_extra_cflags': '-g0', },
2778 ['OS=="android" and fastbuild==1', {
2779 # TODO(thakis): Change this to -g1 once http://crbug.com/456947 is
2781 'variables': { 'release_extra_cflags': '-g0', },
2785 ['dont_embed_build_metadata==1', {
2787 'DONT_EMBED_BUILD_METADATA',
2789 }], # dont_embed_build_metadata==1
2790 ['dcheck_always_on!=0', {
2791 'defines': ['DCHECK_ALWAYS_ON=1'],
2792 }], # dcheck_always_on!=0
2793 ['tracing_like_official_build!=0', {
2794 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'],
2795 }], # tracing_like_official_build!=0
2797 'defines': ['NO_TCMALLOC'],
2799 ['win_use_allocator_shim==1', {
2800 'defines': ['ALLOCATOR_SHIM'],
2806 'ADDRESS_SANITIZER',
2807 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2808 'MEMORY_SANITIZER_INITIAL_SIZE',
2812 # SyzyAsan needs /PROFILE turned on to produce appropriate pdbs.
2820 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2821 'MEMORY_SANITIZER_INITIAL_SIZE',
2829 '<(DEPTH)/third_party/kasko/include',
2835 '_CRT_SECURE_NO_DEPRECATE',
2836 '_SCL_SECURE_NO_DEPRECATE',
2837 # This define is required to pull in the new Win8 interfaces from
2838 # system headers like ShObjIdl.h.
2839 'NTDDI_VERSION=0x06030000',
2840 # This is required for ATL to use XP-safe versions of its functions.
2841 '_USING_V110_SDK71_',
2844 '<(DEPTH)/third_party/wtl/include',
2849 # Generates debug info when win_z7=1
2850 # even if fastbuild=1 (that makes GenerateDebugInformation false).
2852 'GenerateDebugInformation': 'true',
2854 'VCCLCompilerTool': {
2855 'DebugInformationFormat': '1',
2861 # This is prohibited when running /analyze.
2862 '_USING_V110_SDK71_',
2865 'VCCLCompilerTool': {
2866 # Set WarnAsError to false to disable this setting for most
2867 # projects so that compilation continues.
2868 'WarnAsError': 'false',
2869 # When win_analyze is specified add the /analyze switch.
2870 # Also add /WX- to force-disable WarnAsError for projects that
2871 # override WarnAsError.
2872 # Also, disable various noisy warnings that have low value.
2873 'AdditionalOptions': [
2876 '/wd6011', # Dereferencing NULL pointer
2877 '/wd6312', # Possible infinite loop: use of the constant
2878 # EXCEPTION_CONTINUE_EXECUTION in the exception-filter
2879 '/wd6326', # Potential comparison of constant with constant
2880 '/wd28159', # Consider using 'GetTickCount64'
2881 '/wd28204', # Inconsistent SAL annotations
2882 '/wd28251', # Inconsistent SAL annotations
2883 '/wd28252', # Inconsistent SAL annotations
2884 '/wd28253', # Inconsistent SAL annotations
2885 '/wd28196', # The precondition is not satisfied
2886 '/wd28301', # Inconsistent SAL annotations
2887 '/wd6340', # Sign mismatch in function parameter
2888 '/wd28182', # Dereferencing NULL pointer
2889 # C6285 is ~16% of raw warnings and has low value
2890 '/wd6285', # non-zero constant || non-zero constant
2891 # C6334 is ~80% of raw warnings and has low value
2892 '/wd6334', # sizeof applied to an expression with an operator
2904 ['use_playready==1', {
2906 'PLAYREADY_CDM_AVAILABLE',
2911 ['enable_task_manager==1', {
2913 'ENABLE_TASK_MANAGER=1',
2916 ['enable_extensions==1', {
2918 'ENABLE_EXTENSIONS=1',
2921 ['OS=="win" and branding=="Chrome"', {
2922 'defines': ['ENABLE_SWIFTSHADER'],
2924 ['enable_dart==1', {
2925 'defines': ['WEBKIT_USING_DART=1'],
2927 ['enable_plugin_installation==1', {
2928 'defines': ['ENABLE_PLUGIN_INSTALLATION=1'],
2930 ['enable_plugins==1', {
2931 'defines': ['ENABLE_PLUGINS=1'],
2933 ['enable_session_service==1', {
2934 'defines': ['ENABLE_SESSION_SERVICE=1'],
2936 ['enable_themes==1', {
2937 'defines': ['ENABLE_THEMES=1'],
2939 ['enable_autofill_dialog==1', {
2940 'defines': ['ENABLE_AUTOFILL_DIALOG=1'],
2942 ['enable_prod_wallet_service==1', {
2943 'defines': ['ENABLE_PROD_WALLET_SERVICE=1'],
2945 ['enable_background==1', {
2946 'defines': ['ENABLE_BACKGROUND=1'],
2948 ['enable_google_now==1', {
2949 'defines': ['ENABLE_GOOGLE_NOW=1'],
2951 ['cld_version!=0', {
2952 'defines': ['CLD_VERSION=<(cld_version)'],
2954 ['enable_basic_printing==1 or enable_print_preview==1', {
2955 # Convenience define for ENABLE_BASIC_PRINTING || ENABLE_PRINT_PREVIEW.
2956 'defines': ['ENABLE_PRINTING=1'],
2958 ['enable_basic_printing==1', {
2959 # Enable basic printing support and UI.
2960 'defines': ['ENABLE_BASIC_PRINTING=1'],
2962 ['enable_print_preview==1', {
2963 # Enable printing with print preview.
2964 # Can be defined without ENABLE_BASIC_PRINTING.
2965 'defines': ['ENABLE_PRINT_PREVIEW=1'],
2967 ['enable_spellcheck==1', {
2968 'defines': ['ENABLE_SPELLCHECK=1'],
2970 ['enable_captive_portal_detection==1', {
2971 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
2973 ['enable_app_list==1', {
2974 'defines': ['ENABLE_APP_LIST=1'],
2976 ['enable_settings_app==1', {
2977 'defines': ['ENABLE_SETTINGS_APP=1'],
2979 ['disable_file_support==1', {
2980 'defines': ['DISABLE_FILE_SUPPORT=1'],
2982 ['disable_ftp_support==1', {
2983 'defines': ['DISABLE_FTP_SUPPORT=1'],
2985 ['enable_supervised_users==1', {
2986 'defines': ['ENABLE_SUPERVISED_USERS=1'],
2988 ['spdy_proxy_auth_property != ""', {
2989 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
2991 ['spdy_proxy_auth_value != ""', {
2992 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'],
2994 ['enable_mdns==1', {
2995 'defines': ['ENABLE_MDNS=1'],
2997 ['enable_service_discovery==1', {
2998 'defines' : [ 'ENABLE_SERVICE_DISCOVERY=1' ],
3000 ['enable_wifi_bootstrapping==1', {
3001 'defines' : [ 'ENABLE_WIFI_BOOTSTRAPPING=1' ],
3003 ['enable_hangout_services_extension==1', {
3004 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'],
3006 ['enable_ipc_fuzzer==1', {
3007 'defines': ['ENABLE_IPC_FUZZER=1'],
3010 'defines': ['VIDEO_HOLE=1'],
3012 ['v8_use_external_startup_data==1', {
3013 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA'],
3015 ], # conditions for 'target_defaults'
3016 'target_conditions': [
3017 ['<(use_libpci)==1', {
3018 'defines': ['USE_LIBPCI=1'],
3020 ['<(use_openssl)==1', {
3021 'defines': ['USE_OPENSSL=1'],
3023 ['<(use_openssl_certs)==1', {
3024 'defines': ['USE_OPENSSL_CERTS=1'],
3026 ['>(nacl_untrusted_build)==1', {
3029 'USE_OPENSSL_CERTS=1',
3032 ['<(use_glib)==1 and >(nacl_untrusted_build)==0', {
3033 'defines': ['USE_GLIB=1'],
3035 ['<(use_nss)==1 and >(nacl_untrusted_build)==0', {
3036 'defines': ['USE_NSS=1'],
3038 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', {
3039 'defines': ['OS_CHROMEOS=1'],
3041 ['enable_wexit_time_destructors==1 and OS!="win"', {
3042 # TODO: Enable on Windows too, http://crbug.com/404525
3043 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']},
3045 ['chromium_code==0', {
3047 [ 'os_posix==1 and OS!="mac" and OS!="ios"', {
3048 # We don't want to get warnings from third-party code,
3049 # so remove any existing warning-enabling flags like -Wall.
3055 # Don't warn about hash_map in third-party code.
3059 # Don't warn about printf format problems.
3060 # This is off by default in gcc but on in Ubuntu's gcc(!).
3064 # Necessary because llvm.org/PR10448 is WONTFIX (crbug.com/90453).
3068 # TODO: Fix all warnings on chromeos too.
3069 [ 'os_posix==1 and OS!="mac" and OS!="ios" and (clang!=1 or chromeos==1)', {
3074 [ 'os_posix==1 and os_bsd!=1 and OS!="mac" and OS!="android"', {
3076 # Don't warn about ignoring the return value from e.g. close().
3077 # This is off by default in some gccs but on by default in others.
3078 # BSD systems do not support this option, since they are usually
3079 # using gcc 4.2.1, which does not have this flag yet.
3080 '-Wno-unused-result',
3085 '_CRT_SECURE_NO_DEPRECATE',
3086 '_CRT_NONSTDC_NO_WARNINGS',
3087 '_CRT_NONSTDC_NO_DEPRECATE',
3088 '_SCL_SECURE_NO_DEPRECATE',
3090 'msvs_disabled_warnings': [
3091 # These are variable shadowing warnings that are new in VS2015.
3092 # We should probably work through these at some point for
3093 # non-chromium code, but for now, focus on chromium_code==1 code.
3094 4456, 4457, 4458, 4459,
3099 'VCCLCompilerTool': {
3100 'WarningLevel': '3',
3101 'WarnAsError': 'true',
3102 'Detect64BitPortabilityProblems': 'false',
3106 ['buildtype=="Official"', {
3108 'VCCLCompilerTool': { 'WarnAsError': 'false' },
3111 [ 'component=="shared_library"', {
3112 # TODO(darin): Unfortunately, some third_party code depends on base.
3113 'msvs_disabled_warnings': [
3114 4251, # class 'std::xx' needs to have dll-interface.
3120 [ 'OS=="mac" or OS=="ios"', {
3122 'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
3125 ['buildtype=="Official"', {
3127 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror
3134 # TODO(ios): Fix remaining warnings in third-party code, then
3135 # remove this; the Mac cleanup didn't get everything that's
3136 # flagged in an iOS build.
3137 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',
3138 'RUN_CLANG_STATIC_ANALYZER': 'NO',
3139 # Several internal ios directories generate numerous warnings for
3140 # -Wobjc-missing-property-synthesis.
3141 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
3147 # Rules for excluding e.g. foo_win.cc from the build on non-Windows.
3148 'filename_rules.gypi',
3150 # In Chromium code, we define __STDC_foo_MACROS in order to get the
3151 # C99 macros on Mac and Linux.
3153 '__STDC_CONSTANT_MACROS',
3154 '__STDC_FORMAT_MACROS',
3158 # turn on warnings for signed/unsigned mismatch on chromium code.
3160 'VCCLCompilerTool': {
3161 'AdditionalOptions': ['/we4389'],
3165 ['OS=="win" and component=="shared_library"', {
3166 'msvs_disabled_warnings': [
3167 4251, # class 'std::xx' needs to have dll-interface.
3172 ], # target_conditions for 'target_defaults'
3173 'default_configuration': 'Debug',
3175 # VCLinkerTool LinkIncremental values below:
3177 # 1 == /INCREMENTAL:NO
3179 # Debug links incremental, Release does not.
3181 # Abstract base configurations to cover common attributes.
3185 'msvs_configuration_attributes': {
3186 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(ConfigurationName)',
3187 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
3188 'CharacterSet': '1',
3190 # Add the default import libs.
3193 'AdditionalDependencies': [
3210 'AdditionalOptions': [
3211 # Suggested by Microsoft Devrel to avoid
3212 # LINK : fatal error LNK1248: image size (80000000) exceeds maximum allowable size (80000000)
3213 # which started happening more regularly after VS2013 Update 4.
3214 # Needs to be a bit lower for VS2015, or else errors out.
3215 '/maxilksize:0x7ff00000',
3224 'MinimumRequiredVersion': '5.01', # XP.
3225 'TargetMachine': '1',
3227 'VCLibrarianTool': {
3228 'TargetMachine': '1',
3231 'msvs_configuration_platform': 'Win32',
3235 'msvs_configuration_platform': 'x64',
3238 # Make sure to understand http://crbug.com/361720 if you want to
3240 'MinimumRequiredVersion': '5.02', # Server 2003.
3241 'TargetMachine': '17', # x86 - 64
3242 'AdditionalLibraryDirectories!':
3243 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3244 'AdditionalLibraryDirectories':
3245 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3246 # Doesn't exist x64 SDK. Should use oleaut32 in any case.
3247 'IgnoreDefaultLibraryNames': [ 'olepro32.lib' ],
3249 'VCLibrarianTool': {
3250 'AdditionalLibraryDirectories!':
3251 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3252 'AdditionalLibraryDirectories':
3253 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3254 'TargetMachine': '17', # x64
3261 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3262 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3265 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)',
3267 '<@(debug_extra_cflags)',
3271 'VCCLCompilerTool': {
3272 'Optimization': '<(win_debug_Optimization)',
3273 'PreprocessorDefinitions': ['_DEBUG'],
3274 'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)',
3275 'RuntimeLibrary': '<(win_debug_RuntimeLibrary)',
3277 # According to MSVS, InlineFunctionExpansion=0 means
3278 # "default inlining", not "/Ob0".
3279 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3280 ['win_debug_InlineFunctionExpansion==0', {
3281 'AdditionalOptions': ['/Ob0'],
3283 ['win_debug_InlineFunctionExpansion!=""', {
3284 'InlineFunctionExpansion':
3285 '<(win_debug_InlineFunctionExpansion)',
3287 ['win_debug_disable_iterator_debugging==1', {
3288 'PreprocessorDefinitions': ['_HAS_ITERATOR_DEBUGGING=0'],
3291 # if win_debug_OmitFramePointers is blank, leave as default
3292 ['win_debug_OmitFramePointers==1', {
3293 'OmitFramePointers': 'true',
3295 ['win_debug_OmitFramePointers==0', {
3296 'OmitFramePointers': 'false',
3297 # The above is not sufficient (http://crbug.com/106711): it
3298 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3299 # perform FPO regardless, so we must explicitly disable.
3300 # We still want the false setting above to avoid having
3301 # "/Oy /Oy-" and warnings about overriding.
3302 'AdditionalOptions': ['/Oy-'],
3305 'AdditionalOptions': [ '<@(win_debug_extra_cflags)', ],
3308 'LinkIncremental': '<(msvs_debug_link_incremental)',
3309 # ASLR makes debugging with windbg difficult because Chrome.exe and
3310 # Chrome.dll share the same base name. As result, windbg will
3311 # name the Chrome.dll module like chrome_<base address>, where
3312 # <base address> typically changes with each launch. This in turn
3313 # means that breakpoints in Chrome.dll don't stick from one launch
3314 # to the next. For this reason, we turn ASLR off in debug builds.
3315 # Note that this is a three-way bool, where 0 means to pick up
3316 # the default setting, 1 is off and 2 is on.
3317 'RandomizedBaseAddress': 1,
3319 'VCResourceCompilerTool': {
3320 'PreprocessorDefinitions': ['_DEBUG'],
3324 ['OS=="linux" or OS=="android"', {
3325 'target_conditions': [
3326 ['_toolset=="target"', {
3328 '<@(debug_extra_cflags)',
3333 ['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', {
3334 # Enable libstdc++ debugging facilities to help catch problems
3335 # early, see http://crbug.com/65151 .
3336 # TODO(phajdan.jr): Should we enable this for all of POSIX?
3337 'defines': ['_GLIBCXX_DEBUG=1',],
3339 ['release_valgrind_build==0', {
3342 '-fstack-protector-all', # Implies -fstack-protector
3348 # Allow comparing the address of references and 'this' against 0
3349 # in debug builds. Technically, these can never be null in
3350 # well-defined C/C++ and Clang can optimize such checks away in
3351 # release builds, but they may be used in asserts in debug builds.
3352 '-Wno-undefined-bool-conversion',
3353 '-Wno-tautological-undefined-compare',
3357 '-Wno-undefined-bool-conversion',
3358 '-Wno-tautological-undefined-compare',
3362 'VCCLCompilerTool': {
3363 'AdditionalOptions': [
3364 '-Wno-undefined-bool-conversion',
3365 '-Wno-tautological-undefined-compare',
3378 'DEAD_CODE_STRIPPING': 'YES', # -Wl,-dead_strip
3379 'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)',
3380 'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ],
3383 'VCCLCompilerTool': {
3384 'RuntimeLibrary': '<(win_release_RuntimeLibrary)',
3386 # In official builds, each target will self-select
3387 # an optimization level.
3388 ['buildtype!="Official"', {
3389 'Optimization': '<(win_release_Optimization)',
3392 # According to MSVS, InlineFunctionExpansion=0 means
3393 # "default inlining", not "/Ob0".
3394 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3395 ['win_release_InlineFunctionExpansion==0', {
3396 'AdditionalOptions': ['/Ob0'],
3398 ['win_release_InlineFunctionExpansion!=""', {
3399 'InlineFunctionExpansion':
3400 '<(win_release_InlineFunctionExpansion)',
3403 # if win_release_OmitFramePointers is blank, leave as default
3404 ['win_release_OmitFramePointers==1', {
3405 'OmitFramePointers': 'true',
3407 ['win_release_OmitFramePointers==0', {
3408 'OmitFramePointers': 'false',
3409 # The above is not sufficient (http://crbug.com/106711): it
3410 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3411 # perform FPO regardless, so we must explicitly disable.
3412 # We still want the false setting above to avoid having
3413 # "/Oy /Oy-" and warnings about overriding.
3414 'AdditionalOptions': ['/Oy-'],
3417 # Put data in separate COMDATs. This allows the linker
3418 # to put bit-identical constants at the same address even if
3419 # they're unrelated constants, which saves binary size.
3420 # This optimization can't be used when ASan is enabled because
3421 # it is not compatible with the ASan ODR checker.
3422 'AdditionalOptions': ['/Gw'],
3425 'AdditionalOptions': [
3426 '/d2Zi+', # Improve debugging of Release builds.
3427 '/Zc:inline', # Remove unreferenced COMDAT (faster links).
3428 '<@(win_release_extra_cflags)',
3432 # LinkIncremental is a tri-state boolean, where 0 means default
3433 # (i.e., inherit from parent solution), 1 means false, and
3435 'LinkIncremental': '1',
3436 # This corresponds to the /PROFILE flag which ensures the PDB
3437 # file contains FIXUP information (growing the PDB file by about
3438 # 5%) but does not otherwise alter the output binary. This
3439 # information is used by the Syzygy optimization tool when
3440 # decomposing the release image.
3445 ['msvs_use_common_release', {
3446 'includes': ['release.gypi'],
3448 ['release_valgrind_build==0 and tsan==0', {
3451 'DYNAMIC_ANNOTATIONS_ENABLED=0',
3455 'MEMORY_TOOL_REPLACES_ALLOCATOR',
3456 'MEMORY_SANITIZER_INITIAL_SIZE',
3457 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3458 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3462 'defines': ['NO_TCMALLOC'],
3464 # _FORTIFY_SOURCE isn't really supported by Clang now, see
3465 # http://llvm.org/bugs/show_bug.cgi?id=16821.
3466 # It seems to work fine with Ubuntu 12 headers though, so use it
3467 # in official builds.
3468 ['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")', {
3469 'target_conditions': [
3470 ['chromium_code==1', {
3471 # Non-chromium code is not guaranteed to compile cleanly
3472 # with _FORTIFY_SOURCE. Also, fortified build may fail
3473 # when optimizations are disabled, so only do that for Release
3476 '_FORTIFY_SOURCE=2',
3481 ['OS=="linux" or OS=="android"', {
3482 'target_conditions': [
3483 ['_toolset=="target"', {
3485 '<@(release_extra_cflags)',
3488 ['enable_resource_whitelist_generation==1', {
3490 '-Wunknown-pragmas -Wno-error=unknown-pragmas',
3499 'NS_BLOCK_ASSERTIONS=1',
3505 # Concrete configurations
3508 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'],
3511 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3516 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3517 'target_conditions': [
3518 [ '_type=="executable"', {
3519 # To get a real .dSYM bundle produced by dsymutil, set the
3520 # debug information format to dwarf-with-dsym. Since
3521 # strip_from_xcode will not be used, set Xcode to do the
3522 # stripping as well.
3524 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
3525 'DEPLOYMENT_POSTPROCESSING': 'YES',
3526 'STRIP_INSTALLED_PRODUCT': 'YES',
3533 # TODO(bradnelson): add a gyp mechanism to make this more graceful.
3535 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'],
3538 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'],
3546 'target_defaults': {
3551 # TODO(glider): enable the default options on other systems.
3553 ['use_sanitizer_options==1 and ((OS=="linux" and (chromeos==0 or target_arch!="ia32")) or OS=="mac")', {
3555 '<(DEPTH)/build/sanitizers/sanitizers.gyp:sanitizer_options',
3561 # TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580
3562 ['os_posix==1 and disable_fatal_linker_warnings==0 and use_evdev_gestures==0 and (chromeos==0 or target_arch!="arm")', {
3563 'target_defaults': {
3565 '-Wl,--fatal-warnings',
3569 # -Wl,-z,-defs doesn't work with the sanitiziers, http://crbug.com/452065
3570 ['(OS=="linux" or OS=="android") and asan==0 and msan==0 and tsan==0 and ubsan==0 and ubsan_vptr==0', {
3571 'target_defaults': {
3577 ['os_posix==1 and chromeos==0', {
3578 # Chrome OS enables -fstack-protector-strong via its build wrapper,
3579 # and we want to avoid overriding this, so stack-protector is only
3580 # enabled when not building on Chrome OS.
3581 # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc
3583 'target_defaults': {
3585 '-fstack-protector',
3586 '--param=ssp-buffer-size=4',
3590 ['os_posix==1 and OS!="mac" and OS!="ios"', {
3591 'target_defaults': {
3592 # Enable -Werror by default, but put it in a variable so it can
3593 # be disabled in ~/.gyp/include.gypi on the valgrind builders.
3595 'werror%': '-Werror',
3596 'libraries_for_target%': '',
3599 '_FILE_OFFSET_BITS=64',
3602 '<(werror)', # See note above about the werror variable.
3604 '-fno-strict-aliasing', # See http://crbug.com/32204
3606 # Don't warn about unused function params. We use those everywhere.
3607 '-Wno-unused-parameter',
3608 # Don't warn about the "struct foo f = {0};" initialization pattern.
3609 '-Wno-missing-field-initializers',
3610 # Don't export any symbols (for example, to plugins we dlopen()).
3611 # Note: this is *required* to make some plugins work.
3612 '-fvisibility=hidden',
3618 '-fno-threadsafe-statics',
3619 # Make inline functions have hidden visiblity by default.
3620 # Surprisingly, not covered by -fvisibility=hidden.
3621 '-fvisibility-inlines-hidden',
3622 # GCC turns on -Wsign-compare for C++ under -Wall, but clang doesn't,
3623 # so we specify it explicitly. (llvm.org/PR10448, crbug.com/90453)
3627 '-pthread', '-Wl,-z,noexecstack',
3630 '<(libraries_for_target)',
3635 'debug_optimize%': '0',
3641 '-O>(debug_optimize)',
3646 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3647 # TODO(jdduke) Re-enable on mips after resolving linking
3648 # issues with libc++ (crbug.com/456380).
3650 # Warn in case of text relocations.
3651 '-Wl,--warn-shared-textrel',
3654 ['OS=="android" and android_full_debug==0', {
3655 # Some configurations are copied from Release_Base to reduce
3658 'debug_optimize%': 's',
3662 '-ffunction-sections',
3669 ['OS=="android" and android_full_debug==0 and target_arch!="arm64"', {
3670 # We don't omit frame pointers on arm64 since they are required
3671 # to correctly unwind stackframes which contain system library
3672 # function frames (crbug.com/391706).
3674 '-fomit-frame-pointer',
3677 ['OS=="linux" and target_arch=="ia32"', {
3679 '-Wl,--no-as-needed',
3682 ['debug_unwind_tables==1', {
3683 'cflags': ['-funwind-tables'],
3685 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3686 'defines': ['NO_UNWIND_TABLES'],
3688 # TODO(mostynb): shuffle clang/gcc_version/binutils_version
3689 # definitions in to the right scope to use them when setting
3690 # linux_use_debug_fission, so it can be used here alone.
3691 ['linux_use_debug_fission==1 and linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
3692 'cflags': ['-gsplit-dwarf'],
3698 'release_optimize%': '2',
3699 # Binaries become big and gold is unable to perform GC
3700 # and remove unused sections for some of test targets
3701 # on 32 bit platform.
3702 # (This is currently observed only in chromeos valgrind bots)
3703 # The following flag is to disable --gc-sections linker
3704 # option for these bots.
3705 'no_gc_sections%': 0,
3707 # TODO(bradnelson): reexamine how this is done if we change the
3708 # expansion of configurations
3709 'release_valgrind_build%': 0,
3712 '-O<(release_optimize)',
3713 # Don't emit the GCC version ident directives, they just end up
3714 # in the .comment section taking up binary size.
3716 # Put data and code in their own sections, so that unused symbols
3717 # can be removed at link time with --gc-sections.
3719 '-ffunction-sections',
3722 # Specifically tell the linker to perform optimizations.
3723 # See http://lwn.net/Articles/192624/ .
3728 ['no_gc_sections==0', {
3730 '-Wl,--gc-sections',
3733 ['OS=="android" and target_arch!="arm64"', {
3734 # We don't omit frame pointers on arm64 since they are required
3735 # to correctly unwind stackframes which contain system library
3736 # function frames (crbug.com/391706).
3738 '-fomit-frame-pointer',
3741 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', {
3742 # TODO(jdduke) Re-enable on mips after resolving linking
3743 # issues with libc++ (crbug.com/456380).
3745 # Warn in case of text relocations.
3746 '-Wl,--warn-shared-textrel',
3751 'release_optimize%': 's',
3756 '-fno-omit-frame-pointer',
3760 ['profiling_full_stack_frames==1', {
3763 '-fno-optimize-sibling-calls',
3768 ['release_unwind_tables==1', {
3769 'cflags': ['-funwind-tables'],
3771 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3772 'defines': ['NO_UNWIND_TABLES'],
3778 ['target_arch=="ia32"', {
3779 'target_conditions': [
3780 ['_toolset=="target"', {
3782 # Needed so that libs with .s files (e.g. libicudata.a)
3783 # are compatible with the general 32-bit-ness.
3786 # All floating-point computations on x87 happens in 80-bit
3787 # precision. Because the C and C++ language standards allow
3788 # the compiler to keep the floating-point values in higher
3789 # precision than what's specified in the source and doing so
3790 # is more efficient than constantly rounding up to 64-bit or
3791 # 32-bit precision as specified in the source, the compiler,
3792 # especially in the optimized mode, tries very hard to keep
3793 # values in x87 floating-point stack (in 80-bit precision)
3794 # as long as possible. This has important side effects, that
3795 # the real value used in computation may change depending on
3796 # how the compiler did the optimization - that is, the value
3797 # kept in 80-bit is different than the value rounded down to
3798 # 64-bit or 32-bit. There are possible compiler options to
3799 # make this behavior consistent (e.g. -ffloat-store would keep
3800 # all floating-values in the memory, thus force them to be
3801 # rounded to its original precision) but they have significant
3802 # runtime performance penalty.
3804 # -mfpmath=sse -msse2 makes the compiler use SSE instructions
3805 # which keep floating-point values in SSE registers in its
3806 # native precision (32-bit for single precision, and 64-bit
3807 # for double precision values). This means the floating-point
3808 # value used during computation does not change depending on
3809 # how the compiler optimized the code, since the value is
3810 # always kept in its specified precision.
3812 # Refer to http://crbug.com/348761 for rationale behind SSE2
3813 # being a minimum requirement for 32-bit Linux builds and
3814 # http://crbug.com/313032 for an example where this has "bit"
3819 '-mmmx', # Allows mmintrin.h for MMX intrinsics.
3826 # Use gold linker for Android ia32 target.
3832 # Install packages have started cropping up with
3833 # different headers between the 32-bit and 64-bit
3834 # versions, so we have to shadow those differences off
3835 # and make sure a 32-bit-on-64-bit build picks up the
3837 # For android build, use NDK headers instead of host headers
3838 ['host_arch!="ia32" and OS!="android"', {
3847 ['target_arch=="x64"', {
3848 'target_conditions': [
3849 ['_toolset=="target"', {
3851 # Use gold linker for Android x64 target.
3868 ['target_arch=="arm"', {
3869 'target_conditions': [
3870 ['_toolset=="target"', {
3874 # The codesourcery arm-2009q3 toolchain warns at that the ABI
3875 # has changed whenever it encounters a varargs function. This
3876 # silences those warnings, as they are not helpful and
3877 # clutter legitimate warnings.
3881 ['clang==1 and arm_arch!="" and OS!="android"', {
3883 '-target arm-linux-gnueabihf',
3886 '-target arm-linux-gnueabihf',
3891 '-march=<(arm_arch)',
3894 ['use_lto==1 or use_lto_o2==1', {
3896 '-march=<(arm_arch)',
3901 ['clang==1 and OS!="android"', {
3903 # We need to disable clang's builtin assembler as it can't
3904 # handle several asm files, crbug.com/124610
3905 '-no-integrated-as',
3910 '-mtune=<(arm_tune)',
3913 ['use_lto==1 or use_lto_o2==1', {
3915 '-mtune=<(arm_tune)',
3925 ['use_lto==1 or use_lto_o2==1', {
3932 ['arm_float_abi!=""', {
3934 '-mfloat-abi=<(arm_float_abi)',
3937 ['use_lto==1 or use_lto_o2==1', {
3939 '-mfloat-abi=<(arm_float_abi)',
3949 ['use_lto==1 or use_lto_o2==1', {
3957 # Most of the following flags are derived from what Android
3958 # uses by default when building for arm, reference for which
3959 # can be found in the following file in the Android NDK:
3960 # toolchains/arm-linux-androideabi-4.9/setup.mk
3962 # The tree-sra optimization (scalar replacement for
3963 # aggregates enabling subsequent optimizations) leads to
3964 # invalid code generation when using the Android NDK's
3965 # compiler (r5-r7). This can be verified using
3966 # webkit_unit_tests' WTF.Checked_int8_t test.
3968 # The following option is disabled to improve binary
3969 # size and performance in gcc 4.9.
3970 '-fno-caller-saves',
3973 # Android now supports .relro sections properly.
3974 # NOTE: While these flags enable the generation of .relro
3975 # sections, the generated libraries can still be loaded on
3976 # older Android platform versions.
3983 ['gcc_version==48 and clang==0', {
3985 # The following 5 options are disabled to save on
3986 # binary size in GCC 4.8.
3987 '-fno-partial-inlining',
3988 '-fno-early-inlining',
3989 '-fno-tree-copy-prop',
3990 '-fno-tree-loop-optimize',
3991 '-fno-move-loop-invariants',
3995 'cflags': [ '-mthumb-interwork' ],
3999 # Thumb code with frame pointer makes chrome crash
4002 '-mapcs-frame', # Required by -fno-omit-frame-pointer.
4003 # The perf report sometimes incorrectly attributes
4004 # code from tail calls.
4005 '-fno-optimize-sibling-calls',
4008 '-fomit-frame-pointer',
4013 # Clang does not support the following options.
4015 '-mthumb-interwork',
4016 '-finline-limit=64',
4018 '-fno-caller-saves',
4022 # TODO(hans) Enable integrated-as (crbug.com/124610).
4023 '-no-integrated-as',
4024 '-B<(android_toolchain)', # Else /usr/bin/as gets picked up.
4027 # Let clang find the ld.gold in the NDK.
4028 '--gcc-toolchain=<(android_toolchain)/..',
4033 '-marm', # Required for frame pointer based stack traces.
4040 # We set arm_arch to "" so that -march compiler option
4041 # is not set. Otherwise a gcc bug that would complain
4042 # about it conflicting with '-mcpu=cortex-a9'. The flag
4043 # '-march=armv7-a' is actually redundant anyway because
4044 # it is enabled by default when we built the toolchain.
4045 # And using '-mcpu=cortex-a9' should be sufficient.
4048 # Breakpad requires symbols with debugging information
4052 # We want to statically link libstdc++/libgcc_s.
4053 '-static-libstdc++',
4057 # Some components in Chromium (e.g. v8, skia, ffmpeg)
4058 # define their own cflags for arm builds that could
4059 # conflict with the flags we set here (e.g.
4060 # '-mcpu=cortex-a9'). Remove these flags explicitly.
4069 ['target_arch=="arm64"', {
4070 'target_conditions': [
4071 ['_toolset=="target"', {
4075 '-fstack-protector', # stack protector is always enabled on arm64.
4078 # TODO: Remove webview test once webview fully compiles from
4079 # Chromium. crbug.com/440793
4080 ['OS=="android" and android_webview_build==0', {
4089 ['target_arch=="mipsel"', {
4090 'target_conditions': [
4091 ['_toolset=="target"', {
4093 ['android_webview_build==0', {
4095 ['mips_arch_variant=="r6"', {
4096 'cflags': ['-mips32r6', '-Wa,-mips32r6'],
4099 'ldflags': ['-mips32r6', '-Wl,-melf32ltsmip',],
4103 ['mips_arch_variant=="r2"', {
4104 'cflags': ['-mips32r2', '-Wa,-mips32r2'],
4106 ['mips_float_abi=="hard" and mips_fpu_mode!=""', {
4107 'cflags': ['-m<(mips_fpu_mode)'],
4111 ['mips_arch_variant=="r1"', {
4112 'cflags': ['-mips32', '-Wa,-mips32'],
4114 ['mips_dsp_rev==1', {
4115 'cflags': ['-mdsp'],
4117 ['mips_dsp_rev==2', {
4118 'cflags': ['-mdspr2'],
4122 '-m<(mips_float_abi)-float'
4127 '-Wl,--no-keep-memory'
4130 '-Wno-uninitialized',
4135 ['target_arch=="mips64el"', {
4136 'target_conditions': [
4137 ['_toolset=="target"', {
4139 ['android_webview_build==0', {
4141 ['mips_arch_variant=="r6"', {
4142 'cflags': ['-mips64r6', '-Wa,-mips64r6'],
4143 'ldflags': ['-mips64r6'],
4145 ['mips_arch_variant=="r2"', {
4146 'cflags': ['-mips64r2', '-Wa,-mips64r2'],
4147 'ldflags': ['-mips64r2'],
4153 '-Wno-uninitialized',
4167 'target_conditions': [
4168 ['_toolset=="target"', {
4170 '--sysroot=<(sysroot)',
4173 '--sysroot=<(sysroot)',
4174 '<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))',
4180 # TODO(thakis): Remove, http://crbug.com/263960
4181 '-Wno-reserved-user-defined-literal',
4184 # gnu++11 instead of c++11 is needed because some code uses
4185 # typeof() (a GNU extension).
4186 # TODO(thakis): Eventually switch this to c++11 instead,
4187 # http://crbug.com/427584
4191 ['clang==0 and host_clang==1', {
4192 'target_conditions': [
4193 ['_toolset=="host"', {
4194 'cflags_cc': [ '-std=gnu++11', ],
4198 ['clang==1 and clang_use_chrome_plugins==1', {
4200 '<@(clang_chrome_plugins_flags)',
4203 ['clang==1 and clang_load!=""', {
4205 '-Xclang', '-load', '-Xclang', '<(clang_load)',
4208 ['clang==1 and clang_add_plugin!=""', {
4210 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
4213 ['clang==1 and target_arch=="ia32"', {
4215 # Else building libyuv gives clang's register allocator issues,
4216 # see llvm.org/PR15798 / crbug.com/233709
4217 '-momit-leaf-frame-pointer',
4218 # Align the stack on 16-byte boundaries, http://crbug.com/418554.
4219 '-mstack-alignment=16',
4223 ['clang==1 and "<(GENERATOR)"=="ninja"', {
4225 # See http://crbug.com/110262
4226 '-fcolor-diagnostics',
4229 # Common options for AddressSanitizer, LeakSanitizer,
4230 # ThreadSanitizer and MemorySanitizer.
4231 ['asan==1 or lsan==1 or tsan==1 or msan==1 or ubsan==1 or ubsan_vptr==1', {
4232 'target_conditions': [
4233 ['_toolset=="target"', {
4235 '-fno-omit-frame-pointer',
4236 '-gline-tables-only',
4239 '-fomit-frame-pointer',
4244 ['asan==1 or lsan==1 or tsan==1 or msan==1', {
4245 'target_conditions': [
4246 ['_toolset=="target"', {
4248 # Functions interposed by the sanitizers can make ld think
4249 # that some libraries aren't needed when they actually are,
4250 # http://crbug.com/234010. As workaround, disable --as-needed.
4254 'MEMORY_TOOL_REPLACES_ALLOCATOR',
4255 'MEMORY_SANITIZER_INITIAL_SIZE',
4261 'target_conditions': [
4262 ['_toolset=="target"', {
4264 '-fsanitize=address',
4265 # TODO(earthdok): Re-enable. http://crbug.com/427202
4266 #'-fsanitize-blacklist=<(asan_blacklist)',
4269 '-fsanitize=address',
4276 '-mllvm -asan-globals=0', # http://crbug.com/352073
4282 'target_conditions': [
4283 ['_toolset=="target"', {
4285 '-fsanitize=undefined',
4286 '-fsanitize-blacklist=<(ubsan_blacklist)',
4287 # Employ the experimental PBQP register allocator to avoid
4288 # slow compilation on files with too many basic blocks.
4289 # See http://crbug.com/426271.
4290 '-mllvm -regalloc=pbqp',
4291 # Speculatively use coalescing to slightly improve the code
4292 # generated by PBQP regallocator. May increase compile time.
4293 '-mllvm -pbqp-coalescing',
4302 '-fsanitize=undefined',
4305 'UNDEFINED_SANITIZER',
4311 'target_conditions': [
4312 ['_toolset=="target"', {
4315 '-fsanitize-blacklist=<(ubsan_blacklist)',
4327 'UNDEFINED_SANITIZER',
4332 ['asan_coverage!=0 and sanitizer_coverage==0', {
4333 'target_conditions': [
4334 ['_toolset=="target"', {
4336 '-fsanitize-coverage=<(asan_coverage)',
4339 'SANITIZER_COVERAGE',
4344 ['sanitizer_coverage!=0', {
4345 'target_conditions': [
4346 ['_toolset=="target"', {
4348 '-fsanitize-coverage=<(sanitizer_coverage)',
4351 'SANITIZER_COVERAGE',
4356 ['asan_field_padding!=0', {
4357 'target_conditions': [
4358 ['_toolset=="target"', {
4360 '-fsanitize-address-field-padding=<(asan_field_padding)',
4366 'target_conditions': [
4367 ['_toolset=="target"', {
4376 'WTF_USE_LEAK_SANITIZER=1',
4382 'target_conditions': [
4383 ['_toolset=="target"', {
4385 '-fsanitize=thread',
4386 '-fsanitize-blacklist=<(tsan_blacklist)',
4389 '-fsanitize=thread',
4393 'DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1',
4394 'WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1',
4400 'target_conditions': [
4401 ['_toolset=="target"', {
4403 '-fsanitize=memory',
4404 '-fsanitize-memory-track-origins=<(msan_track_origins)',
4405 '-fsanitize-blacklist=<(msan_blacklist)',
4408 '-fsanitize=memory',
4416 ['use_instrumented_libraries==1', {
4418 '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:instrumented_libraries',
4421 ['use_prebuilt_instrumented_libraries==1', {
4423 '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:prebuilt_instrumented_libraries',
4426 ['use_custom_libcxx==1', {
4428 '<(DEPTH)/buildtools/third_party/libc++/libc++.gyp:libcxx_proxy',
4431 ['order_profiling!=0 and (chromeos==1 or OS=="linux" or OS=="android")', {
4432 'target_conditions' : [
4433 # crazy_linker has an upstream gyp file we can't edit, and we
4434 # don't want to instrument it.
4435 ['_toolset=="target" and _target_name!="crazy_linker"', {
4437 '-finstrument-functions',
4438 # Allow mmx intrinsics to inline, so that the
4439 #0 compiler can expand the intrinsics.
4440 '-finstrument-functions-exclude-file-list=mmintrin.h',
4443 ['_toolset=="target" and OS=="android"', {
4445 # Avoids errors with current NDK:
4446 # "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"
4447 '-finstrument-functions-exclude-file-list=arm_neon.h,SaturatedArithmeticARM.h',
4452 ['linux_dump_symbols==1', {
4455 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0', {
4456 'target_conditions': [
4457 ['_toolset=="target"', {
4459 # Attempt to use less memory to prevent the linker from
4460 # running out of address space. Considering installing a
4461 # 64-bit kernel and switching to a 64-bit linker.
4462 '-Wl,--no-keep-memory',
4469 ['use_allocator!="tcmalloc"', {
4470 'defines': ['NO_TCMALLOC'],
4472 ['linux_use_gold_flags==1', {
4473 # Newer gccs and clangs support -fuse-ld, use the flag to force gold
4475 # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
4476 'ldflags': [ '-fuse-ld=gold', ],
4478 'target_conditions': [
4479 ['_toolset=="target"', {
4481 # Experimentation found that using four linking threads
4482 # saved ~20% of link time.
4483 # https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/281527606915bb36
4484 # Only apply this to the target linker, since the host
4485 # linker might not be gold, but isn't used much anyway.
4486 # TODO(raymes): Disable threading because gold is frequently
4487 # crashing on the bots: crbug.com/161942.
4489 # '-Wl,--thread-count=4',
4492 # TODO(thestig): Enable this for disabled cases.
4493 [ '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', {
4495 '-Wl,--detect-odr-violations',
4502 ['release_valgrind_build==0 and order_profiling==0', {
4503 'target_conditions': [
4504 ['_toolset=="target"', {
4506 '-Wl,--icf=<(gold_icf_level)',
4513 ['linux_use_bundled_binutils==1', {
4515 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4518 ['linux_use_bundled_gold==1', {
4519 # Put our binutils, which contains gold in the search path. We pass
4520 # the path to gold to the compiler. gyp leaves unspecified what the
4521 # cwd is when running the compiler, so the normal gyp path-munging
4522 # fails us. This hack gets the right path.
4524 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4527 # Some binutils 2.23 releases may or may not have new dtags enabled,
4528 # but they are all compatible with --disable-new-dtags,
4529 # because the new dynamic tags are not created by default.
4530 ['binutils_version>=223', {
4531 # Newer binutils don't set DT_RPATH unless you disable "new" dtags
4532 # and the new DT_RUNPATH doesn't work without --no-as-needed flag.
4533 # FIXME(mithro): Figure out the --as-needed/--no-as-needed flags
4534 # inside this file to allow usage of --no-as-needed and removal of
4537 '-Wl,--disable-new-dtags',
4540 ['gcc_version>=47 and clang==0', {
4541 'target_conditions': [
4542 ['_toolset=="target"', {
4545 # See comment for -Wno-c++11-narrowing.
4547 # TODO(thakis): Remove, http://crbug.com/263960
4548 '-Wno-literal-suffix',
4553 ['host_gcc_version>=47 and clang==0 and host_clang==0', {
4554 'target_conditions': [
4555 ['_toolset=="host"', {
4558 # See comment for -Wno-c++11-narrowing.
4560 # TODO(thakis): Remove, http://crbug.com/263960
4561 '-Wno-literal-suffix',
4569 # FreeBSD-specific options; note that most FreeBSD options are set above,
4572 'target_defaults': {
4574 '-Wl,--no-keep-memory',
4578 # Android-specific options; note that most are set above with Linux.
4581 # This is a unique identifier for a given build. It's used for
4582 # identifying various build artifacts corresponding to a particular
4583 # build of chrome (e.g. where to find archived symbols).
4584 'chrome_build_id%': '',
4586 # Figure this out early since it needs symbols from libgcc.a, so it
4587 # has to be before that in the set of libraries.
4588 ['component=="shared_library"', {
4589 'android_stlport_library': 'stlport_shared',
4591 'android_stlport_library': 'stlport_static',
4595 # Placing this variable here prevents from forking libvpx, used
4596 # by remoting. Remoting is off, so it needn't built,
4597 # so forking it's deps seems like overkill.
4598 # But this variable need defined to properly run gyp.
4599 # A proper solution is to have an OS==android conditional
4600 # in third_party/libvpx/libvpx.gyp to define it.
4601 'libvpx_path': 'lib/linux/arm',
4603 'target_defaults': {
4605 'release_extra_cflags%': '',
4607 # If we're using the components build, append "cr" to all shared
4608 # libraries to avoid naming collisions with android system library
4609 # versions with the same name (e.g. skia, icu).
4610 ['component=="shared_library"', {
4611 'android_product_extension': 'cr.so',
4613 'android_product_extension': 'so',
4617 'target_conditions': [
4618 ['_type=="shared_library"', {
4619 'product_extension': '<(android_product_extension)',
4622 # Settings for building device targets using Android's toolchain.
4623 # These are based on the setup.mk file from the Android NDK.
4625 # The NDK Android executable link step looks as follows:
4627 # $(TARGET_CRTBEGIN_DYNAMIC_O) <-- crtbegin.o
4628 # $(PRIVATE_OBJECTS) <-- The .o that we built
4629 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4630 # $(TARGET_LIBGCC) <-- libgcc.a
4631 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4632 # $(PRIVATE_LDLIBS) <-- System .so
4633 # $(TARGET_CRTEND_O) <-- crtend.o
4635 # For now the above are approximated for executables by adding
4636 # crtbegin.o to the end of the ldflags and 'crtend.o' to the end
4639 # The NDK Android shared library link step looks as follows:
4641 # $(PRIVATE_OBJECTS) <-- The .o that we built
4642 # -l,--whole-archive
4643 # $(PRIVATE_WHOLE_STATIC_LIBRARIES)
4644 # -l,--no-whole-archive
4645 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4646 # $(TARGET_LIBGCC) <-- libgcc.a
4647 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4648 # $(PRIVATE_LDLIBS) <-- System .so
4650 # For now, assume that whole static libraries are not needed.
4652 # For both executables and shared libraries, add the proper
4653 # libgcc.a to the start of libraries which puts it in the
4654 # proper spot after .o and .a files get linked in.
4656 # TODO: The proper thing to do longer-tem would be proper gyp
4657 # support for a custom link command line.
4658 ['_toolset=="target"', {
4660 '-pthread', # Not supported by Android toolchain.
4663 '-ffunction-sections',
4666 '-fstack-protector',
4668 '-finline-limit=64',
4669 '-Wa,--noexecstack',
4670 '<@(release_extra_cflags)',
4674 '__GNU_SOURCE=1', # Necessary for clone()
4676 '_STLP_USE_PTR_SPECIALIZATIONS=1',
4677 'CHROME_BUILD_ID="<(chrome_build_id)"',
4680 '-pthread', # Not supported by Android toolchain.
4683 '-Wl,--no-undefined',
4686 ['component=="static_library" and android_webview_build==0', {
4687 'target_conditions': [
4688 ['use_native_jni_exports==0', {
4689 # Use a linker version script to strip JNI exports from
4690 # binaries which have not specifically asked to use them.
4692 '-Wl,--version-script=<!(cd <(DEPTH) && pwd -P)/build/android/android_no_jni_exports.lst',
4699 # Work around incompatibilities between bionic and clang
4701 '-D__compiler_offsetof=__builtin_offsetof',
4702 '-Dnan=__builtin_nan',
4705 ['target_arch=="arm"', {
4707 '-target arm-linux-androideabi',
4710 '-target arm-linux-androideabi',
4713 ['target_arch=="ia32"', {
4715 '-target x86-linux-androideabi',
4718 '-target x86-linux-androideabi',
4721 # Place holder for x64 support, not tested.
4722 # TODO: Enable clang support for Android x64. http://crbug.com/346626
4723 ['target_arch=="x64"', {
4725 '-target x86_64-linux-androideabi',
4728 '-target x86_64-linux-androideabi',
4735 # Android build relies on -Wl,--gc-sections removing
4736 # unreachable code. ASan instrumentation for globals inhibits
4737 # this and results in a library with unresolvable relocations.
4738 # TODO(eugenis): find a way to reenable this.
4739 '-mllvm -asan-globals=0',
4742 ['android_webview_build==0', {
4744 # The NDK has these things, but doesn't define the constants
4745 # to say that it does. Define them here instead.
4749 '--sysroot=<(android_ndk_sysroot)',
4752 '--sysroot=<(android_ndk_sysroot)',
4754 # Don't allow visible symbols from libgcc or stlport to be
4756 '-Wl,--exclude-libs=libgcc.a',
4757 '-Wl,--exclude-libs=libstlport_static.a',
4758 # Don't allow visible symbols from libraries that contain
4759 # assembly code with symbols that aren't hidden properly.
4760 # http://crbug.com/448386
4761 '-Wl,--exclude-libs=libcommon_audio.a',
4762 '-Wl,--exclude-libs=libcommon_audio_neon.a',
4763 '-Wl,--exclude-libs=libcommon_audio_sse2.a',
4764 '-Wl,--exclude-libs=libiSACFix.a',
4765 '-Wl,--exclude-libs=libisac_neon.a',
4766 '-Wl,--exclude-libs=libopus.a',
4767 '-Wl,--exclude-libs=libvpx.a',
4770 '-l<(android_stlport_library)',
4771 # Manually link the libgcc.a that the cross compiler uses.
4772 '<!(<(android_toolchain)/*-gcc -print-libgcc-file-name)',
4778 ['android_webview_build==1', {
4780 # Android predefines this as 1; undefine it here so Chromium
4781 # can redefine it later to be 2 for chromium code and unset
4782 # for third party code. This works because cflags are added
4784 '-U_FORTIFY_SOURCE',
4785 # Disable any additional warnings enabled by the Android build system but which
4786 # chromium does not build cleanly with (when treating warning as errors).
4787 # Things that are part of -Wextra:
4788 '-Wno-extra', # Enabled by -Wextra, but no specific flag
4789 '-Wno-ignored-qualifiers',
4791 '-Wno-unused-but-set-variable',
4794 # Other things unrelated to -Wextra:
4795 '-Wno-non-virtual-dtor',
4802 ['android_webview_build==1', {
4803 'target_conditions': [
4804 ['chromium_code==0', {
4806 # There is a class of warning which:
4807 # 1) Android always enables and also treats as errors
4808 # 2) Chromium ignores in third party code
4809 # So we re-enable those warnings when building Android.
4811 '-Wno-format-security',
4813 '-Wno-sequence-point',
4816 '-Wno-non-virtual-dtor',
4821 ['target_arch == "arm" and order_profiling==0', {
4823 # Enable identical code folding to reduce size.
4824 '-Wl,--icf=<(gold_icf_level)',
4827 # NOTE: The stlport header include paths below are specified in
4828 # cflags rather than include_dirs because they need to come
4829 # after include_dirs. Think of them like system headers, but
4830 # don't use '-isystem' because the arm-linux-androideabi-4.4.3
4831 # toolchain (circa Gingerbread) will exhibit strange errors.
4832 # The include ordering here is important; change with caution.
4833 ['android_webview_build==0', {
4835 '-isystem<(android_stlport_include)',
4838 '-L<(android_stlport_libs_dir)',
4840 }, { # else: android_webview_build!=0
4841 'aosp_build_settings': {
4842 # Specify that we want to statically link stlport from the
4843 # NDK. This will provide all the include and library paths
4844 # automatically at build time, and link the right library.
4845 'LOCAL_NDK_STL_VARIANT': 'stlport_static',
4848 ['target_arch=="ia32"', {
4849 # The x86 toolchain currently has problems with stack-protector.
4851 '-fstack-protector',
4854 '-fno-stack-protector',
4858 'target_conditions': [
4859 ['_type=="executable"', {
4860 # Force android tools to export the "main" symbol so they can be
4861 # loaded on ICS using the run_pie wrapper. See crbug.com/373219.
4862 # TODO(primiano): remove -fvisibility and -rdynamic flags below
4863 # when ICS support will be dropped.
4866 '-fvisibility=default',
4870 '-Wl,--gc-sections',
4871 '-Wl,-z,nocopyreloc',
4874 # crtbegin_dynamic.o should be the last item in ldflags.
4875 '<(android_ndk_lib)/crtbegin_dynamic.o',
4878 # crtend_android.o needs to be the last item in libraries.
4879 # Do not add any libraries after this!
4880 '<(android_ndk_lib)/crtend_android.o',
4883 ['_type=="shared_library" or _type=="loadable_module"', {
4885 '-Wl,-shared,-Bsymbolic',
4888 ['android_webview_build==0', {
4890 # crtbegin_so.o should be the last item in ldflags.
4891 '<(android_ndk_lib)/crtbegin_so.o',
4894 # crtend_so.o needs to be the last item in libraries.
4895 # Do not add any libraries after this!
4896 '<(android_ndk_lib)/crtend_so.o',
4903 # Settings for building host targets using the system toolchain.
4904 ['_toolset=="host"', {
4906 # Due to issues in Clang build system, using ASan on 32-bit
4907 # binaries on x86_64 host is problematic.
4908 # TODO(eugenis): re-enable.
4909 '-fsanitize=address',
4912 '-fsanitize=address',
4913 '-Wl,-z,noexecstack',
4914 '-Wl,--gc-sections',
4917 '-Wl,--warn-shared-textrel',
4918 '-Wl,--fatal-warnings',
4921 # Settings for building host targets on mac.
4922 ['_toolset=="host" and host_os=="mac"', {
4932 'cflags!': ['-fvisibility=hidden'],
4933 'cflags_cc!': ['-fvisibility-inlines-hidden'],
4935 ['OS=="mac" or OS=="ios"', {
4936 'target_defaults': {
4939 'ALWAYS_SEARCH_USER_PATHS': 'NO',
4940 # Don't link in libarclite_macosx.a, see http://crbug.com/156530.
4941 'CLANG_LINK_OBJC_RUNTIME': 'NO', # -fno-objc-link-runtime
4942 'COPY_PHASE_STRIP': 'NO',
4943 'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
4944 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
4945 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
4946 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
4947 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
4948 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden
4949 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
4950 'GCC_OBJC_CALL_CXX_CDTORS': 'YES', # -fobjc-call-cxx-cdtors
4951 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
4952 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
4953 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror
4954 'GCC_VERSION': '4.2',
4955 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
4956 'USE_HEADERMAP': 'NO',
4961 # Don't warn about unused function parameters.
4962 '-Wno-unused-parameter',
4963 # Don't warn about the "struct foo f = {0};" initialization
4965 '-Wno-missing-field-initializers',
4968 ['chromium_mac_pch', {'GCC_PRECOMPILE_PREFIX_HEADER': 'YES'},
4969 {'GCC_PRECOMPILE_PREFIX_HEADER': 'NO'}
4971 # Note that the prebuilt Clang binaries should not be used for iOS
4972 # development except for ASan builds.
4974 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', # -std=c++11
4975 # Warn if automatic synthesis is triggered with
4976 # the -Wobjc-missing-property-synthesis flag.
4977 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
4978 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
4980 # This warns on selectors from Cocoa headers (-length, -set).
4981 # cfe-dev is currently discussing the merits of this warning.
4982 # TODO(thakis): Reevaluate what to do with this, based one
4983 # cfe-dev discussion.
4984 '-Wno-selector-type-mismatch',
4987 ['clang_xcode==0', {
4988 'CC': '$(SOURCE_ROOT)/<(clang_dir)/clang',
4989 'LDPLUSPLUS': '$(SOURCE_ROOT)/<(clang_dir)/clang++',
4993 ['clang==1 and clang_xcode==0 and clang_use_chrome_plugins==1', {
4995 '<@(clang_chrome_plugins_flags)',
4998 ['clang==1 and clang_xcode==0 and clang_load!=""', {
5000 '-Xclang', '-load', '-Xclang', '<(clang_load)',
5003 ['clang==1 and clang_xcode==0 and clang_add_plugin!=""', {
5005 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
5008 ['clang==1 and "<(GENERATOR)"=="ninja"', {
5010 # See http://crbug.com/110262
5011 '-fcolor-diagnostics',
5014 ['OS=="ios" and target_subarch!="arm32" and \
5015 "<(GENERATOR)"=="xcode"', {
5017 # TODO(ios): when building Chrome for iOS on 64-bit platform
5018 # with Xcode, the -Wshorted-64-to-32 warning is automatically
5019 # enabled. This cause failures when compiling protobuf code,
5020 # so disable the warning. http://crbug.com/359107
5021 '-Wno-shorten-64-to-32',
5029 'clang_dir': '../third_party/llvm-build/Release+Asserts/bin',
5035 '-fsanitize=address',
5036 '-mllvm -asan-globals=0', # http://crbug.com/352073
5037 '-gline-tables-only',
5041 ['asan_coverage!=0 and sanitizer_coverage==0', {
5042 'target_conditions': [
5043 ['_toolset=="target"', {
5045 '-fsanitize-coverage=<(asan_coverage)',
5048 'SANITIZER_COVERAGE',
5053 ['sanitizer_coverage!=0', {
5054 'target_conditions': [
5055 ['_toolset=="target"', {
5057 '-fsanitize-coverage=<(sanitizer_coverage)',
5060 'SANITIZER_COVERAGE',
5066 'target_conditions': [
5067 ['_type!="static_library"', {
5068 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
5073 '-fsanitize=address',
5077 ['mac_write_linker_maps==1', {
5080 '-Wl,-map,>(_target_name).map',
5087 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
5088 'target_conditions': [
5089 ['_type=="executable"', {
5095 # Define copy_asan_dylib_path in a variable ending in
5096 # _path so that gyp understands it's a path and
5097 # performs proper relativization during dict merging.
5098 'copy_asan_dylib_path':
5099 'mac/copy_asan_runtime_dylib.sh',
5101 'postbuild_name': 'Copy ASan runtime dylib',
5103 '<(copy_asan_dylib_path)',
5112 ], # target_conditions
5113 }, # target_defaults
5114 }], # OS=="mac" or OS=="ios"
5116 'target_defaults': {
5118 # Prevent Mac OS X AssertMacros.h from defining macros that collide
5119 # with common names, like 'check', 'require', and 'verify'.
5120 # (Included by system header. Also exists on iOS but not included.)
5121 # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h
5122 '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0',
5125 # These should end with %, but there seems to be a bug with % in
5126 # variables that are intended to be set to different values in
5127 # different targets, like these.
5128 'mac_pie': 1, # Most executables can be position-independent.
5129 # Strip debugging symbols from the target.
5130 'mac_strip': '<(mac_strip_release)',
5134 ['mac_want_real_dsym=="default"', {
5137 'mac_real_dsym': '<(mac_want_real_dsym)'
5142 ['mac_want_real_dsym=="default"', {
5143 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
5145 'mac_real_dsym': '<(mac_want_real_dsym)'
5152 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
5153 # (Equivalent to -fPIC)
5154 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
5155 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5156 # Keep pch files below xcodebuild/.
5157 'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders',
5159 # Someday this can be replaced by an 'GCC_STRICT_ALIASING': 'NO'
5160 # xcode_setting, but not until all downstream projects' mac bots are
5161 # using xcode >= 4.6, because that's when the default value of the
5162 # flag in the compiler switched. Pre-4.6, the value 'NO' for that
5163 # setting is a no-op as far as xcode is concerned, but the compiler
5164 # behaves differently based on whether -fno-strict-aliasing is
5166 '-fno-strict-aliasing', # See http://crbug.com/32204.
5169 'target_conditions': [
5170 ['_type=="executable"', {
5173 # Arranges for data (heap) pages to be protected against
5174 # code execution when running on Mac OS X 10.7 ("Lion"), and
5175 # ensures that the position-independent executable (PIE) bit
5176 # is set for ASLR when running on Mac OS X 10.5 ("Leopard").
5178 # Define change_mach_o_flags in a variable ending in _path
5179 # so that GYP understands it's a path and performs proper
5180 # relativization during dict merging.
5181 'change_mach_o_flags_path':
5182 'mac/change_mach_o_flags_from_xcode.sh',
5183 'change_mach_o_flags_options%': [
5185 'target_conditions': [
5186 ['mac_pie==0 or release_valgrind_build==1', {
5187 # Don't enable PIE if it's unwanted. It's unwanted if
5188 # the target specifies mac_pie=0 or if building for
5189 # Valgrind, because Valgrind doesn't understand slide.
5190 # See the similar mac_pie/release_valgrind_build check
5192 'change_mach_o_flags_options': [
5198 'postbuild_name': 'Change Mach-O Flags',
5200 '<(change_mach_o_flags_path)',
5201 '>@(change_mach_o_flags_options)',
5205 'target_conditions': [
5206 ['mac_pie==1 and release_valgrind_build==0', {
5207 # Turn on position-independence (ASLR) for executables. When
5208 # PIE is on for the Chrome executables, the framework will
5209 # also be subject to ASLR.
5210 # Don't do this when building for Valgrind, because Valgrind
5211 # doesn't understand slide. TODO: Make Valgrind on Mac OS X
5212 # understand slide, and get rid of the Valgrind check.
5215 '-Wl,-pie', # Position-independent executable (MH_PIE)
5221 ['(_type=="executable" or _type=="shared_library" or \
5222 _type=="loadable_module") and mac_strip!=0', {
5223 'target_conditions': [
5224 ['mac_real_dsym == 1', {
5225 # To get a real .dSYM bundle produced by dsymutil, set the
5226 # debug information format to dwarf-with-dsym. Since
5227 # strip_from_xcode will not be used, set Xcode to do the
5228 # stripping as well.
5232 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
5233 'DEPLOYMENT_POSTPROCESSING': 'YES',
5234 'STRIP_INSTALLED_PRODUCT': 'YES',
5236 # Only strip non-ASan builds.
5238 'target_conditions': [
5239 ['_type=="shared_library" or _type=="loadable_module"', {
5240 # The Xcode default is to strip debugging symbols
5241 # only (-S). Local symbols should be stripped as
5242 # well, which will be handled by -x. Xcode will
5243 # continue to insert -S when stripping even when
5244 # additional flags are added with STRIPFLAGS.
5246 }], # _type=="shared_library" or _type=="loadable_module"
5247 ], # target_conditions
5253 }, # configuration "Release"
5255 }, { # mac_real_dsym != 1
5256 # To get a fast fake .dSYM bundle, use a post-build step to
5257 # produce the .dSYM and strip the executable. strip_from_xcode
5258 # only operates in the Release configuration.
5262 # Define strip_from_xcode in a variable ending in _path
5263 # so that gyp understands it's a path and performs proper
5264 # relativization during dict merging.
5265 'strip_from_xcode_path': 'mac/strip_from_xcode',
5267 'postbuild_name': 'Strip If Needed',
5268 'action': ['<(strip_from_xcode_path)'],
5272 ], # target_conditions
5273 }], # (_type=="executable" or _type=="shared_library" or
5274 # _type=="loadable_module") and mac_strip!=0
5275 ], # target_conditions
5276 }, # target_defaults
5280 'ios/coverage.gypi',
5282 'target_defaults': {
5283 'xcode_settings' : {
5284 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
5287 # Older Xcodes do not support -Wno-deprecated-register, so pass an
5288 # additional flag to suppress the "unknown compiler option" error.
5289 # Restrict this flag to builds that are either compiling with Xcode
5290 # or compiling with Xcode's Clang. This will allow Ninja builds to
5291 # continue failing on unknown compiler options.
5292 # TODO(rohitrao): This flag is temporary and should be removed as
5293 # soon as the iOS bots are updated to use Xcode 5.1.
5294 ['clang_xcode==1', {
5296 '-Wno-unknown-warning-option',
5300 # Limit the valid architectures depending on "target_subarch".
5301 # This need to include the "arm" architectures but also the "x86"
5302 # ones (they are used when building for the simulator).
5303 ['target_subarch=="arm32"', {
5304 'VALID_ARCHS': ['armv7', 'i386'],
5306 ['target_subarch=="arm64"', {
5307 'VALID_ARCHS': ['arm64', 'x86_64'],
5309 ['target_subarch=="both"', {
5310 'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
5312 ['use_system_libcxx==1', {
5313 'target_conditions': [
5314 # Only use libc++ when building target for iOS not when building
5315 # tools for the host (OS X) as Mac targets OS X SDK 10.6 which
5316 # does not support libc++.
5317 ['_toolset=="target"', {
5318 'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++
5322 # The default for deployment target of 7.0+ is libc++, so force
5323 # the old behavior unless libc++ is enabled.
5324 'CLANG_CXX_LIBRARY': 'libstdc++', # -stdlib=libstdc++
5328 'target_conditions': [
5329 ['_toolset=="host"', {
5331 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
5332 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5341 ['_toolset=="target"', {
5343 # This section should be for overriding host settings. But,
5344 # since we can't negate the iphone deployment target above, we
5345 # instead set it here for target only.
5346 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)',
5347 'ARCHS': ['$(ARCHS_STANDARD_INCLUDING_64_BIT)'],
5350 ['_type=="executable"', {
5354 'DEPLOYMENT_POSTPROCESSING': 'YES',
5355 'STRIP_INSTALLED_PRODUCT': 'YES',
5360 # Remove dSYM to reduce build time.
5361 'DEBUG_INFORMATION_FORMAT': 'dwarf',
5367 ['chromium_ios_signing', {
5368 # iOS SDK wants everything for device signed.
5369 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
5371 'CODE_SIGNING_REQUIRED': 'NO',
5372 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
5377 ], # target_conditions
5378 }, # target_defaults
5381 'target_defaults': {
5383 '_WIN32_WINNT=0x0603',
5390 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
5391 'WIN32_LEAN_AND_MEAN',
5394 # _HAS_EXCEPTIONS must match ExceptionHandling in msvs_settings.
5395 '_HAS_EXCEPTIONS=0',
5396 # Silence some warnings; we can't switch the the 'recommended'
5397 # versions as they're not available on old OSs.
5398 '_WINSOCK_DEPRECATED_NO_WARNINGS',
5401 ['buildtype=="Official"', {
5402 # In official builds, targets can self-select an optimization
5403 # level by defining a variable named 'optimize', and setting it
5405 # - "size", optimizes for minimal code size - the default.
5406 # - "speed", optimizes for speed over code size.
5407 # - "max", whole program optimization and link-time code
5408 # generation. This is very expensive and should be used
5411 'optimize%': 'size',
5415 # Set /LTCG for the official builds.
5416 'LinkTimeCodeGeneration': '1',
5417 'AdditionalOptions': [
5418 # Set the number of LTCG code-gen threads to eight.
5419 # The default is four. This gives a 5-10% link speedup.
5424 'target_conditions': [
5425 ['optimize=="size"', {
5427 'VCCLCompilerTool': {
5428 # 1, optimizeMinSpace, Minimize Size (/O1)
5429 'Optimization': '1',
5430 # 2, favorSize - Favor small code (/Os)
5431 'FavorSizeOrSpeed': '2',
5436 ['optimize=="speed"', {
5438 'VCCLCompilerTool': {
5439 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5440 'Optimization': '2',
5441 # 1, favorSpeed - Favor fast code (/Ot)
5442 'FavorSizeOrSpeed': '1',
5447 ['optimize=="max"', {
5448 # Disable Warning 4702 ("Unreachable code") for the WPO/PGO
5449 # builds. Probably anything that this would catch that
5450 # wouldn't be caught in a normal build isn't going to
5451 # actually be a bug, so the incremental value of C4702 for
5452 # PGO builds is likely very small.
5453 'msvs_disabled_warnings': [
5457 'VCCLCompilerTool': {
5458 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5459 'Optimization': '2',
5460 # 1, favorSpeed - Favor fast code (/Ot)
5461 'FavorSizeOrSpeed': '1',
5462 # This implies link time code generation.
5463 'WholeProgramOptimization': 'true',
5471 ['msvs_xtree_patched!=1', {
5472 # If xtree hasn't been patched, then we disable C4702. Otherwise,
5473 # it's enabled. This will generally only be true for system-level
5474 # installed Express users.
5475 'msvs_disabled_warnings': [
5480 'msvs_system_include_dirs': [
5481 '<(windows_sdk_path)/Include/shared',
5482 '<(windows_sdk_path)/Include/um',
5483 '<(windows_sdk_path)/Include/winrt',
5484 '$(VSInstallDir)/VC/atlmfc/include',
5486 'msvs_cygwin_shell': 0,
5487 'msvs_disabled_warnings': [
5488 # C4091: 'typedef ': ignored on left of 'X' when no variable is
5490 # This happens in a number of Windows headers. Dumb.
5493 # C4127: conditional expression is constant
5494 # This warning can in theory catch dead code and other problems, but
5495 # triggers in far too many desirable cases where the conditional
5496 # expression is either set by macros or corresponds some legitimate
5497 # compile-time constant expression (due to constant template args,
5498 # conditionals comparing the sizes of different types, etc.). Some of
5499 # these can be worked around, but it's not worth it.
5502 # C4351: new behavior: elements of array 'array' will be default
5504 # This is a silly "warning" that basically just alerts you that the
5505 # compiler is going to actually follow the language spec like it's
5506 # supposed to, instead of not following it like old buggy versions
5507 # did. There's absolutely no reason to turn this on.
5510 # C4355: 'this': used in base member initializer list
5511 # It's commonly useful to pass |this| to objects in a class'
5512 # initializer list. While this warning can catch real bugs, most of
5513 # the time the constructors in question don't attempt to call methods
5514 # on the passed-in pointer (until later), and annotating every legit
5515 # usage of this is simply more hassle than the warning is worth.
5518 # C4503: 'identifier': decorated name length exceeded, name was
5520 # This only means that some long error messages might have truncated
5521 # identifiers in the presence of lots of templates. It has no effect
5522 # on program correctness and there's no real reason to waste time
5523 # trying to prevent it.
5526 # C4611: interaction between 'function' and C++ object destruction is
5528 # This warning is unavoidable when using e.g. setjmp/longjmp. MSDN
5529 # suggests using exceptions instead of setjmp/longjmp for C++, but
5530 # Chromium code compiles without exception support. We therefore have
5531 # to use setjmp/longjmp for e.g. JPEG decode error handling, which
5532 # means we have to turn off this warning (and be careful about how
5533 # object destruction happens in such cases).
5536 # TODO(maruel): These warnings are level 4. They will be slowly
5537 # removed as code is fixed.
5538 4100, # Unreferenced formal parameter
5539 4121, # Alignment of a member was sensitive to packing
5540 4244, # Conversion from 'type1' to 'type2', possible loss of data
5541 4481, # Nonstandard extension used: override specifier 'keyword'
5542 4505, # Unreferenced local function has been removed
5543 4510, # Default constructor could not be generated
5544 4512, # Assignment operator could not be generated
5545 4610, # Object can never be instantiated
5546 4996, # 'X': was declared deprecated (for GetVersionEx).
5549 'VCCLCompilerTool': {
5550 'AdditionalOptions': ['/MP'],
5551 'MinimalRebuild': 'false',
5552 'BufferSecurityCheck': 'true',
5553 'EnableFunctionLevelLinking': 'true',
5554 'RuntimeTypeInfo': 'false',
5555 'WarningLevel': '4',
5556 'WarnAsError': 'true',
5557 'DebugInformationFormat': '3',
5558 # ExceptionHandling must match _HAS_EXCEPTIONS above.
5559 'ExceptionHandling': '0',
5561 'VCLibrarianTool': {
5562 'AdditionalOptions': ['/ignore:4221'],
5563 'AdditionalLibraryDirectories': [
5564 '<(windows_sdk_path)/Lib/win8/um/x86',
5568 'AdditionalDependencies': [
5580 'AdditionalLibraryDirectories': [
5581 '<(windows_sdk_path)/Lib/win8/um/x86',
5583 'GenerateDebugInformation': 'true',
5584 'MapFileName': '$(OutDir)\\$(TargetName).map',
5585 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
5586 'FixedBaseAddress': '1',
5589 # 1 == /SUBSYSTEM:CONSOLE
5590 # 2 == /SUBSYSTEM:WINDOWS
5591 # Most of the executables we'll ever create are tests
5592 # and utilities with console output.
5596 'GenerateStublessProxies': 'true',
5597 'TypeLibraryName': '$(InputName).tlb',
5598 'OutputDirectory': '$(IntDir)',
5599 'HeaderFileName': '$(InputName).h',
5600 'DLLDataFileName': '$(InputName).dlldata.c',
5601 'InterfaceIdentifierFileName': '$(InputName)_i.c',
5602 'ProxyFileName': '$(InputName)_p.c',
5604 'VCResourceCompilerTool': {
5606 'AdditionalIncludeDirectories': [
5608 '<(SHARED_INTERMEDIATE_DIR)',
5611 'target_conditions': [
5612 ['_type=="executable"', {
5614 'EmbedManifest': 'true',
5617 ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', {
5619 'AdditionalManifestFiles': [
5620 '>(win_exe_compatibility_manifest)',
5626 # Building with Clang on Windows is a work in progress and very
5627 # experimental. See crbug.com/82385.
5629 'VCCLCompilerTool': {
5630 'AdditionalOptions': [
5631 '-fmsc-version=1800',
5633 # Many files use intrinsics without including this header.
5634 # TODO(hans): Fix those files, or move this to sub-GYPs.
5637 # TODO(hans): Make this list shorter eventually.
5638 '-Qunused-arguments',
5639 '-Wno-c++11-compat-deprecated-writable-strings',
5640 '-Wno-deprecated-declarations',
5642 '-Wno-enum-conversion',
5643 '-Wno-extra-tokens',
5644 '-Wno-ignored-attributes',
5645 '-Wno-incompatible-pointer-types',
5646 '-Wno-int-to-void-pointer-cast',
5647 '-Wno-invalid-noreturn',
5648 '-Wno-logical-op-parentheses',
5650 '-Wno-missing-braces',
5651 '-Wno-missing-declarations',
5652 '-Wno-msvc-include',
5653 '-Wno-null-dereference',
5654 '-Wno-overloaded-virtual',
5656 '-Wno-pointer-sign',
5658 '-Wno-return-type-c-linkage',
5660 '-Wno-sometimes-uninitialized',
5662 '-Wno-tautological-compare',
5663 '-Wno-unknown-pragmas',
5665 '-Wno-unused-function',
5666 '-Wno-unused-private-field',
5667 '-Wno-unused-value',
5668 '-Wno-unused-variable',
5669 '-Wno-unused-local-typedef', # http://crbug.com/411648
5670 '-Wno-inconsistent-missing-override', #http://crbug.com/428099
5674 ['clang==1 and target_arch=="ia32"', {
5675 'VCCLCompilerTool': {
5676 'WarnAsError': 'false',
5677 'AdditionalOptions': [
5686 ['disable_nacl==1', {
5687 'target_defaults': {
5693 ['OS=="win" and msvs_use_common_linker_extras', {
5694 'target_defaults': {
5709 'AdditionalOptions': [
5720 'AdditionalOptions': ['/largeaddressaware'],
5724 # TODO(asan/win): Move this down into the general
5725 # win-target_defaults section once the 64-bit asan runtime
5726 # exists. See crbug.com/345874.
5727 'VCCLCompilerTool': {
5728 'AdditionalOptions': [
5729 '-fsanitize=address',
5730 '-fsanitize-blacklist=<(PRODUCT_DIR)/../../tools/memory/asan/blacklist_win.txt',
5732 'AdditionalIncludeDirectories': [
5733 # MSVC needs to be able to find the sanitizer headers when
5734 # invoked via /fallback. This is critical for using macros
5735 # like ASAN_UNPOISON_MEMORY_REGION in files where we fall
5737 '<(DEPTH)/<(make_clang_dir)/lib/clang/3.7.0/include_sanitizer',
5741 'AdditionalLibraryDirectories': [
5742 # TODO(hans): If make_clang_dir is absolute, this breaks.
5743 '<(DEPTH)/<(make_clang_dir)/lib/clang/3.7.0/lib/windows',
5746 'target_conditions': [
5747 ['component=="shared_library"', {
5749 'AdditionalDependencies': [
5750 'clang_rt.asan_dynamic-i386.lib',
5751 'clang_rt.asan_dynamic_runtime_thunk-i386.lib',
5755 ['_type=="executable" and component=="static_library"', {
5757 'AdditionalDependencies': [
5758 'clang_rt.asan-i386.lib',
5762 ['(_type=="shared_library" or _type=="loadable_module") and component=="static_library"', {
5764 'AdditionalDependencies': [
5765 'clang_rt.asan_dll_thunk-i386.lib',
5777 'AdditionalOptions': [
5778 # safeseh is not compatible with x64
5790 ['enable_new_npdevice_api==1', {
5791 'target_defaults': {
5793 'ENABLE_NEW_NPDEVICE_API',
5797 # Don't warn about the "typedef 'foo' locally defined but not used"
5798 # for gcc 4.8 and higher.
5799 # TODO: remove this flag once all builds work. See crbug.com/227506
5800 ['gcc_version>=48 and clang==0', {
5801 'target_defaults': {
5803 '-Wno-unused-local-typedefs',
5807 ['gcc_version>=48 and clang==0 and host_clang==1', {
5808 'target_defaults': {
5809 'target_conditions': [
5810 ['_toolset=="host"', { 'cflags!': [ '-Wno-unused-local-typedefs' ]}],
5814 # In the android webview build, force host targets to be compiled with clang
5815 # as the hermetic host gcc is very old on some platforms. This is already
5816 # the default on the current development version of AOSP but we force it
5817 # here in case we need to compile against an older release version. We also
5818 # explicitly set it to false for target binaries to avoid causing problems
5819 # for the work to enable clang by default in AOSP. We also force the use of
5820 # libstdc++ on host as peculiarities of the android gyp backend mean that
5821 # using libc++ doesn't work, and Chromium doesn't yet require a more modern
5823 ['android_webview_build==1', {
5824 'target_defaults': {
5825 'target_conditions': [
5826 ['_toolset=="host"', {
5827 'aosp_build_settings': {
5828 'LOCAL_CLANG': 'true',
5829 'LOCAL_CXX_STL': 'libstdc++',
5831 }, { # else: _toolset != "host"
5832 'aosp_build_settings': {
5833 'LOCAL_CLANG': 'false',
5839 # We need a special case to handle the android webview build on mac because
5840 # the host gcc there doesn't accept this flag, but the target gcc may
5842 ['gcc_version>=48 and android_webview_build==1 and host_os=="mac"', {
5843 'target_defaults': {
5844 'target_conditions': [
5845 ['_toolset=="host"', {
5847 '-Wno-unused-local-typedefs',
5853 ['clang==1 and ((OS!="mac" and OS!="ios") or clang_xcode==0) '
5855 'make_global_settings': [
5856 ['CC', '<(make_clang_dir)/bin/clang'],
5857 ['CXX', '<(make_clang_dir)/bin/clang++'],
5858 ['CC.host', '$(CC)'],
5859 ['CXX.host', '$(CXX)'],
5862 ['clang==1 and OS=="win"', {
5863 'make_global_settings': [
5864 # On Windows, gyp's ninja generator only looks at CC.
5865 ['CC', '<(make_clang_dir)/bin/clang-cl'],
5868 ['use_lld==1 and OS=="win"', {
5869 'make_global_settings': [
5870 # Limited to Windows because lld-link is the driver that is compatible
5872 ['LD', '<(make_clang_dir)/bin/lld-link'],
5875 ['OS=="android" and clang==0', {
5876 # Hardcode the compiler names in the Makefile so that
5877 # it won't depend on the environment at make time.
5878 'make_global_settings': [
5879 ['CC', '<!(/bin/echo -n <(android_toolchain)/*-gcc)'],
5880 ['CXX', '<!(/bin/echo -n <(android_toolchain)/*-g++)'],
5881 ['CC.host', '<(host_cc)'],
5882 ['CXX.host', '<(host_cxx)'],
5885 ['OS=="linux" and target_arch=="mipsel"', {
5886 'make_global_settings': [
5887 ['CC', '<(sysroot)/../bin/mipsel-linux-gnu-gcc'],
5888 ['CXX', '<(sysroot)/../bin/mipsel-linux-gnu-g++'],
5889 ['CC.host', '<(host_cc)'],
5890 ['CXX.host', '<(host_cxx)'],
5893 ['OS=="linux" and target_arch=="arm" and host_arch!="arm" and chromeos==0 and clang==0', {
5894 # Set default ARM cross compiling on linux. These can be overridden
5895 # using CC/CXX/etc environment variables.
5896 'make_global_settings': [
5897 ['CC', '<!(which arm-linux-gnueabihf-gcc)'],
5898 ['CXX', '<!(which arm-linux-gnueabihf-g++)'],
5899 ['CC.host', '<(host_cc)'],
5900 ['CXX.host', '<(host_cxx)'],
5904 # TODO(yyanagisawa): supports GENERATOR==make
5905 # make generator doesn't support CC_wrapper without CC
5906 # in make_global_settings yet.
5907 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
5908 'make_global_settings': [
5909 ['CC_wrapper', '<(gomadir)/gomacc'],
5910 ['CXX_wrapper', '<(gomadir)/gomacc'],
5911 ['CC.host_wrapper', '<(gomadir)/gomacc'],
5912 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
5916 'target_defaults': {
5917 'target_conditions': [
5918 ['_toolset=="target"', {
5926 ['use_lto==1 and clang==0', {
5927 'target_defaults': {
5928 'target_conditions': [
5929 ['_toolset=="target"', {
5931 '-ffat-lto-objects',
5937 ['use_lto==1 and clang==1', {
5938 'target_defaults': {
5939 'target_conditions': [
5940 ['_toolset=="target"', {
5942 '--plugin', '../../<(make_clang_dir)/lib/LLVMgold.so',
5948 ['use_lto==1 and clang==1 and (target_arch=="ia32" or target_arch=="x64")', {
5949 'target_defaults': {
5950 'target_conditions': [
5951 # Required for third_party/zlib/crc_folding.c and various other code
5952 # that uses SSE. TODO(pcc): Remove this once we properly support
5953 # subtarget specific code generation in LLVM.
5954 ['_toolset=="target"', {
5956 '-Wl,-plugin-opt,mcpu=corei7-avx',
5959 ['_toolset=="target" and _type!="static_library"', {
5962 '-Wl,-mcpu,corei7-avx',
5969 ['use_lto==1 and clang==1 and target_arch=="arm"', {
5970 'target_defaults': {
5971 'target_conditions': [
5972 ['_toolset=="target"', {
5973 # Without this flag, LTO produces a .text section that is larger
5974 # than the maximum call displacement, preventing the linker from
5975 # relocating calls (http://llvm.org/PR22999).
5977 '-Wl,-plugin-opt,-function-sections',
5983 ['(use_lto==1 or use_lto_o2==1) and clang==0', {
5984 'target_defaults': {
5985 'target_conditions': [
5986 ['_toolset=="target"', {
5994 ['(use_lto==1 or use_lto_o2==1) and clang==1', {
5995 'target_defaults': {
5996 'target_conditions': [
5997 ['_toolset=="target"', {
6006 'target_defaults': {
6007 'target_conditions': [
6008 ['_toolset=="target"', {
6010 '-fsanitize=cfi-vptr',
6013 '-fsanitize=cfi-vptr',
6017 '-fsanitize=cfi-vptr',
6021 ['_toolset=="target" and _type!="static_library"', {
6024 '-fsanitize=cfi-vptr',
6033 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
6034 # This block adds *project-wide* configuration settings to each project
6035 # file. It's almost always wrong to put things here. Specify your
6036 # custom xcode_settings in target_defaults to add them to targets instead.
6039 # In an Xcode Project Info window, the "Base SDK for All Configurations"
6040 # setting sets the SDK on a project-wide basis. In order to get the
6041 # configured SDK to show properly in the Xcode UI, SDKROOT must be set
6042 # here at the project level.
6045 ['mac_sdk_path==""', {
6046 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
6048 'SDKROOT': '<(mac_sdk_path)', # -isysroot
6054 ['ios_sdk_path==""', {
6056 # TODO(justincohen): Ninja only supports simulator for now.
6057 ['"<(GENERATOR)"=="xcode"', {
6058 'SDKROOT': 'iphoneos<(ios_sdk)', # -isysroot
6060 'SDKROOT': 'iphonesimulator<(ios_sdk)', # -isysroot
6064 'SDKROOT': '<(ios_sdk_path)', # -isysroot
6069 # Target both iPhone and iPad.
6070 'TARGETED_DEVICE_FAMILY': '1,2',
6073 ['target_arch=="x64"', {
6078 ['target_arch=="ia32"', {
6087 # The Xcode generator will look for an xcode_settings section at the root
6088 # of each dict and use it to apply settings on a file-wide basis. Most
6089 # settings should not be here, they should be in target-specific
6090 # xcode_settings sections, or better yet, should use non-Xcode-specific
6091 # settings in target dicts. SYMROOT is a special case, because many other
6092 # Xcode variables depend on it, including variables such as
6093 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6094 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6095 # files to appear (when present) in the UI as actual files and not red
6096 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6097 # and therefore SYMROOT, needs to be set at the project level.
6098 'SYMROOT': '<(DEPTH)/xcodebuild',