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=="mac" 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 OpenSSL instead of NSS as the underlying SSL and crypto
65 # implementation. Certificate verification will in most cases be
66 # handled by the OS. If OpenSSL's struct X509 is used to represent
67 # certificates, use_openssl_certs must be set.
70 # Typedef X509Certificate::OSCertHandle to OpenSSL's struct X509*.
71 'use_openssl_certs%': 0,
73 # Disable viewport meta tag by default.
74 'enable_viewport%': 0,
76 # Enable HiDPI support.
79 # Override buildtype to select the desired build flavor.
80 # Dev - everyday build for development/testing
81 # Official - release build (generally implies additional processing)
82 # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp
83 # conversion is done), some of the things which are now controlled by
84 # 'branding', such as symbol generation, will need to be refactored
85 # based on 'buildtype' (i.e. we don't care about saving symbols for
86 # non-Official # builds).
89 # Override branding to select the desired branding flavor.
90 'branding%': 'Chromium',
93 # ChromeOS and Windows use Aura and Ash.
94 ['chromeos==1 or OS=="win" or OS=="linux"', {
99 ['chromecast==1 and OS!="android"', {
109 # Whether we're a traditional desktop unix.
110 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and chromeos==0', {
116 # Embedded implies ozone.
122 'target_arch%': 'arm',
124 # Default architecture we're building for is the architecture we're
125 # building on, and possibly sub-architecture (for iOS builds).
126 'target_arch%': '<(host_arch)',
130 # Copy conditionally-set variables out one scope.
131 'chromeos%': '<(chromeos)',
132 'chromecast%': '<(chromecast)',
133 'desktop_linux%': '<(desktop_linux)',
134 'use_aura%': '<(use_aura)',
135 'use_ash%': '<(use_ash)',
136 'use_cras%': '<(use_cras)',
137 'use_ozone%': '<(use_ozone)',
138 'embedded%': '<(embedded)',
139 'use_openssl%': '<(use_openssl)',
140 'use_openssl_certs%': '<(use_openssl_certs)',
141 'enable_viewport%': '<(enable_viewport)',
142 'enable_hidpi%': '<(enable_hidpi)',
143 'buildtype%': '<(buildtype)',
144 'branding%': '<(branding)',
145 'host_arch%': '<(host_arch)',
146 'target_arch%': '<(target_arch)',
148 'target_subarch%': '',
150 # The channel to build on Android: stable, beta, dev, canary, or
151 # default. "default" should be used on non-official builds.
152 'android_channel%': 'default',
154 # This is set when building the Android WebView inside the Android
155 # build system, using the 'android' gyp backend. The WebView code is
156 # still built when this is unset, but builds using the normal chromium
158 'android_webview_build%': 0,
160 # This is set when building the Android WebView in ninja for the
162 'android_webview_telemetry_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%': '',
193 # Set default value of toolkit_views based on OS.
194 ['OS=="win" or chromeos==1 or use_aura==1', {
200 # Embedded builds use aura without ash or views.
207 # Enable HiDPI on Mac OS, Chrome OS and Windows.
208 ['OS=="mac" or chromeos==1 or OS=="win"', {
212 # Enable the OpenSSL backend on Mac OS.
217 # Enable App Launcher everywhere but mobile.
218 ['OS!="ios" and OS!="android"', {
219 'enable_app_list%': 1,
221 'enable_app_list%': 0,
224 ['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="android")', {
225 'use_default_render_theme%': 1,
227 'use_default_render_theme%': 0,
231 'use_ozone_evdev%': 1,
233 'use_ozone_evdev%': 0,
236 # Set default gomadir.
238 'gomadir': 'c:\\goma\\goma-win',
240 'gomadir': '<!(/bin/echo -n ${HOME}/goma)',
243 # Set the default "target_subarch" on iOS. Valid values are "arm32",
244 # "arm64" and "both" (meaning a fat binary).
246 # TODO(sdefresne): change the default from "arm32" to "both" for
247 # "target_subarch" once http://crbug.com/339477 is fixed.
249 # TODO(sdefresne): set the "target_arch" to "arm" once compilation
250 # of skia has been fixed for simulator. http://crbug.com/342377
252 'target_subarch%': 'arm32',
255 # Set arch variants for MIPS platforms.
256 ['target_arch=="mips64el"', {
259 'mips_arch_variant%': 'r6',
261 'mips_arch_variant%': 'r2',
266 ['target_arch=="mipsel"', {
267 'mips_arch_variant%': 'r1',
272 # Copy conditionally-set variables out one scope.
273 'chromeos%': '<(chromeos)',
274 'chromecast%': '<(chromecast)',
275 'host_arch%': '<(host_arch)',
276 'target_arch%': '<(target_arch)',
277 'target_subarch%': '<(target_subarch)',
278 'mips_arch_variant%': '<(mips_arch_variant)',
279 'toolkit_views%': '<(toolkit_views)',
280 'desktop_linux%': '<(desktop_linux)',
281 'use_aura%': '<(use_aura)',
282 'use_ash%': '<(use_ash)',
283 'use_cras%': '<(use_cras)',
284 'use_ozone%': '<(use_ozone)',
285 'use_ozone_evdev%': '<(use_ozone_evdev)',
286 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
287 'embedded%': '<(embedded)',
288 'use_openssl%': '<(use_openssl)',
289 'use_openssl_certs%': '<(use_openssl_certs)',
290 'enable_viewport%': '<(enable_viewport)',
291 'enable_hidpi%': '<(enable_hidpi)',
292 'android_channel%': '<(android_channel)',
293 'android_webview_build%': '<(android_webview_build)',
294 'android_webview_telemetry_build%': '<(android_webview_telemetry_build)',
295 'use_goma%': '<(use_goma)',
296 'gomadir%': '<(gomadir)',
297 'enable_app_list%': '<(enable_app_list)',
298 'use_default_render_theme%': '<(use_default_render_theme)',
299 'buildtype%': '<(buildtype)',
300 'branding%': '<(branding)',
301 'arm_version%': '<(arm_version)',
302 'sysroot%': '<(sysroot)',
303 'chroot_cmd%': '<(chroot_cmd)',
304 'system_libdir%': '<(system_libdir)',
306 # Set to 1 to enable fast builds. Set to 2 for even faster builds
307 # (it disables debug info for fastest compilation - only for use
308 # on compile-only bots).
311 # Set to 1 to not store any build metadata (this isn't working yet but
312 # this flag will help us to get there). See http://crbug.com/314403.
313 # TODO(sebmarchand): Update this comment once this flag guarantee that
314 # there's no build metadata in the build artifacts.
315 'dont_embed_build_metadata%': 0,
317 # Set to 1 to force Visual C++ to use legacy debug information format /Z7.
318 # This is useful for parallel compilation tools which can't support /Zi.
319 # Only used on Windows.
322 # Set to 1 to enable dcheck in release.
323 'dcheck_always_on%': 0,
325 # Set to 1 to make a build that disables unshipped tracing events.
326 # Note: this setting is ignored if buildtype=="Official".
327 'tracing_like_official_build%': 0,
329 # Disable image loader component extension by default.
330 'image_loader_extension%': 0,
332 # Set NEON compilation flags.
335 # Detect NEON support at run-time.
336 'arm_neon_optional%': 0,
338 # Use libjpeg-turbo as the JPEG codec used by Chromium.
339 'use_libjpeg_turbo%': 1,
341 # Use system libjpeg. Note that the system's libjepg will be used even if
342 # use_libjpeg_turbo is set.
343 'use_system_libjpeg%': 0,
345 # By default, component is set to static_library and it can be overriden
346 # by the GYP command line or by ~/.gyp/include.gypi.
347 'component%': 'static_library',
349 # /analyze is off by default on Windows because it is very slow and noisy.
350 # Enable with GYP_DEFINES=win_analyze=1
353 # Set to select the Title Case versions of strings in GRD files.
354 'use_titlecase_in_grd%': 0,
356 # Use translations provided by volunteers at launchpad.net. This
357 # currently only works on Linux.
358 'use_third_party_translations%': 0,
360 # Remoting compilation is enabled by default. Set to 0 to disable.
363 # Configuration policy is enabled by default. Set to 0 to disable.
364 'configuration_policy%': 1,
366 # Variable safe_browsing is used to control the build time configuration
367 # for safe browsing feature. Safe browsing can be compiled in 3 different
368 # levels: 0 disables it, 1 enables it fully, and 2 enables only UI and
369 # reporting features without enabling phishing and malware detection. This
370 # is useful to integrate a third party phishing/malware detection to
371 # existing safe browsing logic.
374 # Web speech is enabled by default. Set to 0 to disable.
375 'enable_web_speech%': 1,
377 # Notifications are compiled in by default. Set to 0 to disable.
378 'notifications%' : 1,
380 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for
381 # regular builds and 1 for ASan builds.
382 'mac_want_real_dsym%': 'default',
384 # If this is set, the clang plugins used on the buildbot will be used.
385 # Run tools/clang/scripts/update.sh to make sure they are compiled.
386 # This causes 'clang_chrome_plugins_flags' to be set.
387 # Has no effect if 'clang' is not set as well.
388 'clang_use_chrome_plugins%': 1,
390 # Enable building with ASAN (Clang's -fsanitize=address option).
391 # -fsanitize=address only works with clang, but asan=1 implies clang=1
392 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addresssanitizer
394 'asan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/asan/blacklist.txt',
395 # Enable coverage gathering instrumentation in ASan. This flag also
396 # controls coverage granularity (1 for function-level coverage, 2 for
397 # block-level coverage).
399 # Enable intra-object-overflow detection in ASan (experimental).
400 'asan_field_padding%': 0,
402 # Enable Chromium overrides of the default configurations for various
403 # dynamic tools (like ASan).
404 'use_sanitizer_options%': 0,
406 # Enable building with SyzyAsan.
407 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo
410 # Enable building with LSan (Clang's -fsanitize=leak option).
411 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1
412 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaksanitizer
415 # Enable building with TSan (Clang's -fsanitize=thread option).
416 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1
417 # See http://clang.llvm.org/docs/ThreadSanitizer.html
419 'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/tsan_v2/ignores.txt',
421 # Enable building with MSan (Clang's -fsanitize=memory option).
422 # MemorySanitizer only works with clang, but msan=1 implies clang=1
423 # See http://clang.llvm.org/docs/MemorySanitizer.html
425 'msan_blacklist%': '<(PRODUCT_DIR)/../../tools/msan/blacklist.txt',
426 # Track where uninitialized memory originates from. From fastest to
427 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2
428 # - track the chain of stores leading from allocation site to use site.
429 'msan_track_origins%': 1,
431 # Enable building with UBSan (Clang's -fsanitize=undefined option).
432 # -fsanitize=undefined only works with clang, but ubsan=1 implies clang=1
433 # See http://clang.llvm.org/docs/UsersManual.html
436 # Enable building with UBsan's vptr (Clang's -fsanitize=vptr option).
437 # -fsanitize=vptr only works with clang, but ubsan_vptr=1 implies clang=1
439 'ubsan_vptr_blacklist%': '<(PRODUCT_DIR)/../../tools/ubsan_vptr/blacklist.txt',
441 # Use the dynamic libraries instrumented by one of the sanitizers
442 # instead of the standard system libraries.
443 'use_instrumented_libraries%': 0,
445 # Use libc++ (third_party/libc++ and third_party/libc++abi) instead of
446 # stdlibc++ as standard library. This is intended to use for instrumented
448 'use_custom_libcxx%': 0,
450 # Use system libc++ instead of the default C++ library, usually libstdc++.
451 # This is intended for iOS builds only.
452 'use_system_libcxx%': 0,
454 # Use a modified version of Clang to intercept allocated types and sizes
455 # for allocated objects. clang_type_profiler=1 implies clang=1.
456 # See http://dev.chromium.org/developers/deep-memory-profiler/cpp-object-type-identifier
457 # TODO(dmikurube): Support mac. See http://crbug.com/123758#c11
458 'clang_type_profiler%': 0,
460 # Set to true to instrument the code with function call logger.
461 # See src/third_party/cygprofile/cyg-profile.cc for details.
462 'order_profiling%': 0,
464 # Use the provided profiled order file to link Chrome image with it.
465 # This makes Chrome faster by better using CPU cache when executing code.
466 # This is known as PGO (profile guided optimization).
467 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-effort
468 'order_text_section%' : "",
470 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
471 # libraries on linux x86-64 and arm, plus ASLR.
474 # Whether one-click signin is enabled or not.
475 'enable_one_click_signin%': 0,
477 # Whether to back up data before sync.
478 'enable_pre_sync_backup%': 0,
480 # Enable Chrome browser extensions
481 'enable_extensions%': 1,
484 'enable_google_now%': 1,
486 # Enable printing support and UI. This variable is used to configure
487 # which parts of printing will be built. 0 disables printing completely,
488 # 1 enables it fully, and 2 enables only the codepath to generate a
489 # Metafile (e.g. usually a PDF or EMF) and disables print preview, cloud
491 'enable_printing%': 1,
493 # Set the version of CLD.
494 # 0: Don't specify the version. This option is for the Finch testing.
499 # For CLD2, the size of the tables that should be included in the build
500 # Only evaluated if cld_version == 2 or if building the CLD2 dynamic data
502 # See third_party/cld_2/cld_2.gyp for more information.
503 # 0: Small tables, lower accuracy
504 # 1: Medium tables, medium accuracy
505 # 2: Large tables, high accuracy
506 'cld2_table_size%': 2,
508 # The data acquisition mode for CLD2. Possible values are:
509 # static: CLD2 data is statically linked to the executable.
510 # standalone: CLD2 data is provided in a standalone file that is
511 # bundled with the executable.
512 # component: CLD2 data is provided as a Chrome "component" and is
513 # downloaded via the component updater.
515 # For more information on switching the CLD2 data source, see:
516 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/compact-language-detector-cld-data-source-configuration
518 # This string will be exposed in chrome://translate-internals under the
519 # heading "CLD Data Source". This allows easy determination of which
520 # data source the browser was built with.
521 'cld2_data_source%': 'static',
523 # Enable spell checker.
524 'enable_spellcheck%': 1,
526 # Webrtc compilation is enabled by default. Set to 0 to disable.
529 # Enables use of the session service, which is enabled by default.
530 # Support for disabling depends on the platform.
531 'enable_session_service%': 1,
533 # Enables theme support, which is enabled by default. Support for
534 # disabling depends on the platform.
537 # Enables autofill dialog and associated features; disabled by default.
538 'enable_autofill_dialog%' : 0,
540 # Defaults Wallet integration in Autofill dialog to use production
541 # servers. Unofficial builds won't have the proper API keys.
542 'enable_prod_wallet_service%': 0,
544 # Enables support for background apps.
545 'enable_background%': 1,
547 # Enable the task manager by default.
548 'enable_task_manager%': 1,
550 # Enables used resource whitelist generation; disabled by default.
551 'enable_resource_whitelist_generation%': 0,
553 # Enable FILE support by default.
554 'disable_file_support%': 0,
556 # Enable FTP support by default.
557 'disable_ftp_support%': 0,
559 # Use native android functions in place of ICU. Not supported by most
561 'use_icu_alternatives_on_android%': 0,
563 # XInput2 multitouch support is enabled by default (use_xi2_mt=2).
564 # Setting to zero value disables XI2 MT. When XI2 MT is enabled,
565 # the input value also defines the required XI2 minor minimum version.
566 # For example, use_xi2_mt=2 means XI2.2 or above version is required.
569 # Use of precompiled headers on Windows.
571 # This variable may be explicitly set to 1 (enabled) or 0
572 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
573 # This setting will override the default.
576 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders
578 'chromium_win_pch%': 0,
581 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts',
582 # Set this to true when building with Clang.
583 # See http://code.google.com/p/chromium/wiki/Clang for details.
584 # If this is set, clang is used as both host and target compiler in
585 # cross-compile builds.
588 # Enable plug-in installation by default.
589 'enable_plugin_installation%': 1,
591 # Specifies whether to use canvas_skia.cc in place of platform
592 # specific implementations of gfx::Canvas. Affects text drawing in the
594 # TODO(asvitkine): Enable this on all platforms and delete this flag.
595 # http://crbug.com/105550
596 'use_canvas_skia%': 0,
598 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work
599 # with one of those tools.
600 'build_for_tool%': '',
602 # If no directory is specified then a temporary directory will be used.
603 'test_isolation_outdir%': '',
604 # True if isolate should fail if the isolate files refer to files
606 'test_isolation_fail_on_missing': 1,
608 'wix_path%': '<(DEPTH)/third_party/wix',
610 # Managed users are enabled by default.
611 'enable_managed_users%': 1,
613 # Platform natively supports discardable memory.
614 'native_discardable_memory%': 0,
616 # Platform sends memory pressure signals natively.
617 'native_memory_pressure_signals%': 0,
619 'spdy_proxy_auth_property%' : '',
620 'spdy_proxy_auth_value%' : '',
622 'enable_service_discovery%': 0,
623 'enable_wifi_bootstrapping%': 0,
624 'enable_hangout_services_extension%': 0,
626 # Enable the Syzygy optimization step.
627 'syzygy_optimize%': 0,
629 # Enable hole punching for the protected video.
632 # Temporary hack to allow us to unify blink's definitions of load
633 # completion. blink uses a crazy set of constraints to determine load
634 # completion, but only actually requires them for layout tests. However,
635 # we need to maintain all the old behaviors while the plumbing is put in
636 # place on both sides of the repo boundary.
637 'enable_load_completion_hacks%': 1,
639 # Automatically select platforms under ozone. Turn this off to
640 # build only explicitly selected platforms.
641 'ozone_auto_platforms%': 1,
643 # If this is set clang is used as host compiler, but not as target
644 # compiler. Always do this by default.
647 # Variables to control Link-Time Optimizations (LTO).
648 # Note: the variables must *not* be enabled at the same time.
649 # In this case LTO would 'merge' the optimization flags
650 # at link-time which would lead to all code be optimized with -O2.
651 # Enable LTO on the code compiled with -Os.
652 # See crbug.com/407544
654 # Enable LTO on code compiled with -O2.
658 # A flag for POSIX platforms
665 # A flag for BSD platforms
666 ['OS=="freebsd" or OS=="openbsd"', {
673 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==0', {
679 # When OpenSSL is used for SSL and crypto on Unix-like systems, use
680 # OpenSSL's certificate definition.
681 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==1', {
682 'use_openssl_certs%': 1,
684 'use_openssl_certs%': 0,
687 # libudev usage. This currently only affects the content layer.
688 ['OS=="linux" and embedded==0', {
694 # Flags to use X11 on non-Mac POSIX platforms.
695 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
702 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
708 # Flags to use pango and cairo.
709 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', {
718 ['OS=="linux" and embedded==0', {
724 # We always use skia text rendering in Aura on Windows, since GDI
725 # doesn't agree with our BackingStore.
726 # TODO(beng): remove once skia text rendering is on by default.
727 ['use_aura==1 and OS=="win"', {
728 'enable_skia_text%': 1,
731 # A flag to enable or disable our compile-time dependency
732 # on gnome-keyring. If that dependency is disabled, no gnome-keyring
733 # support will be available. This option is useful
734 # for Linux distributions and for Aura.
735 ['OS!="linux" or chromeos==1', {
736 'use_gnome_keyring%': 0,
738 'use_gnome_keyring%': 1,
741 ['OS=="mac" or OS=="ios"', {
742 # Mac and iOS want Title Case strings
743 'use_titlecase_in_grd%': 1,
746 # Enable loader extensions on Chrome OS.
748 'image_loader_extension%': 1,
750 'image_loader_extension%': 0,
753 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
754 'enable_one_click_signin%': 1,
755 'enable_pre_sync_backup%': 1,
759 'enable_extensions%': 0,
760 'enable_google_now%': 0,
762 'enable_spellcheck%': 0,
766 'arm_neon_optional%': 1,
767 'native_discardable_memory%': 1,
768 'native_memory_pressure_signals%': 1,
769 'enable_printing%': 2,
770 'enable_task_manager%':0,
771 # Set to 1 once we have a notification system for Android.
772 # http://crbug.com/115320
777 # Android OS includes support for proprietary codecs regardless of
778 # building Chromium or Google Chrome. We also ship Google Chrome and
779 # Chromecast with proprietary codecs.
780 ['OS=="android" or branding=="Chrome" or chromecast==1', {
781 'proprietary_codecs%': 1,
783 'proprietary_codecs%': 0,
786 ['OS=="mac" or OS=="ios"', {
787 'native_discardable_memory%': 1,
788 'native_memory_pressure_signals%': 1,
791 # Enable autofill dialog for Android, Mac and Views-enabled platforms.
792 ['toolkit_views==1 or (OS=="android" and android_webview_build==0) or OS=="mac"', {
793 'enable_autofill_dialog%': 1,
796 ['buildtype=="Official"', {
797 'enable_prod_wallet_service%': 1,
807 'disable_ftp_support%': 1,
808 'enable_extensions%': 0,
809 'enable_google_now%': 0,
811 'enable_printing%': 0,
812 'enable_session_service%': 0,
818 'enable_managed_users%': 0,
819 'enable_task_manager%': 0,
820 'use_system_libcxx%': 1,
821 'support_pre_M6_history_database%': 0,
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,
894 'enable_captive_portal_detection%': 1,
897 # Enable Skia UI text drawing incrementally on different platforms.
898 # http://crbug.com/105550
900 # On Aura, this allows per-tile painting to be used in the browser
903 'use_canvas_skia%': 1,
907 # When building for ChromeOS we dont want Chromium to use libjpeg_turbo.
908 'use_libjpeg_turbo%': 0,
911 # Do not enable the Settings App on ChromeOS.
912 ['enable_app_list==1 and chromeos==0', {
913 'enable_settings_app%': 1,
915 'enable_settings_app%': 0,
918 ['OS=="linux" and target_arch=="arm" and chromeos==0', {
919 # Set some defaults for arm/linux chrome builds
920 'use_allocator%': 'none',
921 # sysroot needs to be an absolute path otherwise it generates
922 # incorrect results when passed to pkg-config
923 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_arm-sysroot',
924 }], # OS=="linux" and target_arch=="arm" and chromeos==0
926 ['OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0', {
928 ['target_arch=="x64"', {
929 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_amd64-sysroot',
931 ['target_arch=="ia32"', {
932 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_i386-sysroot',
935 }], # OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0
937 ['OS=="linux" and target_arch=="mipsel"', {
938 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot',
939 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu-gcc',
942 # Whether tests targets should be run, archived or just have the
943 # dependencies verified. All the tests targets have the '_run' suffix,
944 # e.g. base_unittests_run runs the target base_unittests. The test
945 # target always calls tools/swarming_client/isolate.py. See the script's
946 # --help for more information. Meant to be overriden with GYP_DEFINES.
947 # TODO(maruel): Remove the conditions as more configurations are
949 ['OS!="ios" and OS!="android" and chromeos==0', {
950 'test_isolation_mode%': 'check',
952 'test_isolation_mode%': 'noop',
954 # Whether Android build uses OpenMAX DL FFT.
955 ['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")', {
956 # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mipsel.
957 # When enabled, this will also enable WebAudio support on
958 # Android for these architectures. Default is enabled. Whether
959 # WebAudio is actually available depends on runtime settings
961 'use_openmax_dl_fft%': 1,
963 'use_openmax_dl_fft%': 0,
965 ['OS=="win" or OS=="linux"', {
969 # Turns on compiler optimizations in V8 in Debug build, except
970 # on android_clang, where we're hitting a weird linker error.
971 # TODO(dpranke): http://crbug.com/266155 .
973 'v8_optimized_debug%': 1,
975 'v8_optimized_debug%': 2,
978 # Disable various features by default on embedded.
981 'enable_printing%': 0,
984 # By default, use ICU data file (icudtl.dat) on all platforms
985 # except when building Android WebView or Chromecast.
986 # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium).
987 # Set the data reduction proxy origin for Android Webview.
988 ['android_webview_build==0 and android_webview_telemetry_build==0 and chromecast==0', {
989 'icu_use_data_file_flag%' : 1,
991 'icu_use_data_file_flag%' : 0,
993 ['OS=="win" or OS=="mac"', {
994 'enable_wifi_bootstrapping%' : 1,
997 # Path to sas.dll, which provides the SendSAS function.
998 # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs.85).aspx
999 ['target_arch=="x64"', {
1000 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/amd64',
1002 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
1005 # Turn on JNI generation optimizations on non-WebView builds.
1006 ['OS=="android" and android_webview_build==0', {
1007 'optimize_jni_generation%': 1,
1009 'optimize_jni_generation%': 0,
1012 # TODO(baixo): Enable v8_use_external_startup_data
1013 # http://crbug.com/421063
1014 ['android_webview_build==0 and android_webview_telemetry_build==0 and chromecast==0', {
1015 'v8_use_external_startup_data': 0,
1017 'v8_use_external_startup_data': 0,
1021 # Set this to 1 to enable use of concatenated impulse responses
1022 # for the HRTF panner in WebAudio.
1023 'use_concatenated_impulse_responses': 1,
1025 # You can set the variable 'use_official_google_api_keys' to 1
1026 # to use the Google-internal file containing official API keys
1027 # for Google Chrome even in a developer build. Setting this
1028 # variable explicitly to 1 will cause your build to fail if the
1029 # internal file is missing.
1031 # The variable is documented here, but not handled in this file;
1032 # see //google_apis/determine_use_official_keys.gypi for the
1035 # Set the variable to 0 to not use the internal file, even when
1036 # it exists in your checkout.
1038 # Leave it unset in your include.gypi to have the variable
1039 # implicitly set to 1 if you have
1040 # src/google_apis/internal/google_chrome_api_keys.h in your
1041 # checkout, and implicitly set to 0 if not.
1043 # Note that official builds always behave as if the variable
1044 # was explicitly set to 1, i.e. they always use official keys,
1045 # and will fail to build if the internal file is missing.
1047 # NOTE: You MUST NOT explicitly set the variable to 2 in your
1048 # include.gypi or by other means. Due to subtleties of GYP, this
1049 # is not the same as leaving the variable unset, even though its
1051 # //google_apis/determine_use_official_keys.gypi is 2.
1053 # Set these to bake the specified API keys and OAuth client
1054 # IDs/secrets into your build.
1056 # If you create a build without values baked in, you can instead
1057 # set environment variables to provide the keys at runtime (see
1058 # src/google_apis/google_api_keys.h for details). Features that
1059 # require server-side APIs may fail to work if no keys are
1062 # Note that if you are building an official build or if
1063 # use_official_google_api_keys has been set to 1 (explicitly or
1064 # implicitly), these values will be ignored and the official
1065 # keys will be used instead.
1066 'google_api_key%': '',
1067 'google_default_client_id%': '',
1068 'google_default_client_secret%': '',
1069 # Native Client is enabled by default.
1070 'disable_nacl%': '0',
1072 # Set to 1 to support old history files
1073 'support_pre_M6_history_database%': '1',
1076 # Copy conditionally-set variables out one scope.
1077 'branding%': '<(branding)',
1078 'buildtype%': '<(buildtype)',
1079 'target_arch%': '<(target_arch)',
1080 'target_subarch%': '<(target_subarch)',
1081 'mips_arch_variant%': '<(mips_arch_variant)',
1082 'host_arch%': '<(host_arch)',
1083 'toolkit_views%': '<(toolkit_views)',
1084 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
1085 'use_aura%': '<(use_aura)',
1086 'use_ash%': '<(use_ash)',
1087 'use_cras%': '<(use_cras)',
1088 'use_openssl%': '<(use_openssl)',
1089 'use_openssl_certs%': '<(use_openssl_certs)',
1090 'use_nss%': '<(use_nss)',
1091 'use_udev%': '<(use_udev)',
1092 'os_bsd%': '<(os_bsd)',
1093 'os_posix%': '<(os_posix)',
1094 'use_dbus%': '<(use_dbus)',
1095 'use_glib%': '<(use_glib)',
1096 'use_pango%': '<(use_pango)',
1097 'use_cairo%': '<(use_cairo)',
1098 'use_ozone%': '<(use_ozone)',
1099 'use_ozone_evdev%': '<(use_ozone_evdev)',
1100 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
1101 'desktop_linux%': '<(desktop_linux)',
1102 'use_x11%': '<(use_x11)',
1103 'use_gnome_keyring%': '<(use_gnome_keyring)',
1104 'linux_fpic%': '<(linux_fpic)',
1105 'chromeos%': '<(chromeos)',
1106 'chromecast%': '<(chromecast)',
1107 'enable_viewport%': '<(enable_viewport)',
1108 'enable_hidpi%': '<(enable_hidpi)',
1109 'use_xi2_mt%':'<(use_xi2_mt)',
1110 'image_loader_extension%': '<(image_loader_extension)',
1111 'fastbuild%': '<(fastbuild)',
1112 'dont_embed_build_metadata%': '<(dont_embed_build_metadata)',
1113 'win_z7%': '<(win_z7)',
1114 'dcheck_always_on%': '<(dcheck_always_on)',
1115 'tracing_like_official_build%': '<(tracing_like_official_build)',
1116 'arm_version%': '<(arm_version)',
1117 'arm_neon%': '<(arm_neon)',
1118 'arm_neon_optional%': '<(arm_neon_optional)',
1119 'sysroot%': '<(sysroot)',
1120 'chroot_cmd%': '<(chroot_cmd)',
1121 'system_libdir%': '<(system_libdir)',
1122 'component%': '<(component)',
1123 'win_analyze%': '<(win_analyze)',
1124 'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_generation)',
1125 'use_titlecase_in_grd%': '<(use_titlecase_in_grd)',
1126 'use_third_party_translations%': '<(use_third_party_translations)',
1127 'remoting%': '<(remoting)',
1128 'enable_one_click_signin%': '<(enable_one_click_signin)',
1129 'enable_pre_sync_backup%': '<(enable_pre_sync_backup)',
1130 'enable_webrtc%': '<(enable_webrtc)',
1131 'chromium_win_pch%': '<(chromium_win_pch)',
1132 'configuration_policy%': '<(configuration_policy)',
1133 'safe_browsing%': '<(safe_browsing)',
1134 'enable_web_speech%': '<(enable_web_speech)',
1135 'notifications%': '<(notifications)',
1136 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
1137 'mac_want_real_dsym%': '<(mac_want_real_dsym)',
1139 'asan_blacklist%': '<(asan_blacklist)',
1140 'asan_coverage%': '<(asan_coverage)',
1141 'asan_field_padding%': '<(asan_field_padding)',
1142 'use_sanitizer_options%': '<(use_sanitizer_options)',
1143 'syzyasan%': '<(syzyasan)',
1144 'syzygy_optimize%': '<(syzygy_optimize)',
1147 'msan_blacklist%': '<(msan_blacklist)',
1148 'msan_track_origins%': '<(msan_track_origins)',
1150 'tsan_blacklist%': '<(tsan_blacklist)',
1151 'ubsan%': '<(ubsan)',
1152 'ubsan_vptr%': '<(ubsan_vptr)',
1153 'ubsan_vptr_blacklist%': '<(ubsan_vptr_blacklist)',
1154 'use_instrumented_libraries%': '<(use_instrumented_libraries)',
1155 'use_custom_libcxx%': '<(use_custom_libcxx)',
1156 'use_system_libcxx%': '<(use_system_libcxx)',
1157 'clang_type_profiler%': '<(clang_type_profiler)',
1158 'order_profiling%': '<(order_profiling)',
1159 'order_text_section%': '<(order_text_section)',
1160 'enable_extensions%': '<(enable_extensions)',
1161 'enable_plugin_installation%': '<(enable_plugin_installation)',
1162 'enable_plugins%': '<(enable_plugins)',
1163 'enable_session_service%': '<(enable_session_service)',
1164 'enable_themes%': '<(enable_themes)',
1165 'enable_autofill_dialog%': '<(enable_autofill_dialog)',
1166 'enable_prod_wallet_service%': '<(enable_prod_wallet_service)',
1167 'enable_background%': '<(enable_background)',
1168 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
1169 'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
1170 'linux_use_gold_flags%': '<(linux_use_gold_flags)',
1171 'linux_use_debug_fission%': '<(linux_use_debug_fission)',
1172 'use_canvas_skia%': '<(use_canvas_skia)',
1173 'test_isolation_mode%': '<(test_isolation_mode)',
1174 'test_isolation_outdir%': '<(test_isolation_outdir)',
1175 'test_isolation_fail_on_missing': '<(test_isolation_fail_on_missing)',
1176 'enable_printing%': '<(enable_printing)',
1177 'enable_spellcheck%': '<(enable_spellcheck)',
1178 'enable_google_now%': '<(enable_google_now)',
1179 'cld_version%': '<(cld_version)',
1180 'cld2_table_size%': '<(cld2_table_size)',
1181 'cld2_data_source%': '<(cld2_data_source)',
1182 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1183 'disable_file_support%': '<(disable_file_support)',
1184 'disable_ftp_support%': '<(disable_ftp_support)',
1185 'use_icu_alternatives_on_android%': '<(use_icu_alternatives_on_android)',
1186 'enable_task_manager%': '<(enable_task_manager)',
1187 'sas_dll_path%': '<(sas_dll_path)',
1188 'wix_path%': '<(wix_path)',
1189 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1190 'use_system_libjpeg%': '<(use_system_libjpeg)',
1191 'android_channel%': '<(android_channel)',
1192 'android_webview_build%': '<(android_webview_build)',
1193 'android_webview_telemetry_build%': '<(android_webview_telemetry_build)',
1194 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1195 'gyp_managed_install%': 0,
1196 'create_standalone_apk%': 1,
1197 'enable_app_list%': '<(enable_app_list)',
1198 'use_default_render_theme%': '<(use_default_render_theme)',
1199 'enable_settings_app%': '<(enable_settings_app)',
1200 'google_api_key%': '<(google_api_key)',
1201 'google_default_client_id%': '<(google_default_client_id)',
1202 'google_default_client_secret%': '<(google_default_client_secret)',
1203 'enable_managed_users%': '<(enable_managed_users)',
1204 'native_discardable_memory%': '<(native_discardable_memory)',
1205 'native_memory_pressure_signals%': '<(native_memory_pressure_signals)',
1206 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
1207 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
1208 'enable_mdns%' : '<(enable_mdns)',
1209 'enable_service_discovery%' : '<(enable_service_discovery)',
1210 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)',
1211 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)',
1212 'v8_optimized_debug%': '<(v8_optimized_debug)',
1213 'proprietary_codecs%': '<(proprietary_codecs)',
1214 'use_goma%': '<(use_goma)',
1215 'gomadir%': '<(gomadir)',
1216 'use_lto%': '<(use_lto)',
1217 'use_lto_o2%': '<(use_lto_o2)',
1218 'video_hole%': '<(video_hole)',
1219 'enable_load_completion_hacks%': '<(enable_load_completion_hacks)',
1220 'support_pre_M6_history_database%': '<(support_pre_M6_history_database)',
1221 'v8_use_external_startup_data': '<(v8_use_external_startup_data)',
1223 # Whether or not we are building the Athena shell.
1226 # Use system protobuf instead of bundled one.
1227 'use_system_protobuf%': 0,
1229 # Use system yasm instead of bundled one.
1230 'use_system_yasm%': 0,
1232 # Use system ICU instead of bundled one.
1233 'use_system_icu%' : 0,
1235 # Default to enabled PIE; this is important for ASLR but we may need to be
1236 # able to turn it off for various reasons.
1237 'linux_disable_pie%': 0,
1239 # The release channel that this build targets. This is used to restrict
1240 # channel-specific build options, like which installer packages to create.
1241 # The default is 'all', which does no channel-specific filtering.
1244 # Override chromium_mac_pch and set it to 0 to suppress the use of
1245 # precompiled headers on the Mac. Prefix header injection may still be
1246 # used, but prefix headers will not be precompiled. This is useful when
1247 # using distcc to distribute a build to compile slaves that don't
1248 # share the same compiler executable as the system driving the compilation,
1249 # because precompiled headers rely on pointers into a specific compiler
1250 # executable's image. Setting this to 0 is needed to use an experimental
1251 # Linux-Mac cross compiler distcc farm.
1252 'chromium_mac_pch%': 1,
1254 # The default value for mac_strip in target_defaults. This cannot be
1255 # set there, per the comment about variable% in a target_defaults.
1256 'mac_strip_release%': 0,
1258 # Set to 1 to enable java code coverage. Instruments classes during build
1259 # to produce .ec files during runtime.
1260 'emma_coverage%': 0,
1262 # EMMA filter string consisting of a list of inclusion/exclusion patterns
1263 # separated with whitespace and/or comma. Only has effect if
1264 # 'emma_coverage=1'.
1267 # Set to 1 to enable running Android lint on java/class files.
1270 # Although base/allocator lets you select a heap library via an
1271 # environment variable, the libcmt shim it uses sometimes gets in
1272 # the way. To disable it entirely, and switch to normal msvcrt, do e.g.
1273 # 'win_use_allocator_shim': 0,
1274 # 'win_release_RuntimeLibrary': 2
1275 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build.
1276 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt
1278 # TODO(bradnelson): eliminate this when possible.
1279 # To allow local gyp files to prevent release.vsprops from being included.
1280 # Yes(1) means include release.vsprops.
1281 # Once all vsprops settings are migrated into gyp, this can go away.
1282 'msvs_use_common_release%': 1,
1284 # TODO(bradnelson): eliminate this when possible.
1285 # To allow local gyp files to override additional linker options for msvs.
1286 # Yes(1) means set use the common linker options.
1287 'msvs_use_common_linker_extras%': 1,
1289 # TODO(sgk): eliminate this if possible.
1290 # It would be nicer to support this via a setting in 'target_defaults'
1291 # in chrome/app/locales/locales.gypi overriding the setting in the
1292 # 'Debug' configuration in the 'target_defaults' dict below,
1293 # but that doesn't work as we'd like.
1294 'msvs_debug_link_incremental%': '2',
1296 # Needed for some of the largest modules.
1297 'msvs_debug_link_nonincremental%': '1',
1299 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows
1300 # to get incremental linking to be faster in debug builds.
1301 'incremental_chrome_dll%': '0',
1303 # Experimental setting to break chrome.dll into multiple pieces based on
1305 'chrome_multiple_dll%': '0',
1307 # Experimental setting to optimize Chrome's DLLs with PGO.
1308 'chrome_pgo_phase%': '0',
1311 'clang%': '<(clang)',
1312 'host_clang%': '<(host_clang)',
1313 'make_clang_dir%': '<(make_clang_dir)',
1315 # Control which version of clang to use when building for iOS. If set to
1316 # '1', uses the version of clang that ships with Xcode. If set to '0', uses
1317 # the version of clang that ships with the Chromium source. This variable
1318 # is automatically set to '1' when using the Xcode generator.
1321 # These two variables can be set in GYP_DEFINES while running
1322 # |gclient runhooks| to let clang run a plugin in every compilation.
1323 # Only has an effect if 'clang=1' is in GYP_DEFINES as well.
1325 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dylib clang_add_plugin=print-fns' gclient runhooks
1328 'clang_add_plugin%': '',
1330 # Tell ld64 to write map files describing binary layout. Useful
1331 # for looking at what contributes to binary size, e.g. with
1332 # https://github.com/nico/bloat
1333 'mac_write_linker_maps%': 0,
1335 # The default type of gtest.
1336 'gtest_target_type%': 'executable',
1338 # Enable sampling based profiler.
1339 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
1341 # Profile without optimizing out stack frames when profiling==1.
1342 'profiling_full_stack_frames%': '0',
1344 # And if we want to dump symbols for Breakpad-enabled builds.
1345 'linux_dump_symbols%': 0,
1346 # And if we want to strip the binary after dumping symbols.
1347 'linux_strip_binary%': 0,
1348 # If we want stack unwind support for backtrace().
1349 'debug_unwind_tables%': 1,
1350 'release_unwind_tables%': 1,
1352 # Override where to find binutils
1353 'binutils_version%': 0,
1354 'binutils_dir%': '',
1357 # Default of 'use_allocator' is set to 'none' if OS=='android' later.
1358 'use_allocator%': 'tcmalloc',
1360 # Set to 1 to link against libgnome-keyring instead of using dlopen().
1361 'linux_link_gnome_keyring%': 0,
1362 # Set to 1 to link against gsettings APIs instead of using dlopen().
1363 'linux_link_gsettings%': 0,
1365 # Enable use of OpenMAX DL FFT routines.
1366 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
1368 # Enable new NPDevice API.
1369 'enable_new_npdevice_api%': 0,
1371 # .gyp files or targets should set chromium_code to 1 if they build
1372 # Chromium-specific code, as opposed to external code. This variable is
1373 # used to control such things as the set of warnings to enable, and
1374 # whether warnings are treated as errors.
1375 'chromium_code%': 0,
1377 # Disable fatal linker warnings, similarly to how we make it possible
1378 # to disable -Werror (e.g. for different toolchain versions).
1379 'disable_fatal_linker_warnings%': 0,
1381 'release_valgrind_build%': 0,
1383 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
1384 'enable_wexit_time_destructors%': 0,
1386 # Build libpeerconnection as a static library by default.
1387 'libpeer_target_type%': 'static_library',
1389 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
1390 'internal_gles2_conform_tests%': 0,
1392 # Set to 1 to compile with the Khronos GL-CTS conformance tests.
1393 'internal_khronos_glcts_tests%': 0,
1395 # Set to 1 to compile the filter fuzzer.
1396 'internal_filter_fuzzer%': 0,
1398 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
1399 # so Cocoa is happy (http://crbug.com/20441).
1401 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB',
1402 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he',
1403 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv',
1404 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
1405 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk',
1406 'vi', 'zh-CN', 'zh-TW',
1409 # Pseudo locales are special locales which are used for testing and
1410 # debugging. They don't get copied to the final app. For more info,
1411 # check out https://sites.google.com/a/chromium.org/dev/Home/fake-bidi
1418 # If debug_devtools is set to 1, JavaScript files for DevTools are
1419 # stored as is and loaded from disk. Otherwise, a concatenated file
1420 # is stored in resources.pak. It is still possible to load JS files
1421 # from disk by passing --debug-devtools cmdline switch.
1422 'debug_devtools%': 0,
1424 # The Java Bridge is not compiled in by default.
1427 # Code signing for iOS binaries. The bots need to be able to disable this.
1428 'chromium_ios_signing%': 1,
1430 # This flag is only used when disable_nacl==0 and disables all those
1431 # subcomponents which would require the installation of a native_client
1432 # untrusted toolchain.
1433 'disable_nacl_untrusted%': 0,
1435 # Disable Dart by default.
1438 # Copy out the setting of disable_nacl.
1439 'disable_nacl%': '<(disable_nacl)',
1441 # Portable Native Client is enabled by default.
1442 'disable_pnacl%': 0,
1444 # Whether to build full debug version for Debug configuration on Android.
1445 # Compared to full debug version, the default Debug configuration on Android
1446 # has no full v8 debug, has size optimization and linker gc section, so that
1447 # we can build a debug version with acceptable size and performance.
1448 'android_full_debug%': 0,
1450 # Sets the default version name and code for Android app, by default we
1451 # do a developer build.
1452 'android_app_version_name%': 'Developer Build',
1453 'android_app_version_code%': 1,
1455 # Contains data about the attached devices for gyp_managed_install.
1456 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1458 'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
1459 'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
1461 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1462 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1464 # Whether we are using the rlz library or not. Platforms like Android send
1465 # rlz codes for searches but do not use the library.
1468 # Turns on the i18n support in V8.
1469 'v8_enable_i18n_support': 1,
1471 # Compile d8 for the host toolset.
1472 'v8_toolset_for_d8': 'host',
1474 # Use brlapi from brltty for braille display support.
1477 # Relative path to icu.gyp from this file.
1478 'icu_gyp_path': '../third_party/icu/icu.gyp',
1480 # IPC fuzzer is disabled by default.
1481 'enable_ipc_fuzzer%': 0,
1484 # Force disable libstdc++ debug mode.
1485 'disable_glibcxx_debug%': 0,
1487 # Set to 1 to compile with MSE support for MPEG2 TS
1488 'enable_mpeg2ts_stream_parser%': 0,
1490 # Support ChromeOS touchpad gestures with ozone.
1491 'use_evdev_gestures%': 0,
1493 # Default ozone platform (if no --ozone-platform flag).
1494 'ozone_platform%': "",
1496 # Ozone platforms to include in the build.
1497 'ozone_platform_caca%': 0,
1498 'ozone_platform_dri%': 0,
1499 'ozone_platform_egltest%': 0,
1500 'ozone_platform_gbm%': 0,
1501 'ozone_platform_ozonex%': 0,
1502 'ozone_platform_test%': 0,
1505 # Enable the Syzygy optimization step for the official builds.
1506 ['OS=="win" and buildtype=="Official" and syzyasan!=1', {
1507 'syzygy_optimize%': 1,
1509 'syzygy_optimize%': 0,
1511 # Get binutils version so we can enable debug fission if we can.
1512 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1514 # compiler_version doesn't work with clang
1515 # TODO(mithro): Land https://codereview.chromium.org/199793014/ so
1516 # compiler_version works with clang.
1517 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so
1518 # that it takes effect here.
1519 ['clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', {
1520 'binutils_version%': '<!pymod_do_main(compiler_version target assembler)',
1522 # On Android we know the binutils version in the toolchain.
1524 'binutils_version%': 222,
1526 ['host_arch=="x64"', {
1527 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1529 ['host_arch=="ia32"', {
1530 'binutils_dir%': 'third_party/binutils/Linux_ia32/Release/bin',
1532 # Our version of binutils in third_party/binutils
1533 ['linux_use_bundled_binutils==1', {
1534 'binutils_version%': 224,
1538 'binutils_version%': 0,
1540 # The version of GCC in use, set later in platforms that use GCC and have
1541 # not explicitly chosen to build with clang. Currently, this means all
1542 # platforms except Windows, Mac and iOS.
1543 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1544 # it takes effect here.
1545 ['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', {
1547 ['OS=="android" and android_webview_build==0', {
1548 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1549 # We directly set the gcc version since we know what we use.
1552 ['OS=="android" and android_webview_build==1', {
1553 # Android WebView uses a hermetic clang toolchain for host builds.
1554 'host_gcc_version%': 0,
1555 # Android WebView uses the GCC toolchain from the Android build.
1559 'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
1560 'gcc_version%': '<!pymod_do_main(compiler_version target compiler)',
1564 'host_gcc_version%': 0,
1567 ['OS=="win" and "<!pymod_do_main(dir_exists <(windows_sdk_default_path))"=="True"', {
1568 'windows_sdk_path%': '<(windows_sdk_default_path)',
1570 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0',
1572 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=="True"', {
1573 'directx_sdk_path%': '<(directx_sdk_default_path)',
1575 'directx_sdk_path%': '$(DXSDK_DIR)',
1578 'windows_driver_kit_path%': '$(WDK_DIR)',
1580 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1582 ['target_arch=="mipsel" or target_arch=="mips64el"', {
1585 'nacl_untrusted_build%': 0,
1586 'use_allocator%': 'none',
1588 ['OS=="linux" and target_arch=="mipsel"', {
1589 'sysroot%': '<(sysroot)',
1592 # All Chrome builds have breakpad symbols, but only process the
1593 # symbols from official builds.
1594 ['(branding=="Chrome" and buildtype=="Official")', {
1595 'linux_dump_symbols%': 1,
1597 # Omit unwind support in official release builds to save space. We
1598 # can use breakpad for these builds.
1599 'release_unwind_tables%': 0,
1602 # For official builds, use a 64-bit linker to avoid running out
1603 # of address space. The buildbots should have a 64-bit kernel
1604 # and a 64-bit libc installed.
1605 ['host_arch=="ia32" and target_arch=="ia32"', {
1606 'linux_use_bundled_gold%': '1',
1607 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1612 }], # os_posix==1 and OS!="mac" and OS!="ios"
1615 'enable_background%': 0,
1616 'icu_use_data_file_flag%': 1,
1617 'enable_web_speech%': 0,
1618 'use_system_libxml%': 1,
1619 'use_system_sqlite%': 1,
1621 'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
1622 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
1623 'nb', 'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr',
1624 'uk', 'vi', 'zh-CN', 'zh-TW',
1627 # iOS SDK and deployment target support. The |ios_sdk| value is left
1628 # blank so that when it is set in the project files it will be the
1629 # "current" iOS SDK. Forcing a specific SDK even if it is "current"
1630 # causes Xcode to spit out a warning for every single project file for
1631 # not using the "current" SDK.
1633 'ios_sdk_path%': '',
1634 'ios_deployment_target%': '7.0',
1637 # ios_product_name is set to the name of the .app bundle as it should
1639 ['branding=="Chrome"', {
1640 'ios_product_name%': 'Chrome',
1641 }, { # else: branding!="Chrome"
1642 'ios_product_name%': 'Chromium',
1644 ['branding=="Chrome" and buildtype=="Official"', {
1646 }, { # else: branding!="Chrome" or buildtype!="Official"
1652 # Location of Android NDK.
1655 # Unfortunately we have to use absolute paths to the SDK/NDK because
1656 # they're passed to ant which uses a different relative path from
1658 'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/ndk/',
1659 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/sdk/',
1660 'android_host_arch%': '<!(uname -m)',
1661 # Android API-level of the SDK used for compilation.
1662 'android_sdk_version%': '21',
1663 'android_sdk_build_tools_version%': '21.0.1',
1664 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
1666 # Copy conditionally-set variables out one scope.
1667 'android_ndk_root%': '<(android_ndk_root)',
1668 'android_sdk_root%': '<(android_sdk_root)',
1669 'android_sdk_version%': '<(android_sdk_version)',
1670 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport',
1671 'host_os%': '<(host_os)',
1673 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_version)',
1674 # Android SDK build tools (e.g. dx, aapt, aidl)
1675 'android_sdk_tools%': '<(android_sdk_root)/build-tools/<(android_sdk_build_tools_version)',
1677 # Android API level 14 is ICS (Android 4.0) which is the minimum
1678 # platform requirement for Chrome on Android, we use it for native
1681 ['target_arch == "ia32"', {
1682 'android_app_abi%': 'x86',
1683 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-x86/gdbserver/gdbserver',
1684 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-x86',
1685 'android_ndk_lib_dir%': 'usr/lib',
1686 'android_toolchain%': '<(android_ndk_root)/toolchains/x86-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1688 ['target_arch == "x64"', {
1689 'android_app_abi%': 'x86_64',
1690 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-x86_64/gdbserver/gdbserver',
1691 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-x86_64',
1692 'android_ndk_lib_dir%': 'usr/lib64',
1693 'android_toolchain%': '<(android_ndk_root)/toolchains/x86_64-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1695 ['target_arch=="arm"', {
1698 'android_app_abi%': 'armeabi',
1700 'android_app_abi%': 'armeabi-v7a',
1703 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-arm/gdbserver/gdbserver',
1704 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-arm',
1705 'android_ndk_lib_dir%': 'usr/lib',
1706 'android_toolchain%': '<(android_ndk_root)/toolchains/arm-linux-androideabi-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1708 ['target_arch == "arm64"', {
1709 'android_app_abi%': 'arm64-v8a',
1710 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-arm64/gdbserver/gdbserver',
1711 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-arm64',
1712 'android_ndk_lib_dir%': 'usr/lib',
1713 'android_toolchain%': '<(android_ndk_root)/toolchains/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1715 ['target_arch == "mipsel"', {
1716 'android_app_abi%': 'mips',
1717 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-mips/gdbserver/gdbserver',
1718 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-mips',
1719 'android_ndk_lib_dir%': 'usr/lib',
1720 'android_toolchain%': '<(android_ndk_root)/toolchains/mipsel-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1722 ['target_arch == "mips64el"', {
1723 'android_app_abi%': 'mips64',
1724 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-mips64/gdbserver/gdbserver',
1725 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-21/arch-mips64',
1726 'android_ndk_lib_dir%': 'usr/lib64',
1727 'android_toolchain%': '<(android_ndk_root)/toolchains/mips64el-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
1732 # Copy conditionally-set variables out one scope.
1733 'android_app_abi%': '<(android_app_abi)',
1734 'android_gdbserver%': '<(android_gdbserver)',
1735 'android_ndk_root%': '<(android_ndk_root)',
1736 'android_ndk_sysroot%': '<(android_ndk_sysroot)',
1737 'android_sdk_root%': '<(android_sdk_root)',
1738 'android_sdk_version%': '<(android_sdk_version)',
1739 'android_toolchain%': '<(android_toolchain)',
1741 'android_ndk_include': '<(android_ndk_sysroot)/usr/include',
1742 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
1743 'android_sdk_tools%': '<(android_sdk_tools)',
1744 'android_sdk%': '<(android_sdk)',
1745 'android_sdk_jar%': '<(android_sdk)/android.jar',
1747 'android_stlport_root': '<(android_stlport_root)',
1748 'android_stlport_include': '<(android_stlport_root)/stlport',
1749 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_abi)',
1750 'host_os%': '<(host_os)',
1752 # Location of the "objcopy" binary, used by both gyp and scripts.
1753 'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)',
1755 # Location of the "strip" binary, used by both gyp and scripts.
1756 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
1758 # Location of the "readelf" binary.
1759 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1761 # Determines whether we should optimize JNI generation at the cost of
1762 # breaking assumptions in the build system that when inputs have changed
1763 # the outputs should always change as well. This is meant purely for
1764 # developer builds, to avoid spurious re-linking of native files.
1765 'optimize_jni_generation%': '<(optimize_jni_generation)',
1767 # Always uses openssl.
1769 'use_openssl_certs%': 1,
1771 'proprietary_codecs%': '<(proprietary_codecs)',
1772 'safe_browsing%': 1,
1773 'enable_web_speech%': 0,
1775 'build_ffmpegsumo%': 0,
1776 'use_allocator%': 'none',
1778 # Disable Native Client.
1781 # Android does not support background apps.
1782 'enable_background%': 0,
1784 # Sessions are store separately in the Java side.
1785 'enable_session_service%': 0,
1789 'gtest_target_type%': 'shared_library',
1791 # Uses system APIs for decoding audio and video.
1792 'use_libffmpeg%': '0',
1794 # TODO(torne): Remove this unsupported option once all the places that
1795 # test it have been updated.
1796 'use_system_stlport%': 0,
1798 # Copy it out one scope.
1799 'android_webview_build%': '<(android_webview_build)',
1801 # Default android linker script for shared library exports.
1802 'android_linker_script%': '<(SHARED_INTERMEDIATE_DIR)/android_exports.lst',
1805 'use_system_fontconfig%': 0,
1807 'use_system_fontconfig%': 1,
1810 'enable_mpeg2ts_stream_parser%': 1,
1811 'ffmpeg_branding%': 'Chrome',
1812 'ozone_platform_ozonex%': 1,
1813 'use_playready%': 0,
1815 ['target_arch=="arm"', {
1817 'arm_tune%': 'cortex-a9',
1823 ['android_webview_build==1', {
1824 # When building the WebView in the Android tree, jarjar will remap all
1825 # the class names, so the JNI generator needs to know this.
1826 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt',
1828 ['OS=="linux" and target_arch!="mipsel"', {
1829 # TODO(thakis): This is here to measure perf for a while.
1834 # All Chrome builds have breakpad symbols, but only process the
1835 # symbols from official builds.
1836 ['(branding=="Chrome" and buildtype=="Official")', {
1837 'mac_strip_release%': 1,
1841 ['OS=="mac" or OS=="ios"', {
1845 # Mac OS X SDK and deployment target support. The SDK identifies
1846 # the version of the system headers that will be used, and
1847 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
1848 # macro. "Maximum allowed" refers to the operating system version
1849 # whose APIs are available in the headers. The deployment target
1850 # identifies the minimum system version that the built products are
1851 # expected to function on. It corresponds to the
1852 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these
1853 # macros are available, #include <AvailabilityMacros.h>. Additional
1854 # documentation on these macros is available at
1855 # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTION3
1856 # Chrome normally builds with the Mac OS X 10.6 SDK and sets the
1857 # deployment target to 10.6. Other projects, such as O3D, may
1858 # override these defaults.
1860 # Normally, mac_sdk_min is used to find an SDK that Xcode knows
1861 # about that is at least the specified version. In official builds,
1862 # the SDK must match mac_sdk_min exactly. If the SDK is installed
1863 # someplace that Xcode doesn't know about, set mac_sdk_path to the
1864 # path to the SDK; when set to a non-empty string, SDK detection
1865 # based on mac_sdk_min will be bypassed entirely.
1868 'mac_sdk_min%': '10.8',
1869 }, { # else OS!="ios"
1870 'mac_sdk_min%': '10.6',
1873 'mac_sdk_path%': '',
1875 'mac_deployment_target%': '10.6',
1878 'mac_sdk_min': '<(mac_sdk_min)',
1879 'mac_sdk_path': '<(mac_sdk_path)',
1880 'mac_deployment_target': '<(mac_deployment_target)',
1882 # Compile in Breakpad support by default so that it can be
1883 # tested, even if it is not enabled by default at runtime.
1884 'mac_breakpad_compiled_in%': 1,
1886 # mac_product_name is set to the name of the .app bundle as it should
1887 # appear on disk. This duplicates data from
1888 # chrome/app/theme/chromium/BRANDING and
1889 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get
1890 # these names into the build system.
1891 ['branding=="Chrome"', {
1892 'mac_product_name%': 'Google Chrome',
1893 }, { # else: branding!="Chrome"
1894 'mac_product_name%': 'Chromium',
1896 # Official mac builds require a specific OS X SDK, but iOS and
1897 # non-official mac builds do not.
1898 ['branding=="Chrome" and buildtype=="Official" and OS=="mac"', {
1899 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac_sdk_min) --sdk_path=<(mac_sdk_path))',
1901 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))',
1903 ['branding=="Chrome" and buildtype=="Official"', {
1904 # Enable uploading crash dumps.
1905 'mac_breakpad_uploads%': 1,
1906 # Enable dumping symbols at build time for use by Mac Breakpad.
1908 # Enable Keystone auto-update support.
1910 }, { # else: branding!="Chrome" or buildtype!="Official"
1911 'mac_breakpad_uploads%': 0,
1916 }], # OS=="mac" or OS=="ios"
1919 # This is the architecture convention used in WinSDK paths.
1920 ['target_arch=="ia32"', {
1921 'winsdk_arch%': 'x86',
1923 'winsdk_arch%': '<(target_arch)',
1925 ['component=="shared_library"', {
1926 'win_use_allocator_shim%': 0,
1928 # Turn on multiple dll by default on Windows when in static_library.
1929 'chrome_multiple_dll%': 1,
1932 'win_use_allocator_shim%': 0,
1934 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', {
1935 # Only enabled by default for ninja because it's buggy in VS.
1936 # Not enabled for component=static_library because some targets
1937 # are too large and the toolchain fails due to the size of the
1939 'incremental_chrome_dll%': 1,
1941 # Don't do incremental linking for large modules on 32-bit or when
1942 # component=static_library as the toolchain fails due to the size of
1944 ['MSVS_OS_BITS==32 or component=="static_library"', {
1945 'msvs_large_module_debug_link_mode%': '1', # No
1947 'msvs_large_module_debug_link_mode%': '2', # Yes
1949 ['MSVS_VERSION=="2013e"', {
1957 'nacl_win64_defines': [
1958 # This flag is used to minimize dependencies when building
1959 # Native Client loader for 64-bit Windows.
1964 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios" and embedded==0', {
1970 ['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win")', {
1971 'enable_pepper_cdms%': 1,
1973 'enable_pepper_cdms%': 0,
1977 'enable_browser_cdms%': 1,
1979 'enable_browser_cdms%': 0,
1982 # Native Client glibc toolchain is enabled
1983 # by default except on arm, mips and mips64.
1984 ['target_arch=="arm" or target_arch=="mipsel" or target_arch=="mips64el"', {
1985 'disable_glibc%': 1,
1987 'disable_glibc%': 0,
1990 # Set the relative path from this file to the GYP file of the JPEG
1991 # library used by Chromium.
1992 ['use_system_libjpeg==1 or use_libjpeg_turbo==0', {
1993 # Configuration for using the system libjeg is here.
1994 'libjpeg_gyp_path': '../third_party/libjpeg/libjpeg.gyp',
1996 'libjpeg_gyp_path': '../third_party/libjpeg_turbo/libjpeg.gyp',
1999 # Options controlling the use of GConf (the classic GNOME configuration
2000 # system) and GIO, which contains GSettings (the new GNOME config system).
2001 ['chromeos==1 or embedded==1', {
2009 # Set up -D and -E flags passed into grit.
2010 ['branding=="Chrome"', {
2011 # TODO(mmoss) The .grd files look for _google_chrome, but for
2012 # consistency they should look for google_chrome_build like C++.
2013 'grit_defines': ['-D', '_google_chrome',
2014 '-E', 'CHROMIUM_BUILD=google_chrome'],
2016 'grit_defines': ['-D', '_chromium',
2017 '-E', 'CHROMIUM_BUILD=chromium'],
2020 'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'],
2022 ['desktop_linux==1', {
2023 'grit_defines': ['-D', 'desktop_linux'],
2025 ['toolkit_views==1', {
2026 'grit_defines': ['-D', 'toolkit_views'],
2029 'grit_defines': ['-D', 'use_aura'],
2032 'grit_defines': ['-D', 'use_ash'],
2035 'grit_defines': ['-D', 'use_nss'],
2038 'grit_defines': ['-D', 'use_ozone'],
2040 ['image_loader_extension==1', {
2041 'grit_defines': ['-D', 'image_loader_extension'],
2044 'grit_defines': ['-D', 'remoting'],
2046 ['use_titlecase_in_grd==1', {
2047 'grit_defines': ['-D', 'use_titlecase'],
2049 ['use_third_party_translations==1', {
2050 'grit_defines': ['-D', 'use_third_party_translations'],
2052 'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia',
2053 'ka', 'ku', 'kw', 'ms', 'ug'
2057 'grit_defines': ['-t', 'android',
2058 '-E', 'ANDROID_JAVA_TAGGED_ONLY=true'],
2060 ['OS=="mac" or OS=="ios"', {
2061 'grit_defines': ['-D', 'scale_factors=2x'],
2066 # iOS uses a whitelist to filter resources.
2067 '-w', '<(DEPTH)/build/ios/grit_whitelist.txt'
2070 # Enable host builds when generating with ninja-ios.
2072 ['"<(GENERATOR)"=="ninja"', {
2076 # TODO(sdefresne): Remove the target_subarch check once Apple has
2077 # upstreamed the support for "arm64". http://crbug.com/341453
2078 ['target_subarch!="arm32" or "<(GENERATOR)"=="xcode"', {
2083 ['enable_extensions==1', {
2084 'grit_defines': ['-D', 'enable_extensions'],
2086 ['enable_plugins!=0', {
2087 'grit_defines': ['-D', 'enable_plugins'],
2089 ['enable_printing!=0', {
2090 'grit_defines': ['-D', 'enable_printing'],
2092 ['enable_printing==1', {
2093 'grit_defines': ['-D', 'enable_full_printing'],
2095 ['enable_themes==1', {
2096 'grit_defines': ['-D', 'enable_themes'],
2098 ['enable_app_list==1', {
2099 'grit_defines': ['-D', 'enable_app_list'],
2101 ['enable_settings_app==1', {
2102 'grit_defines': ['-D', 'enable_settings_app'],
2104 ['enable_google_now==1', {
2105 'grit_defines': ['-D', 'enable_google_now'],
2107 ['use_concatenated_impulse_responses==1', {
2108 'grit_defines': ['-D', 'use_concatenated_impulse_responses'],
2110 ['enable_webrtc==1', {
2111 'grit_defines': ['-D', 'enable_webrtc'],
2113 ['enable_hangout_services_extension==1', {
2114 'grit_defines': ['-D', 'enable_hangout_services_extension'],
2116 ['enable_task_manager==1', {
2117 'grit_defines': ['-D', 'enable_task_manager'],
2119 ['notifications==1', {
2120 'grit_defines': ['-D', 'enable_notifications'],
2122 ['enable_wifi_bootstrapping==1', {
2123 'grit_defines': ['-D', 'enable_wifi_bootstrapping'],
2125 ['enable_resource_whitelist_generation==1 and OS!="win"', {
2126 'grit_rc_header_format': ['-h', '#define {textual_id} _Pragma("whitelisted_resource_{numeric_id}") {numeric_id}'],
2128 ['enable_resource_whitelist_generation==1 and OS=="win"', {
2129 'grit_rc_header_format': ['-h', '#define {textual_id} __pragma(message("whitelisted_resource_{numeric_id}")) {numeric_id}'],
2131 ['enable_mdns==1 or OS=="mac"', {
2132 'grit_defines': ['-D', 'enable_service_discovery'],
2133 'enable_service_discovery%': 1
2135 ['clang_use_chrome_plugins==1 and OS!="win"', {
2136 'clang_chrome_plugins_flags': [
2137 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)'
2140 ['asan==1 or msan==1 or lsan==1 or tsan==1', {
2142 'use_allocator%': 'none',
2143 'use_sanitizer_options%': 1,
2145 ['asan==1 and OS=="linux" and chromeos==0', {
2146 'use_custom_libcxx%': 1,
2154 ['asan==1 and OS=="mac"', {
2155 # TODO(glider): we do not strip ASan binaries until the dynamic ASan
2156 # runtime is fully adopted. See http://crbug.com/242503.
2157 'mac_strip_release': 0,
2160 'use_custom_libcxx%': 1,
2163 # Use a just-built, MSan-instrumented libc++ instead of the system-wide
2164 # libstdc++. This is required to avoid false positive reports whenever
2165 # the C++ standard library is used.
2166 'use_custom_libcxx%': 1,
2167 # Running the V8-generated code on an ARM simulator is a powerful hack
2168 # that allows the tool to see the memory accesses from JITted code.
2169 # Without this flag, JS code causes false positive reports from MSan.
2170 'v8_target_arch': 'arm64',
2173 ['OS=="linux" and clang_type_profiler==1', {
2175 'clang_use_chrome_plugins%': 0,
2177 ['host_arch=="x64"', {
2178 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_x64',
2180 ['host_arch=="ia32"', {
2181 # 32-bit Clang is unsupported. It may not build. Put your 32-bit
2182 # Clang in this directory at your own risk if needed for some
2183 # purpose (e.g. to compare 32-bit and 64-bit behavior like memory
2184 # usage). Any failure by this compiler should not close the tree.
2185 'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32',
2191 # The Clang plugins don't currently work on Windows.
2192 # TODO(hans): One day, this will work. (crbug.com/82385)
2193 'clang_use_chrome_plugins%': 0,
2196 # On valgrind bots, override the optimizer settings so we don't inline too
2197 # much and make the stacks harder to figure out.
2199 # TODO(rnk): Kill off variables that no one else uses and just implement
2200 # them under a build_for_tool== condition.
2201 ['build_for_tool=="memcheck" or build_for_tool=="tsan"', {
2203 'mac_debug_optimization': '1',
2204 'mac_release_optimization': '1',
2205 'release_optimize': '1',
2206 'no_gc_sections': 1,
2207 'debug_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2208 '-fno-builtin -fno-optimize-sibling-calls',
2209 'release_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
2210 '-fno-builtin -fno-optimize-sibling-calls',
2212 # MSVS flags for TSan on Pin and Windows.
2213 'win_debug_RuntimeChecks': '0',
2214 'win_debug_disable_iterator_debugging': '1',
2215 'win_debug_Optimization': '1',
2216 'win_debug_InlineFunctionExpansion': '0',
2217 'win_release_InlineFunctionExpansion': '0',
2218 'win_release_OmitFramePointers': '0',
2220 'use_allocator': 'tcmalloc',
2221 'release_valgrind_build': 1,
2223 'component': 'static_library',
2224 'use_system_zlib': 0,
2227 # Build tweaks for DrMemory.
2228 # TODO(rnk): Combine with tsan config to share the builder.
2229 # http://crbug.com/108155
2230 ['build_for_tool=="drmemory"', {
2231 # These runtime checks force initialization of stack vars which blocks
2232 # DrMemory's uninit detection.
2233 'win_debug_RuntimeChecks': '0',
2234 # Iterator debugging is slow.
2235 'win_debug_disable_iterator_debugging': '1',
2236 # Try to disable optimizations that mess up stacks in a release build.
2237 # DrM-i#1054 (http://code.google.com/p/drmemory/issues/detail?id=1054)
2238 # /O2 and /Ob0 (disable inline) cannot be used together because of a
2239 # compiler bug, so we use /Ob1 instead.
2240 'win_release_InlineFunctionExpansion': '1',
2241 'win_release_OmitFramePointers': '0',
2242 # Ditto for debug, to support bumping win_debug_Optimization.
2243 'win_debug_InlineFunctionExpansion': 0,
2244 'win_debug_OmitFramePointers': 0,
2245 # Keep the code under #ifndef NVALGRIND.
2246 'release_valgrind_build': 1,
2249 # Enable RLZ on Win, Mac, iOS and ChromeOS.
2250 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos==1)', {
2254 # Set default compiler flags depending on ARM version.
2255 ['arm_version==6 and android_webview_build==0', {
2256 'arm_arch%': 'armv6',
2259 'arm_float_abi%': 'softfp',
2262 ['arm_version==7 and android_webview_build==0', {
2263 'arm_arch%': 'armv7-a',
2264 'arm_tune%': 'generic-armv7-a',
2269 'arm_fpu%': 'vfpv3-d16',
2272 # Change the default to hard once the armhf transition is complete.
2273 'arm_float_abi%': 'softfp',
2277 ['android_webview_build==1', {
2278 # The WebView build gets its cpu-specific flags from the Android build system.
2282 'arm_float_abi%': '',
2286 # Enable brlapi by default for chromeos.
2291 ['use_ozone==1 and ozone_auto_platforms==1', {
2292 # Use test as the default platform.
2293 'ozone_platform%': 'test',
2295 # Build all platforms whose deps are in install-build-deps.sh.
2296 # Only these platforms will be compile tested by buildbots.
2297 'ozone_platform_dri%': 1,
2298 'ozone_platform_test%': 1,
2299 'ozone_platform_egltest%': 1,
2302 ['desktop_linux==1 and use_aura==1 and use_x11==1', {
2303 'use_clipboard_aurax11%': 1,
2306 ['OS=="win" and use_goma==1', {
2307 # goma doesn't support pch yet.
2308 'chromium_win_pch': 0,
2309 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
2311 ['win_z7==0 and fastbuild==0', {
2317 ['OS=="win" and (clang==1 or asan==1)', {
2318 'chromium_win_pch': 0,
2322 'host_cc': '<(make_clang_dir)/bin/clang',
2323 'host_cxx': '<(make_clang_dir)/bin/clang++',
2325 'host_cc': '<!(which gcc)',
2326 'host_cxx': '<!(which g++)',
2329 # The seccomp-bpf sandbox is only supported on five architectures
2331 # Do not disable seccomp_bpf anywhere without talking to
2332 # security@chromium.org!
2333 ['((OS=="linux" or OS=="android") and '
2334 '(target_arch=="ia32" or target_arch=="x64" or '
2335 'target_arch=="arm" or target_arch=="mipsel" or '
2336 'target_arch=="arm64"))', {
2337 'use_seccomp_bpf%': 1,
2339 'use_seccomp_bpf%': 0,
2341 # Set component build with LTO until all tests pass.
2342 # This also reduces link time.
2344 'component%': "shared_library",
2348 # older history files use fts2 instead of fts3
2349 'sqlite_enable_fts2%': '<(support_pre_M6_history_database)',
2351 # The path to the ANGLE library.
2352 'angle_path': '<(DEPTH)/third_party/angle',
2354 # List of default apps to install in new profiles. The first list contains
2355 # the source files as found in svn. The second list, used only for linux,
2356 # contains the destination location for each of the files. When a crx
2357 # is added or removed from the list, the chrome/browser/resources/
2358 # default_apps/external_extensions.json file must also be updated.
2359 'default_apps_list': [
2360 'browser/resources/default_apps/external_extensions.json',
2361 'browser/resources/default_apps/gmail.crx',
2362 'browser/resources/default_apps/search.crx',
2363 'browser/resources/default_apps/youtube.crx',
2364 'browser/resources/default_apps/drive.crx',
2365 'browser/resources/default_apps/docs.crx',
2367 'default_apps_list_linux_dest': [
2368 '<(PRODUCT_DIR)/default_apps/external_extensions.json',
2369 '<(PRODUCT_DIR)/default_apps/gmail.crx',
2370 '<(PRODUCT_DIR)/default_apps/search.crx',
2371 '<(PRODUCT_DIR)/default_apps/youtube.crx',
2372 '<(PRODUCT_DIR)/default_apps/drive.crx',
2373 '<(PRODUCT_DIR)/default_apps/docs.crx',
2376 # Whether to allow building of the GPU-related isolates.
2377 'archive_gpu_tests%': 0,
2379 # Whether to allow building of chromoting related isolates.
2380 'archive_chromoting_tests%': 0,
2382 'target_defaults': {
2384 # The condition that operates on chromium_code is in a target_conditions
2385 # section, and will not have access to the default fallback value of
2386 # chromium_code at the top of this file, or to the chromium_code
2387 # variable placed at the root variables scope of .gyp files, because
2388 # those variables are not set at target scope. As a workaround,
2389 # if chromium_code is not set at target scope, define it in target scope
2390 # to contain whatever value it has during early variable expansion.
2391 # That's enough to make it available during target conditional
2393 'chromium_code%': '<(chromium_code)',
2395 'component%': '<(component)',
2397 'chromecast%': '<(chromecast)',
2399 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx
2400 'win_release_Optimization%': '2', # 2 = /Os
2401 'win_debug_Optimization%': '0', # 0 = /Od
2403 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx
2404 # Tri-state: blank is default, 1 on, 0 off
2405 'win_release_OmitFramePointers%': '0',
2406 # Tri-state: blank is default, 1 on, 0 off
2407 'win_debug_OmitFramePointers%': '',
2409 # See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx
2410 'win_debug_RuntimeChecks%': '3', # 3 = all checks enabled, 0 = off
2412 # See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx
2413 'win_debug_InlineFunctionExpansion%': '', # empty = default, 0 = off,
2414 'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max
2416 # VS inserts quite a lot of extra checks to algorithms like
2417 # std::partial_sort in Debug build which make them O(N^2)
2418 # instead of O(N*logN). This is particularly slow under memory
2419 # tools like ThreadSanitizer so we want it to be disablable.
2420 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2421 'win_debug_disable_iterator_debugging%': '0',
2423 # An application manifest fragment to declare compatibility settings for
2424 # 'executable' targets. Ignored in other target type.
2425 'win_exe_compatibility_manifest%':
2426 '<(DEPTH)\\build\\win\\compatibility.manifest',
2428 'release_extra_cflags%': '',
2429 'debug_extra_cflags%': '',
2431 'release_valgrind_build%': '<(release_valgrind_build)',
2433 # the non-qualified versions are widely assumed to be *nix-only
2434 'win_release_extra_cflags%': '',
2435 'win_debug_extra_cflags%': '',
2437 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
2438 'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)',
2440 # Only used by Windows build for now. Can be used to build into a
2441 # differet output directory, e.g., a build_dir_prefix of VS2010_ would
2442 # output files in src/build/VS2010_{Debug,Release}.
2443 'build_dir_prefix%': '',
2445 # Targets are by default not nacl untrusted code.
2446 'nacl_untrusted_build%': 0,
2448 'pnacl_compile_flags': [
2449 # pnacl uses the clang compiler so we need to suppress all the
2450 # same warnings as we do for clang.
2451 # TODO(sbc): Remove these if/when they are removed from the clang
2453 '-Wno-unused-function',
2454 '-Wno-char-subscripts',
2455 '-Wno-c++11-extensions',
2456 '-Wno-unnamed-type-template-args',
2460 ['OS=="win" and component=="shared_library"', {
2461 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2462 'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL)
2463 'win_debug_RuntimeLibrary%': '3', # 3 = /MDd (debug DLL)
2465 # See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2466 'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
2467 'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static)
2470 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2471 'mac_release_optimization%': 's', # Use -Os unless overridden
2472 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2474 # See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
2475 'mac_release_optimization%': '3', # Use -O3 unless overridden
2476 'mac_debug_optimization%': '0', # Use -O0 unless overridden
2479 'host_os%': '<(host_os)', # See comment above chromium_code.
2482 'clang_warning_flags': [
2485 # Don't die on dtoa code that uses a char as an array index.
2486 # This is required solely for base/third_party/dmg_fp/dtoa.cc.
2487 '-Wno-char-subscripts',
2489 # TODO(thakis): This used to be implied by -Wno-unused-function,
2490 # which we no longer use. Check if it makes sense to remove
2491 # this as well. http://crbug.com/316352
2492 '-Wno-unneeded-internal-declaration',
2494 # Warns on switches on enums that cover all enum values but
2495 # also contain a default: branch. Chrome is full of that.
2496 '-Wno-covered-switch-default',
2498 # Warns when a const char[] is converted to bool.
2499 '-Wstring-conversion',
2501 # C++11-related flags:
2503 # This warns on using ints as initializers for floats in
2504 # initializer lists (e.g. |int a = f(); CGSize s = { a, a };|),
2505 # which happens in several places in chrome code. Not sure if
2506 # this is worth fixing.
2507 '-Wno-c++11-narrowing',
2509 # Clang considers the `register` keyword as deprecated, but e.g.
2510 # code generated by flex (used in angle) contains that keyword.
2511 # http://crbug.com/255186
2512 '-Wno-deprecated-register',
2514 # TODO(hans): Clean this up. Or disable with finer granularity.
2515 '-Wno-unused-local-typedef',
2518 'includes': [ 'set_clang_warning_flags.gypi', ],
2520 # Don't use deprecated V8 APIs anywhere.
2521 'V8_DEPRECATION_WARNINGS',
2524 '<(SHARED_INTERMEDIATE_DIR)',
2527 ['(OS=="mac" or OS=="ios") and asan==1', {
2529 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
2532 ['OS=="win" and asan==1 and component=="shared_library"', {
2534 '<(DEPTH)/build/win/asan.gyp:asan_dynamic_runtime',
2537 ['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', {
2538 'cflags_cc!': ['-fno-rtti'],
2541 '-gline-tables-only',
2542 '-fintercept-allocation-functions',
2544 'defines': ['TYPE_PROFILING'],
2546 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
2549 ['branding=="Chrome"', {
2550 'defines': ['GOOGLE_CHROME_BUILD'],
2551 }, { # else: branding!="Chrome"
2552 'defines': ['CHROMIUM_BUILD'],
2554 ['OS=="mac" and component=="shared_library"', {
2556 'DYLIB_INSTALL_NAME_BASE': '@rpath',
2557 'LD_RUNPATH_SEARCH_PATHS': [
2558 # For unbundled binaries.
2560 # For bundled binaries, to get back from Binary.app/Contents/MacOS.
2561 '@loader_path/../../..',
2565 ['clang==1 and OS!="win"', {
2566 # This is here so that all files get recompiled after a clang roll and
2567 # when turning clang on or off.
2568 # (defines are passed via the command line, and build systems rebuild
2569 # things when their commandline changes). Nothing should ever read this
2571 'defines': ['CR_CLANG_REVISION=<!(<(DEPTH)/tools/clang/scripts/update.sh --print-revision)'],
2574 'defines': ['ENABLE_RLZ'],
2576 ['component=="shared_library"', {
2577 'defines': ['COMPONENT_BUILD'],
2579 ['toolkit_views==1', {
2580 'defines': ['TOOLKIT_VIEWS=1'],
2582 ['ui_compositor_image_transport==1', {
2583 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'],
2586 'defines': ['USE_AURA=1'],
2589 'defines': ['USE_ASH=1'],
2592 'defines': ['USE_PANGO=1'],
2595 'defines': ['USE_CAIRO=1'],
2598 'defines': ['USE_CRAS=1'],
2601 'defines': ['USE_OZONE=1'],
2603 ['use_default_render_theme==1', {
2604 'defines': ['USE_DEFAULT_RENDER_THEME=1'],
2606 ['use_libjpeg_turbo==1', {
2607 'defines': ['USE_LIBJPEG_TURBO=1'],
2610 'defines': ['USE_X11=1'],
2612 ['use_clipboard_aurax11==1', {
2613 'defines': ['USE_CLIPBOARD_AURAX11=1'],
2615 ['enable_one_click_signin==1', {
2616 'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
2618 ['enable_pre_sync_backup==1', {
2619 'defines': ['ENABLE_PRE_SYNC_BACKUP'],
2621 ['use_xi2_mt!=0 and use_x11==1', {
2622 'defines': ['USE_XI2_MT=<(use_xi2_mt)'],
2624 ['image_loader_extension==1', {
2625 'defines': ['IMAGE_LOADER_EXTENSION=1'],
2628 'defines': ['ENABLE_PROFILING=1'],
2631 'defines': ['ENABLE_REMOTING=1'],
2633 ['enable_webrtc==1', {
2634 'defines': ['ENABLE_WEBRTC=1'],
2636 ['proprietary_codecs==1', {
2637 'defines': ['USE_PROPRIETARY_CODECS'],
2639 ['enable_mpeg2ts_stream_parser==1', {
2640 'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'],
2644 ['enable_viewport==1', {
2645 'defines': ['ENABLE_VIEWPORT'],
2647 ['enable_pepper_cdms==1', {
2648 'defines': ['ENABLE_PEPPER_CDMS'],
2650 ['enable_browser_cdms==1', {
2651 'defines': ['ENABLE_BROWSER_CDMS'],
2653 ['configuration_policy==1', {
2654 'defines': ['ENABLE_CONFIGURATION_POLICY'],
2656 ['notifications==1', {
2657 'defines': ['ENABLE_NOTIFICATIONS'],
2659 ['enable_hidpi==1', {
2660 'defines': ['ENABLE_HIDPI=1'],
2662 ['native_discardable_memory==1', {
2663 'defines': ['DISCARDABLE_MEMORY_ALWAYS_SUPPORTED_NATIVELY'],
2665 ['native_memory_pressure_signals==1', {
2666 'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'],
2669 'defines': ['USE_UDEV'],
2673 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
2676 ['clang==1 and asan==0 and msan==0 and tsan==0 and ubsan_vptr==0', {
2677 # Clang creates chubby debug information, which makes linking very
2678 # slow. For now, don't create debug information with clang. See
2679 # http://crbug.com/70000
2683 'debug_extra_cflags': '-g0',
2686 # Android builds symbols on release by default, disable them.
2689 'debug_extra_cflags': '-g0',
2690 'release_extra_cflags': '-g0',
2694 }, { # else clang!=1
2696 ['OS=="win" and fastbuild==2', {
2697 # Completely disable debug information.
2700 'GenerateDebugInformation': 'false',
2702 'VCCLCompilerTool': {
2703 'DebugInformationFormat': '0',
2707 ['OS=="win" and fastbuild==1', {
2710 # This tells the linker to generate .pdbs, so that
2711 # we can get meaningful stack traces.
2712 'GenerateDebugInformation': 'true',
2714 'VCCLCompilerTool': {
2715 # No debug info to be generated by compiler.
2716 'DebugInformationFormat': '0',
2720 ['OS=="linux" and fastbuild==2', {
2722 'debug_extra_cflags': '-g0',
2725 ['OS=="linux" and fastbuild==1', {
2727 'debug_extra_cflags': '-g1',
2730 ['OS=="android" and fastbuild==2', {
2732 'debug_extra_cflags': '-g0',
2733 'release_extra_cflags': '-g0',
2736 ['OS=="android" and fastbuild==1', {
2738 'debug_extra_cflags': '-g1',
2739 'release_extra_cflags': '-g1',
2746 ['dont_embed_build_metadata==1', {
2748 'DONT_EMBED_BUILD_METADATA',
2750 }], # dont_embed_build_metadata==1
2751 ['dcheck_always_on!=0', {
2752 'defines': ['DCHECK_ALWAYS_ON=1'],
2753 }], # dcheck_always_on!=0
2754 ['tracing_like_official_build!=0', {
2755 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'],
2756 }], # tracing_like_official_build!=0
2757 ['win_use_allocator_shim==0', {
2760 'defines': ['NO_TCMALLOC'],
2766 'ADDRESS_SANITIZER',
2767 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2768 'MEMORY_SANITIZER_INITIAL_SIZE',
2772 # SyzyAsan needs /PROFILE turned on to produce appropriate pdbs.
2780 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2781 'MEMORY_SANITIZER_INITIAL_SIZE',
2787 '_CRT_SECURE_NO_DEPRECATE',
2788 '_SCL_SECURE_NO_DEPRECATE',
2789 # This define is required to pull in the new Win8 interfaces from
2790 # system headers like ShObjIdl.h.
2791 'NTDDI_VERSION=0x06020000',
2792 # This is required for ATL to use XP-safe versions of its functions.
2793 '_USING_V110_SDK71_',
2796 '<(DEPTH)/third_party/wtl/include',
2801 # Generates debug info when win_z7=1
2802 # even if fastbuild=1 (that makes GenerateDebugInformation false).
2804 'GenerateDebugInformation': 'true',
2806 'VCCLCompilerTool': {
2807 'DebugInformationFormat': '1',
2813 # This is prohibited when running /analyze.
2814 '_USING_V110_SDK71_',
2817 'VCCLCompilerTool': {
2818 # Set WarnAsError to false to disable this setting for most
2819 # projects so that compilation continues.
2820 'WarnAsError': 'false',
2821 # When win_analyze is specified add the /analyze switch.
2822 # Also add /WX- to force-disable WarnAsError for projects that
2823 # override WarnAsError.
2824 # Also, disable various noisy warnings that have low value.
2825 'AdditionalOptions': [
2828 '/wd6011', # Dereferencing NULL pointer
2829 '/wd6312', # Possible infinite loop: use of the constant
2830 # EXCEPTION_CONTINUE_EXECUTION in the exception-filter
2831 '/wd6326', # Potential comparison of constant with constant
2832 '/wd28159', # Consider using 'GetTickCount64'
2833 '/wd28204', # Inconsistent SAL annotations
2834 '/wd28251', # Inconsistent SAL annotations
2835 '/wd28252', # Inconsistent SAL annotations
2836 '/wd28253', # Inconsistent SAL annotations
2837 '/wd28196', # The precondition is not satisfied
2838 '/wd28301', # Inconsistent SAL annotations
2839 '/wd6340', # Sign mismatch in function parameter
2840 '/wd28182', # Dereferencing NULL pointer
2852 ['target_arch=="arm"', {
2854 # TODO(lcwu): Work around an error when building Chromium
2855 # with gcc-4.5.3 (e.g. v8/src/platform-linux.cc). Remove
2856 # this define once the toolchain is updated.
2857 # See crbug.com/388933.
2861 ['use_playready==1', {
2863 'PLAYREADY_CDM_AVAILABLE',
2868 ['enable_task_manager==1', {
2870 'ENABLE_TASK_MANAGER=1',
2873 ['enable_extensions==1', {
2875 'ENABLE_EXTENSIONS=1',
2878 ['OS=="win" and branding=="Chrome"', {
2879 'defines': ['ENABLE_SWIFTSHADER'],
2881 ['enable_dart==1', {
2882 'defines': ['WEBKIT_USING_DART=1'],
2884 ['enable_plugin_installation==1', {
2885 'defines': ['ENABLE_PLUGIN_INSTALLATION=1'],
2887 ['enable_plugins==1', {
2888 'defines': ['ENABLE_PLUGINS=1'],
2890 ['enable_session_service==1', {
2891 'defines': ['ENABLE_SESSION_SERVICE=1'],
2893 ['enable_themes==1', {
2894 'defines': ['ENABLE_THEMES=1'],
2896 ['enable_autofill_dialog==1', {
2897 'defines': ['ENABLE_AUTOFILL_DIALOG=1'],
2899 ['enable_prod_wallet_service==1', {
2900 'defines': ['ENABLE_PROD_WALLET_SERVICE=1'],
2902 ['enable_background==1', {
2903 'defines': ['ENABLE_BACKGROUND=1'],
2905 ['enable_google_now==1', {
2906 'defines': ['ENABLE_GOOGLE_NOW=1'],
2908 ['cld_version!=0', {
2909 'defines': ['CLD_VERSION=<(cld_version)'],
2911 ['cld_version==2', {
2912 # This is used to populate the "CLD Data Source" field in:
2913 # chrome://translate-internals
2914 'defines': ['CLD2_DATA_SOURCE=<(cld2_data_source)'],
2916 ['enable_printing==1', {
2917 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'],
2919 ['enable_printing==2', {
2920 'defines': ['ENABLE_PRINTING=1'],
2922 ['enable_spellcheck==1', {
2923 'defines': ['ENABLE_SPELLCHECK=1'],
2925 ['enable_captive_portal_detection==1', {
2926 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
2928 ['enable_app_list==1', {
2929 'defines': ['ENABLE_APP_LIST=1'],
2931 ['enable_settings_app==1', {
2932 'defines': ['ENABLE_SETTINGS_APP=1'],
2934 ['disable_file_support==1', {
2935 'defines': ['DISABLE_FILE_SUPPORT=1'],
2937 ['disable_ftp_support==1', {
2938 'defines': ['DISABLE_FTP_SUPPORT=1'],
2940 ['use_icu_alternatives_on_android==1', {
2941 'defines': ['USE_ICU_ALTERNATIVES_ON_ANDROID=1'],
2943 ['enable_managed_users==1', {
2944 'defines': ['ENABLE_MANAGED_USERS=1'],
2946 ['spdy_proxy_auth_property != ""', {
2947 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
2949 ['spdy_proxy_auth_value != ""', {
2950 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'],
2952 ['enable_mdns==1', {
2953 'defines': ['ENABLE_MDNS=1'],
2955 ['enable_service_discovery==1', {
2956 'defines' : [ 'ENABLE_SERVICE_DISCOVERY=1' ],
2958 ['enable_wifi_bootstrapping==1', {
2959 'defines' : [ 'ENABLE_WIFI_BOOTSTRAPPING=1' ],
2961 ['enable_hangout_services_extension==1', {
2962 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'],
2964 ['enable_ipc_fuzzer==1', {
2965 'defines': ['ENABLE_IPC_FUZZER=1'],
2968 'defines': ['VIDEO_HOLE=1'],
2970 ['enable_load_completion_hacks==1', {
2971 'defines': ['ENABLE_LOAD_COMPLETION_HACKS=1'],
2973 ['v8_use_external_startup_data==1', {
2974 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA'],
2976 ], # conditions for 'target_defaults'
2977 'target_conditions': [
2978 ['<(use_openssl)==1', {
2979 'defines': ['USE_OPENSSL=1'],
2981 ['<(use_openssl_certs)==1', {
2982 'defines': ['USE_OPENSSL_CERTS=1'],
2984 ['>(nacl_untrusted_build)==1', {
2987 'USE_OPENSSL_CERTS=1',
2990 ['<(use_glib)==1 and >(nacl_untrusted_build)==0', {
2991 'defines': ['USE_GLIB=1'],
2993 ['<(use_nss)==1 and >(nacl_untrusted_build)==0', {
2994 'defines': ['USE_NSS=1'],
2996 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', {
2997 'defines': ['OS_CHROMEOS=1'],
2999 ['enable_wexit_time_destructors==1 and OS!="win"', {
3000 # TODO: Enable on Windows too, http://crbug.com/404525
3001 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']},
3003 ['chromium_code==0', {
3005 [ 'os_posix==1 and OS!="mac" and OS!="ios"', {
3006 # We don't want to get warnings from third-party code,
3007 # so remove any existing warning-enabling flags like -Wall.
3013 # Don't warn about hash_map in third-party code.
3017 # Don't warn about printf format problems.
3018 # This is off by default in gcc but on in Ubuntu's gcc(!).
3022 # Necessary because llvm.org/PR10448 is WONTFIX (crbug.com/90453).
3026 # TODO: Fix all warnings on chromeos too.
3027 [ 'os_posix==1 and OS!="mac" and OS!="ios" and (clang!=1 or chromeos==1)', {
3032 [ 'os_posix==1 and os_bsd!=1 and OS!="mac" and OS!="android"', {
3034 # Don't warn about ignoring the return value from e.g. close().
3035 # This is off by default in some gccs but on by default in others.
3036 # BSD systems do not support this option, since they are usually
3037 # using gcc 4.2.1, which does not have this flag yet.
3038 '-Wno-unused-result',
3043 '_CRT_SECURE_NO_DEPRECATE',
3044 '_CRT_NONSTDC_NO_WARNINGS',
3045 '_CRT_NONSTDC_NO_DEPRECATE',
3046 '_SCL_SECURE_NO_DEPRECATE',
3048 'msvs_disabled_warnings': [4800],
3050 'VCCLCompilerTool': {
3051 'WarningLevel': '3',
3052 'WarnAsError': 'true',
3053 'Detect64BitPortabilityProblems': 'false',
3057 ['buildtype=="Official"', {
3059 'VCCLCompilerTool': { 'WarnAsError': 'false' },
3064 'VCCLCompilerTool': { 'WarnAsError': 'false' },
3067 [ 'component=="shared_library"', {
3068 # TODO(darin): Unfortunately, some third_party code depends on base.
3069 'msvs_disabled_warnings': [
3070 4251, # class 'std::xx' needs to have dll-interface.
3076 [ 'OS=="mac" or OS=="ios"', {
3078 'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
3081 ['buildtype=="Official"', {
3083 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror
3090 # TODO(ios): Fix remaining warnings in third-party code, then
3091 # remove this; the Mac cleanup didn't get everything that's
3092 # flagged in an iOS build.
3093 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',
3094 'RUN_CLANG_STATIC_ANALYZER': 'NO',
3095 # Several internal ios directories generate numerous warnings for
3096 # -Wobjc-missing-property-synthesis.
3097 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
3103 # Rules for excluding e.g. foo_win.cc from the build on non-Windows.
3104 'filename_rules.gypi',
3106 # In Chromium code, we define __STDC_foo_MACROS in order to get the
3107 # C99 macros on Mac and Linux.
3109 '__STDC_CONSTANT_MACROS',
3110 '__STDC_FORMAT_MACROS',
3114 # turn on warnings for signed/unsigned mismatch on chromium code.
3116 'VCCLCompilerTool': {
3117 'AdditionalOptions': ['/we4389'],
3121 ['OS=="win" and component=="shared_library"', {
3122 'msvs_disabled_warnings': [
3123 4251, # class 'std::xx' needs to have dll-interface.
3128 ], # target_conditions for 'target_defaults'
3129 'default_configuration': 'Debug',
3131 # VCLinkerTool LinkIncremental values below:
3133 # 1 == /INCREMENTAL:NO
3135 # Debug links incremental, Release does not.
3137 # Abstract base configurations to cover common attributes.
3141 'msvs_configuration_attributes': {
3142 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(ConfigurationName)',
3143 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
3144 'CharacterSet': '1',
3146 # Add the default import libs.
3149 'AdditionalDependencies': [
3173 'MinimumRequiredVersion': '5.01', # XP.
3174 'TargetMachine': '1',
3176 'VCLibrarianTool': {
3177 'TargetMachine': '1',
3180 'msvs_configuration_platform': 'Win32',
3184 'msvs_configuration_platform': 'x64',
3187 # Make sure to understand http://crbug.com/361720 if you want to
3189 'MinimumRequiredVersion': '5.02', # Server 2003.
3190 'TargetMachine': '17', # x86 - 64
3191 'AdditionalLibraryDirectories!':
3192 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3193 'AdditionalLibraryDirectories':
3194 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3195 # Doesn't exist x64 SDK. Should use oleaut32 in any case.
3196 'IgnoreDefaultLibraryNames': [ 'olepro32.lib' ],
3198 'VCLibrarianTool': {
3199 'AdditionalLibraryDirectories!':
3200 ['<(windows_sdk_path)/Lib/win8/um/x86'],
3201 'AdditionalLibraryDirectories':
3202 ['<(windows_sdk_path)/Lib/win8/um/x64'],
3203 'TargetMachine': '17', # x64
3210 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3211 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3214 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)',
3216 '<@(debug_extra_cflags)',
3220 'VCCLCompilerTool': {
3221 'Optimization': '<(win_debug_Optimization)',
3222 'PreprocessorDefinitions': ['_DEBUG'],
3223 'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)',
3224 'RuntimeLibrary': '<(win_debug_RuntimeLibrary)',
3226 # According to MSVS, InlineFunctionExpansion=0 means
3227 # "default inlining", not "/Ob0".
3228 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3229 ['win_debug_InlineFunctionExpansion==0', {
3230 'AdditionalOptions': ['/Ob0'],
3232 ['win_debug_InlineFunctionExpansion!=""', {
3233 'InlineFunctionExpansion':
3234 '<(win_debug_InlineFunctionExpansion)',
3236 ['win_debug_disable_iterator_debugging==1', {
3237 'PreprocessorDefinitions': ['_HAS_ITERATOR_DEBUGGING=0'],
3240 # if win_debug_OmitFramePointers is blank, leave as default
3241 ['win_debug_OmitFramePointers==1', {
3242 'OmitFramePointers': 'true',
3244 ['win_debug_OmitFramePointers==0', {
3245 'OmitFramePointers': 'false',
3246 # The above is not sufficient (http://crbug.com/106711): it
3247 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3248 # perform FPO regardless, so we must explicitly disable.
3249 # We still want the false setting above to avoid having
3250 # "/Oy /Oy-" and warnings about overriding.
3251 'AdditionalOptions': ['/Oy-'],
3254 'AdditionalOptions': [ '<@(win_debug_extra_cflags)', ],
3257 'LinkIncremental': '<(msvs_debug_link_incremental)',
3258 # ASLR makes debugging with windbg difficult because Chrome.exe and
3259 # Chrome.dll share the same base name. As result, windbg will
3260 # name the Chrome.dll module like chrome_<base address>, where
3261 # <base address> typically changes with each launch. This in turn
3262 # means that breakpoints in Chrome.dll don't stick from one launch
3263 # to the next. For this reason, we turn ASLR off in debug builds.
3264 # Note that this is a three-way bool, where 0 means to pick up
3265 # the default setting, 1 is off and 2 is on.
3266 'RandomizedBaseAddress': 1,
3268 'VCResourceCompilerTool': {
3269 'PreprocessorDefinitions': ['_DEBUG'],
3273 ['OS=="linux" or OS=="android"', {
3274 'target_conditions': [
3275 ['_toolset=="target"', {
3277 '<@(debug_extra_cflags)',
3282 ['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', {
3283 # Enable libstdc++ debugging facilities to help catch problems
3284 # early, see http://crbug.com/65151 .
3285 # TODO(phajdan.jr): Should we enable this for all of POSIX?
3286 'defines': ['_GLIBCXX_DEBUG=1',],
3288 ['release_valgrind_build==0', {
3291 '-fstack-protector-all', # Implies -fstack-protector
3297 # Allow comparing the address of references and 'this' against 0
3298 # in debug builds. Technically, these can never be null in
3299 # well-defined C/C++ and Clang can optimize such checks away in
3300 # release builds, but they may be used in asserts in debug builds.
3301 '-Wno-undefined-bool-conversion',
3302 '-Wno-tautological-undefined-compare',
3306 '-Wno-undefined-bool-conversion',
3307 '-Wno-tautological-undefined-compare',
3311 'VCCLCompilerTool': {
3312 'AdditionalOptions': [
3313 '-Wno-undefined-bool-conversion',
3314 '-Wno-tautological-undefined-compare',
3327 'DEAD_CODE_STRIPPING': 'YES', # -Wl,-dead_strip
3328 'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)',
3329 'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ],
3332 'VCCLCompilerTool': {
3333 'RuntimeLibrary': '<(win_release_RuntimeLibrary)',
3335 # In official builds, each target will self-select
3336 # an optimization level.
3337 ['buildtype!="Official"', {
3338 'Optimization': '<(win_release_Optimization)',
3341 # According to MSVS, InlineFunctionExpansion=0 means
3342 # "default inlining", not "/Ob0".
3343 # Thus, we have to handle InlineFunctionExpansion==0 separately.
3344 ['win_release_InlineFunctionExpansion==0', {
3345 'AdditionalOptions': ['/Ob0'],
3347 ['win_release_InlineFunctionExpansion!=""', {
3348 'InlineFunctionExpansion':
3349 '<(win_release_InlineFunctionExpansion)',
3352 # if win_release_OmitFramePointers is blank, leave as default
3353 ['win_release_OmitFramePointers==1', {
3354 'OmitFramePointers': 'true',
3356 ['win_release_OmitFramePointers==0', {
3357 'OmitFramePointers': 'false',
3358 # The above is not sufficient (http://crbug.com/106711): it
3359 # simply eliminates an explicit "/Oy", but both /O2 and /Ox
3360 # perform FPO regardless, so we must explicitly disable.
3361 # We still want the false setting above to avoid having
3362 # "/Oy /Oy-" and warnings about overriding.
3363 'AdditionalOptions': ['/Oy-'],
3366 'AdditionalOptions': [
3367 '/d2Zi+', # Improve debugging of Release builds.
3368 '/Zc:inline', # Remove unreferenced COMDAT (faster links).
3369 '<@(win_release_extra_cflags)',
3373 # LinkIncremental is a tri-state boolean, where 0 means default
3374 # (i.e., inherit from parent solution), 1 means false, and
3376 'LinkIncremental': '1',
3377 # This corresponds to the /PROFILE flag which ensures the PDB
3378 # file contains FIXUP information (growing the PDB file by about
3379 # 5%) but does not otherwise alter the output binary. This
3380 # information is used by the Syzygy optimization tool when
3381 # decomposing the release image.
3386 ['msvs_use_common_release', {
3387 'includes': ['release.gypi'],
3389 ['release_valgrind_build==0 and tsan==0', {
3392 'DYNAMIC_ANNOTATIONS_ENABLED=0',
3396 'MEMORY_TOOL_REPLACES_ALLOCATOR',
3397 'MEMORY_SANITIZER_INITIAL_SIZE',
3398 'DYNAMIC_ANNOTATIONS_ENABLED=1',
3399 'WTF_USE_DYNAMIC_ANNOTATIONS=1',
3402 ['win_use_allocator_shim==0', {
3403 'defines': ['NO_TCMALLOC'],
3405 # _FORTIFY_SOURCE isn't really supported by Clang now, see
3406 # http://llvm.org/bugs/show_bug.cgi?id=16821.
3407 # It seems to work fine with Ubuntu 12 headers though, so use it
3408 # in official builds.
3409 ['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")', {
3410 'target_conditions': [
3411 ['chromium_code==1', {
3412 # Non-chromium code is not guaranteed to compile cleanly
3413 # with _FORTIFY_SOURCE. Also, fortified build may fail
3414 # when optimizations are disabled, so only do that for Release
3417 '_FORTIFY_SOURCE=2',
3422 ['OS=="linux" or OS=="android"', {
3423 'target_conditions': [
3424 ['_toolset=="target"', {
3426 '<@(release_extra_cflags)',
3429 ['enable_resource_whitelist_generation==1', {
3431 '-Wunknown-pragmas -Wno-error=unknown-pragmas',
3440 'NS_BLOCK_ASSERTIONS=1',
3446 # Concrete configurations
3449 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'],
3452 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3457 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
3458 'target_conditions': [
3459 [ '_type=="executable"', {
3460 # To get a real .dSYM bundle produced by dsymutil, set the
3461 # debug information format to dwarf-with-dsym. Since
3462 # strip_from_xcode will not be used, set Xcode to do the
3463 # stripping as well.
3465 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
3466 'DEPLOYMENT_POSTPROCESSING': 'YES',
3467 'STRIP_INSTALLED_PRODUCT': 'YES',
3474 # TODO(bradnelson): add a gyp mechanism to make this more graceful.
3476 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'],
3479 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'],
3487 'target_defaults': {
3492 # TODO(glider): enable the default options on other systems.
3494 ['use_sanitizer_options==1 and ((OS=="linux" and (chromeos==0 or target_arch!="ia32")) or OS=="mac")', {
3496 '<(DEPTH)/build/sanitizers/sanitizers.gyp:sanitizer_options',
3502 # TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580
3503 ['os_posix==1 and disable_fatal_linker_warnings==0 and use_evdev_gestures==0 and (chromeos==0 or target_arch!="arm")', {
3504 'target_defaults': {
3506 '-Wl,--fatal-warnings',
3510 ['os_posix==1 and chromeos==0', {
3511 # Chrome OS enables -fstack-protector-strong via its build wrapper,
3512 # and we want to avoid overriding this, so stack-protector is only
3513 # enabled when not building on Chrome OS.
3514 # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc
3516 'target_defaults': {
3518 '-fstack-protector',
3519 '--param=ssp-buffer-size=4',
3523 ['os_posix==1 and OS!="mac" and OS!="ios"', {
3524 'target_defaults': {
3525 # Enable -Werror by default, but put it in a variable so it can
3526 # be disabled in ~/.gyp/include.gypi on the valgrind builders.
3528 'werror%': '-Werror',
3529 'libraries_for_target%': '',
3532 '_FILE_OFFSET_BITS=64',
3535 '<(werror)', # See note above about the werror variable.
3537 '-fno-strict-aliasing', # See http://crbug.com/32204
3539 # TODO(evan): turn this back on once all the builds work.
3541 # Don't warn about unused function params. We use those everywhere.
3542 '-Wno-unused-parameter',
3543 # Don't warn about the "struct foo f = {0};" initialization pattern.
3544 '-Wno-missing-field-initializers',
3545 # Don't export any symbols (for example, to plugins we dlopen()).
3546 # Note: this is *required* to make some plugins work.
3547 '-fvisibility=hidden',
3553 '-fno-threadsafe-statics',
3554 # Make inline functions have hidden visiblity by default.
3555 # Surprisingly, not covered by -fvisibility=hidden.
3556 '-fvisibility-inlines-hidden',
3557 # GCC turns on -Wsign-compare for C++ under -Wall, but clang doesn't,
3558 # so we specify it explicitly. (llvm.org/PR10448, crbug.com/90453)
3562 '-pthread', '-Wl,-z,noexecstack',
3565 '<(libraries_for_target)',
3570 'debug_optimize%': '0',
3576 '-O>(debug_optimize)',
3583 # Warn in case of text relocations.
3584 '-Wl,--warn-shared-textrel',
3587 ['OS=="android" and android_full_debug==0', {
3588 # Some configurations are copied from Release_Base to reduce
3591 'debug_optimize%': 's',
3595 '-ffunction-sections',
3602 ['OS=="android" and android_full_debug==0 and target_arch!="arm64"', {
3603 # We don't omit frame pointers on arm64 since they are required
3604 # to correctly unwind stackframes which contain system library
3605 # function frames (crbug.com/391706).
3607 '-fomit-frame-pointer',
3610 ['OS=="linux" and target_arch=="ia32"', {
3612 '-Wl,--no-as-needed',
3615 ['debug_unwind_tables==1', {
3616 'cflags': ['-funwind-tables'],
3618 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3620 # TODO(mostynb): shuffle clang/gcc_version/binutils_version
3621 # definitions in to the right scope to use them when setting
3622 # linux_use_debug_fission, so it can be used here alone.
3623 ['linux_use_debug_fission==1 and linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
3624 'cflags': ['-gsplit-dwarf'],
3630 'release_optimize%': '2',
3631 # Binaries become big and gold is unable to perform GC
3632 # and remove unused sections for some of test targets
3633 # on 32 bit platform.
3634 # (This is currently observed only in chromeos valgrind bots)
3635 # The following flag is to disable --gc-sections linker
3636 # option for these bots.
3637 'no_gc_sections%': 0,
3639 # TODO(bradnelson): reexamine how this is done if we change the
3640 # expansion of configurations
3641 'release_valgrind_build%': 0,
3644 '-O<(release_optimize)',
3645 # Don't emit the GCC version ident directives, they just end up
3646 # in the .comment section taking up binary size.
3648 # Put data and code in their own sections, so that unused symbols
3649 # can be removed at link time with --gc-sections.
3651 '-ffunction-sections',
3654 # Specifically tell the linker to perform optimizations.
3655 # See http://lwn.net/Articles/192624/ .
3660 ['no_gc_sections==0', {
3662 '-Wl,--gc-sections',
3665 ['OS=="android" and target_arch!="arm64"', {
3666 # We don't omit frame pointers on arm64 since they are required
3667 # to correctly unwind stackframes which contain system library
3668 # function frames (crbug.com/391706).
3670 '-fomit-frame-pointer',
3675 'release_optimize%': 's',
3678 # Warn in case of text relocations.
3679 '-Wl,--warn-shared-textrel',
3684 '-fno-omit-frame-pointer',
3688 ['profiling_full_stack_frames==1', {
3691 '-fno-optimize-sibling-calls',
3696 ['release_unwind_tables==1', {
3697 'cflags': ['-funwind-tables'],
3699 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
3705 ['target_arch=="ia32"', {
3706 'target_conditions': [
3707 ['_toolset=="target"', {
3709 # Needed so that libs with .s files (e.g. libicudata.a)
3710 # are compatible with the general 32-bit-ness.
3713 # All floating-point computations on x87 happens in 80-bit
3714 # precision. Because the C and C++ language standards allow
3715 # the compiler to keep the floating-point values in higher
3716 # precision than what's specified in the source and doing so
3717 # is more efficient than constantly rounding up to 64-bit or
3718 # 32-bit precision as specified in the source, the compiler,
3719 # especially in the optimized mode, tries very hard to keep
3720 # values in x87 floating-point stack (in 80-bit precision)
3721 # as long as possible. This has important side effects, that
3722 # the real value used in computation may change depending on
3723 # how the compiler did the optimization - that is, the value
3724 # kept in 80-bit is different than the value rounded down to
3725 # 64-bit or 32-bit. There are possible compiler options to
3726 # make this behavior consistent (e.g. -ffloat-store would keep
3727 # all floating-values in the memory, thus force them to be
3728 # rounded to its original precision) but they have significant
3729 # runtime performance penalty.
3731 # -mfpmath=sse -msse2 makes the compiler use SSE instructions
3732 # which keep floating-point values in SSE registers in its
3733 # native precision (32-bit for single precision, and 64-bit
3734 # for double precision values). This means the floating-point
3735 # value used during computation does not change depending on
3736 # how the compiler optimized the code, since the value is
3737 # always kept in its specified precision.
3739 # Refer to http://crbug.com/348761 for rationale behind SSE2
3740 # being a minimum requirement for 32-bit Linux builds and
3741 # http://crbug.com/313032 for an example where this has "bit"
3746 '-mmmx', # Allows mmintrin.h for MMX intrinsics.
3753 # Use gold linker for Android ia32 target.
3759 # Install packages have started cropping up with
3760 # different headers between the 32-bit and 64-bit
3761 # versions, so we have to shadow those differences off
3762 # and make sure a 32-bit-on-64-bit build picks up the
3764 # For android build, use NDK headers instead of host headers
3765 ['host_arch!="ia32" and OS!="android"', {
3774 ['target_arch=="x64"', {
3775 'target_conditions': [
3776 ['_toolset=="target"', {
3778 # Use gold linker for Android x64 target.
3795 ['target_arch=="arm"', {
3796 'target_conditions': [
3797 ['_toolset=="target"', {
3801 # The codesourcery arm-2009q3 toolchain warns at that the ABI
3802 # has changed whenever it encounters a varargs function. This
3803 # silences those warnings, as they are not helpful and
3804 # clutter legitimate warnings.
3808 ['clang==1 and arm_arch!="" and OS!="android"', {
3810 '-target arm-linux-gnueabihf',
3813 '-target arm-linux-gnueabihf',
3818 '-march=<(arm_arch)',
3821 ['use_lto==1 or use_lto_o2==1', {
3823 '-march=<(arm_arch)',
3828 ['clang==1 and OS!="android"', {
3830 # We need to disable clang's builtin assembler as it can't
3831 # handle several asm files, crbug.com/124610
3832 '-no-integrated-as',
3837 '-mtune=<(arm_tune)',
3840 ['use_lto==1 or use_lto_o2==1', {
3842 '-mtune=<(arm_tune)',
3852 ['use_lto==1 or use_lto_o2==1', {
3859 ['arm_float_abi!=""', {
3861 '-mfloat-abi=<(arm_float_abi)',
3864 ['use_lto==1 or use_lto_o2==1', {
3866 '-mfloat-abi=<(arm_float_abi)',
3876 ['use_lto==1 or use_lto_o2==1', {
3884 # Most of the following flags are derived from what Android
3885 # uses by default when building for arm, reference for which
3886 # can be found in the following file in the Android NDK:
3887 # toolchains/arm-linux-androideabi-4.9/setup.mk
3889 # The tree-sra optimization (scalar replacement for
3890 # aggregates enabling subsequent optimizations) leads to
3891 # invalid code generation when using the Android NDK's
3892 # compiler (r5-r7). This can be verified using
3893 # webkit_unit_tests' WTF.Checked_int8_t test.
3895 # The following option is disabled to improve binary
3896 # size and performance in gcc 4.9.
3897 '-fno-caller-saves',
3900 # Android now supports .relro sections properly.
3901 # NOTE: While these flags enable the generation of .relro
3902 # sections, the generated libraries can still be loaded on
3903 # older Android platform versions.
3910 ['gcc_version==48 and clang==0', {
3912 # The following 5 options are disabled to save on
3913 # binary size in GCC 4.8.
3914 '-fno-partial-inlining',
3915 '-fno-early-inlining',
3916 '-fno-tree-copy-prop',
3917 '-fno-tree-loop-optimize',
3918 '-fno-move-loop-invariants',
3922 'cflags': [ '-mthumb-interwork' ],
3926 # Thumb code with frame pointer makes chrome crash
3929 '-mapcs-frame', # Required by -fno-omit-frame-pointer.
3930 # The perf report sometimes incorrectly attributes
3931 # code from tail calls.
3932 '-fno-optimize-sibling-calls',
3935 '-fomit-frame-pointer',
3940 # Clang does not support the following options.
3941 '-mthumb-interwork',
3942 '-finline-limit=64',
3944 '-fno-caller-saves',
3948 # TODO(hans) Enable integrated-as (crbug.com/124610).
3949 '-no-integrated-as',
3950 '-B<(android_toolchain)', # Else /usr/bin/as gets picked up.
3953 # Let clang find the ld.gold in the NDK.
3954 '--gcc-toolchain=<(android_toolchain)/..',
3959 '-marm', # Required for frame pointer based stack traces.
3966 # We set arm_arch to "" so that -march compiler option
3967 # is not set. Otherwise a gcc bug that would complain
3968 # about it conflicting with '-mcpu=cortex-a9'. The flag
3969 # '-march=armv7-a' is actually redundant anyway because
3970 # it is enabled by default when we built the toolchain.
3971 # And using '-mcpu=cortex-a9' should be sufficient.
3974 # Breakpad requires symbols with debugging information
3978 # We want to statically link libstdc++/libgcc_s.
3979 '-static-libstdc++',
3983 # Some components in Chromium (e.g. v8, skia, ffmpeg)
3984 # define their own cflags for arm builds that could
3985 # conflict with the flags we set here (e.g.
3986 # '-mcpu=cortex-a9'). Remove these flags explicitly.
3995 ['target_arch=="arm64"', {
3996 'target_conditions': [
3997 ['_toolset=="target"', {
4001 '-fstack-protector', # stack protector is always enabled on arm64.
4008 ['target_arch=="mipsel"', {
4009 'target_conditions': [
4010 ['_toolset=="target"', {
4012 ['android_webview_build==0 and mips_arch_variant=="r6"', {
4013 'cflags': ['-mips32r6', '-Wa,-mips32r6'],
4016 'ldflags': ['-mips32r6', '-Wl,-melf32ltsmip',],
4020 ['android_webview_build==0 and mips_arch_variant=="r2"', {
4021 'cflags': ['-mips32r2', '-Wa,-mips32r2'],
4023 ['android_webview_build==0 and mips_arch_variant=="r1"', {
4024 'cflags': ['-mips32', '-Wa,-mips32'],
4028 '-Wl,--no-keep-memory'
4031 '-Wno-uninitialized',
4036 ['target_arch=="mips64el"', {
4037 'target_conditions': [
4038 ['_toolset=="target"', {
4040 ['android_webview_build==0 and mips_arch_variant=="r6"', {
4041 'cflags': ['-mips64r6', '-Wa,-mips64r6'],
4042 'ldflags': [ '-mips64r6' ],
4044 ['android_webview_build==0 and mips_arch_variant=="r2"', {
4045 'cflags': ['-mips64r2', '-Wa,-mips64r2'],
4046 'ldflags': [ '-mips64r2' ],
4050 '-Wno-uninitialized',
4064 'target_conditions': [
4065 ['_toolset=="target"', {
4067 '--sysroot=<(sysroot)',
4070 '--sysroot=<(sysroot)',
4071 '<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))',
4077 # TODO(thakis): Remove, http://crbug.com/263960
4078 '-Wno-reserved-user-defined-literal',
4081 # See the comment in the Mac section for what it takes to move
4082 # this to -std=c++11.
4086 ['clang==0 and host_clang==1', {
4087 'target_conditions': [
4088 ['_toolset=="host"', {
4089 'cflags_cc': [ '-std=gnu++11', ],
4093 ['clang==1 and clang_use_chrome_plugins==1', {
4095 '<@(clang_chrome_plugins_flags)',
4098 ['clang==1 and clang_load!=""', {
4100 '-Xclang', '-load', '-Xclang', '<(clang_load)',
4103 ['clang==1 and clang_add_plugin!=""', {
4105 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
4108 ['clang==1 and target_arch=="ia32"', {
4110 # Else building libyuv gives clang's register allocator issues,
4111 # see llvm.org/PR15798 / crbug.com/233709
4112 '-momit-leaf-frame-pointer',
4113 # Align the stack on 16-byte boundaries, http://crbug.com/418554.
4114 '-mstack-alignment=16',
4118 ['clang==1 and "<(GENERATOR)"=="ninja"', {
4120 # See http://crbug.com/110262
4121 '-fcolor-diagnostics',
4124 # Common options for AddressSanitizer, LeakSanitizer,
4125 # ThreadSanitizer and MemorySanitizer.
4126 ['asan==1 or lsan==1 or tsan==1 or msan==1 or ubsan==1 or ubsan_vptr==1', {
4127 'target_conditions': [
4128 ['_toolset=="target"', {
4130 '-fno-omit-frame-pointer',
4131 '-gline-tables-only',
4134 '-fomit-frame-pointer',
4139 ['asan==1 or lsan==1 or tsan==1 or msan==1', {
4140 'target_conditions': [
4141 ['_toolset=="target"', {
4143 # Functions interposed by the sanitizers can make ld think
4144 # that some libraries aren't needed when they actually are,
4145 # http://crbug.com/234010. As workaround, disable --as-needed.
4149 'MEMORY_TOOL_REPLACES_ALLOCATOR',
4150 'MEMORY_SANITIZER_INITIAL_SIZE',
4156 'target_conditions': [
4157 ['_toolset=="target"', {
4159 '-fsanitize=address',
4160 # TODO(earthdok): Re-enable. http://crbug.com/427202
4161 #'-fsanitize-blacklist=<(asan_blacklist)',
4164 '-fsanitize=address',
4171 '-mllvm -asan-globals=0', # http://crbug.com/352073
4177 'target_conditions': [
4178 ['_toolset=="target"', {
4180 '-fsanitize=undefined',
4181 # -fsanitize=vptr is incompatible with -fno-rtti.
4182 '-fno-sanitize=vptr',
4185 '-fsanitize=undefined',
4186 # -fsanitize=vptr is incompatible with -fno-rtti.
4187 '-fno-sanitize=vptr',
4193 'target_conditions': [
4194 ['_toolset=="target"', {
4197 '-fsanitize-blacklist=<(ubsan_vptr_blacklist)',
4209 'UNDEFINED_SANITIZER',
4214 ['asan_coverage!=0', {
4215 'target_conditions': [
4216 ['_toolset=="target"', {
4218 '-mllvm -asan-coverage=<(asan_coverage)',
4223 ['asan_field_padding!=0', {
4224 'target_conditions': [
4225 ['_toolset=="target"', {
4227 '-fsanitize-address-field-padding=<(asan_field_padding)',
4233 'target_conditions': [
4234 ['_toolset=="target"', {
4243 'WTF_USE_LEAK_SANITIZER=1',
4249 'target_conditions': [
4250 ['_toolset=="target"', {
4252 '-fsanitize=thread',
4254 '-fsanitize-blacklist=<(tsan_blacklist)',
4257 '-fsanitize=thread',
4261 'DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1',
4262 'WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1',
4264 'target_conditions': [
4265 ['_type=="executable"', {
4275 'target_conditions': [
4276 ['_toolset=="target"', {
4278 '-fsanitize=memory',
4279 '-fsanitize-memory-track-origins=<(msan_track_origins)',
4281 '-fsanitize-blacklist=<(msan_blacklist)',
4284 '-fsanitize=memory',
4289 'target_conditions': [
4290 ['_type=="executable"', {
4299 ['use_instrumented_libraries==1', {
4301 '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:instrumented_libraries',
4304 ['use_custom_libcxx==1', {
4306 '<(DEPTH)/third_party/libc++/libc++.gyp:libcxx_proxy',
4309 ['order_profiling!=0 and (chromeos==1 or OS=="linux" or OS=="android")', {
4310 'target_conditions' : [
4311 # crazy_linker has an upstream gyp file we can't edit, and we
4312 # don't want to instrument it.
4313 ['_toolset=="target" and _target_name!="crazy_linker"', {
4315 '-finstrument-functions',
4316 # Allow mmx intrinsics to inline, so that the
4317 #0 compiler can expand the intrinsics.
4318 '-finstrument-functions-exclude-file-list=mmintrin.h',
4321 ['_toolset=="target" and OS=="android"', {
4323 # Avoids errors with current NDK:
4324 # "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"
4325 '-finstrument-functions-exclude-file-list=arm_neon.h,SaturatedArithmeticARM.h',
4330 ['linux_dump_symbols==1', {
4333 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0', {
4334 'target_conditions': [
4335 ['_toolset=="target"', {
4337 # Attempt to use less memory to prevent the linker from
4338 # running out of address space. Considering installing a
4339 # 64-bit kernel and switching to a 64-bit linker.
4340 '-Wl,--no-keep-memory',
4347 ['use_allocator!="tcmalloc"', {
4348 'defines': ['NO_TCMALLOC'],
4350 ['linux_use_gold_flags==1', {
4351 # Newer gccs and clangs support -fuse-ld, use the flag to force gold
4353 # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
4354 'ldflags': [ '-fuse-ld=gold', ],
4356 'target_conditions': [
4357 ['_toolset=="target"', {
4359 # Experimentation found that using four linking threads
4360 # saved ~20% of link time.
4361 # https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/281527606915bb36
4362 # Only apply this to the target linker, since the host
4363 # linker might not be gold, but isn't used much anyway.
4364 # TODO(raymes): Disable threading because gold is frequently
4365 # crashing on the bots: crbug.com/161942.
4367 # '-Wl,--thread-count=4',
4372 ['release_valgrind_build==0', {
4373 'target_conditions': [
4374 ['_toolset=="target"', {
4383 ['linux_use_bundled_binutils==1', {
4385 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4388 ['linux_use_bundled_gold==1', {
4389 # Put our binutils, which contains gold in the search path. We pass
4390 # the path to gold to the compiler. gyp leaves unspecified what the
4391 # cwd is when running the compiler, so the normal gyp path-munging
4392 # fails us. This hack gets the right path.
4394 '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
4397 # Some binutils 2.23 releases may or may not have new dtags enabled,
4398 # but they are all compatible with --disable-new-dtags,
4399 # because the new dynamic tags are not created by default.
4400 ['binutils_version>=223', {
4401 # Newer binutils don't set DT_RPATH unless you disable "new" dtags
4402 # and the new DT_RUNPATH doesn't work without --no-as-needed flag.
4403 # FIXME(mithro): Figure out the --as-needed/--no-as-needed flags
4404 # inside this file to allow usage of --no-as-needed and removal of
4407 '-Wl,--disable-new-dtags',
4410 ['gcc_version>=47 and clang==0', {
4411 'target_conditions': [
4412 ['_toolset=="target"', {
4415 # See comment for -Wno-c++11-narrowing.
4417 # TODO(thakis): Remove, http://crbug.com/263960
4418 '-Wno-literal-suffix',
4423 ['host_gcc_version>=47 and clang==0 and host_clang==0', {
4424 'target_conditions': [
4425 ['_toolset=="host"', {
4428 # See comment for -Wno-c++11-narrowing.
4430 # TODO(thakis): Remove, http://crbug.com/263960
4431 '-Wno-literal-suffix',
4439 # FreeBSD-specific options; note that most FreeBSD options are set above,
4442 'target_defaults': {
4444 '-Wl,--no-keep-memory',
4448 # Android-specific options; note that most are set above with Linux.
4451 # This is a unique identifier for a given build. It's used for
4452 # identifying various build artifacts corresponding to a particular
4453 # build of chrome (e.g. where to find archived symbols).
4454 'chrome_build_id%': '',
4456 # Figure this out early since it needs symbols from libgcc.a, so it
4457 # has to be before that in the set of libraries.
4458 ['component=="shared_library"', {
4459 'android_stlport_library': 'stlport_shared',
4461 'android_stlport_library': 'stlport_static',
4465 # Placing this variable here prevents from forking libvpx, used
4466 # by remoting. Remoting is off, so it needn't built,
4467 # so forking it's deps seems like overkill.
4468 # But this variable need defined to properly run gyp.
4469 # A proper solution is to have an OS==android conditional
4470 # in third_party/libvpx/libvpx.gyp to define it.
4471 'libvpx_path': 'lib/linux/arm',
4473 'target_defaults': {
4475 'release_extra_cflags%': '',
4477 # If we're using the components build, append "cr" to all shared
4478 # libraries to avoid naming collisions with android system library
4479 # versions with the same name (e.g. skia, icu).
4480 ['component=="shared_library"', {
4481 'android_product_extension': 'cr.so',
4483 'android_product_extension': 'so',
4487 'target_conditions': [
4488 ['_type=="shared_library"', {
4489 'product_extension': '<(android_product_extension)',
4492 # Settings for building device targets using Android's toolchain.
4493 # These are based on the setup.mk file from the Android NDK.
4495 # The NDK Android executable link step looks as follows:
4497 # $(TARGET_CRTBEGIN_DYNAMIC_O) <-- crtbegin.o
4498 # $(PRIVATE_OBJECTS) <-- The .o that we built
4499 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4500 # $(TARGET_LIBGCC) <-- libgcc.a
4501 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4502 # $(PRIVATE_LDLIBS) <-- System .so
4503 # $(TARGET_CRTEND_O) <-- crtend.o
4505 # For now the above are approximated for executables by adding
4506 # crtbegin.o to the end of the ldflags and 'crtend.o' to the end
4509 # The NDK Android shared library link step looks as follows:
4511 # $(PRIVATE_OBJECTS) <-- The .o that we built
4512 # -l,--whole-archive
4513 # $(PRIVATE_WHOLE_STATIC_LIBRARIES)
4514 # -l,--no-whole-archive
4515 # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
4516 # $(TARGET_LIBGCC) <-- libgcc.a
4517 # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
4518 # $(PRIVATE_LDLIBS) <-- System .so
4520 # For now, assume that whole static libraries are not needed.
4522 # For both executables and shared libraries, add the proper
4523 # libgcc.a to the start of libraries which puts it in the
4524 # proper spot after .o and .a files get linked in.
4526 # TODO: The proper thing to do longer-tem would be proper gyp
4527 # support for a custom link command line.
4528 ['_toolset=="target"', {
4530 '-pthread', # Not supported by Android toolchain.
4533 '-ffunction-sections',
4536 '-fstack-protector',
4538 '-finline-limit=64',
4539 '-Wa,--noexecstack',
4540 '<@(release_extra_cflags)',
4544 '__GNU_SOURCE=1', # Necessary for clone()
4546 '_STLP_USE_PTR_SPECIALIZATIONS=1',
4547 'CHROME_BUILD_ID="<(chrome_build_id)"',
4550 '-pthread', # Not supported by Android toolchain.
4553 '-Wl,--no-undefined',
4556 ['component=="static_library"', {
4558 '-Wl,--exclude-libs=ALL',
4563 # Work around incompatibilities between bionic and clang
4565 '-D__compiler_offsetof=__builtin_offsetof',
4566 '-Dnan=__builtin_nan',
4569 ['target_arch=="arm"', {
4571 '-target arm-linux-androideabi',
4574 '-target arm-linux-androideabi',
4577 ['target_arch=="ia32"', {
4579 '-target x86-linux-androideabi',
4582 '-target x86-linux-androideabi',
4585 # Place holder for x64 support, not tested.
4586 # TODO: Enable clang support for Android x64. http://crbug.com/346626
4587 ['target_arch=="x64"', {
4589 '-target x86_64-linux-androideabi',
4592 '-target x86_64-linux-androideabi',
4599 # Android build relies on -Wl,--gc-sections removing
4600 # unreachable code. ASan instrumentation for globals inhibits
4601 # this and results in a library with unresolvable relocations.
4602 # TODO(eugenis): find a way to reenable this.
4603 '-mllvm -asan-globals=0',
4606 ['target_arch=="arm"', {
4608 # TODO(hans): The ASan runtime is no longer automatically
4609 # added to the link line when using -nostdlib. Can we
4610 # stop adding -nostdlib? (crbug.com/423429)
4611 '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/lib/clang/3.6.0/lib/linux/libclang_rt.asan-arm-android.so',
4616 ['android_webview_build==0', {
4618 # The NDK has these things, but doesn't define the constants
4619 # to say that it does. Define them here instead.
4623 '--sysroot=<(android_ndk_sysroot)',
4626 '--sysroot=<(android_ndk_sysroot)',
4630 '-l<(android_stlport_library)',
4631 # Manually link the libgcc.a that the cross compiler uses.
4632 '<!(<(android_toolchain)/*-gcc -print-libgcc-file-name)',
4638 ['android_webview_build==1', {
4640 # Android predefines this as 1; undefine it here so Chromium
4641 # can redefine it later to be 2 for chromium code and unset
4642 # for third party code. This works because cflags are added
4644 '-U_FORTIFY_SOURCE',
4645 # Disable any additional warnings enabled by the Android build system but which
4646 # chromium does not build cleanly with (when treating warning as errors).
4647 # Things that are part of -Wextra:
4648 '-Wno-extra', # Enabled by -Wextra, but no specific flag
4649 '-Wno-ignored-qualifiers',
4651 '-Wno-unused-but-set-variable',
4654 # Other things unrelated to -Wextra:
4655 '-Wno-non-virtual-dtor',
4662 ['android_webview_build==1', {
4663 'target_conditions': [
4664 ['chromium_code==0', {
4666 # There is a class of warning which:
4667 # 1) Android always enables and also treats as errors
4668 # 2) Chromium ignores in third party code
4669 # So we re-enable those warnings when building Android.
4671 '-Wno-format-security',
4673 '-Wno-sequence-point',
4676 '-Wno-non-virtual-dtor',
4681 ['target_arch == "arm"', {
4683 # Enable identical code folding to reduce size.
4687 # NOTE: The stlport header include paths below are specified in
4688 # cflags rather than include_dirs because they need to come
4689 # after include_dirs. Think of them like system headers, but
4690 # don't use '-isystem' because the arm-linux-androideabi-4.4.3
4691 # toolchain (circa Gingerbread) will exhibit strange errors.
4692 # The include ordering here is important; change with caution.
4693 ['android_webview_build==0', {
4695 '-isystem<(android_stlport_include)',
4698 '-L<(android_stlport_libs_dir)',
4700 }, { # else: android_webview_build!=0
4701 'aosp_build_settings': {
4702 # Specify that we want to statically link stlport from the
4703 # NDK. This will provide all the include and library paths
4704 # automatically at build time, and link the right library.
4705 'LOCAL_NDK_STL_VARIANT': 'stlport_static',
4708 ['target_arch=="ia32"', {
4709 # The x86 toolchain currently has problems with stack-protector.
4711 '-fstack-protector',
4714 '-fno-stack-protector',
4718 'target_conditions': [
4719 ['_type=="executable"', {
4720 # Force android tools to export the "main" symbol so they can be
4721 # loaded on ICS using the run_pie wrapper. See crbug.com/373219.
4722 # TODO(primiano): remove -fvisibility and -rdynamic flags below
4723 # when ICS support will be dropped.
4726 '-fvisibility=default',
4730 '-Wl,--gc-sections',
4731 '-Wl,-z,nocopyreloc',
4734 # crtbegin_dynamic.o should be the last item in ldflags.
4735 '<(android_ndk_lib)/crtbegin_dynamic.o',
4738 # crtend_android.o needs to be the last item in libraries.
4739 # Do not add any libraries after this!
4740 '<(android_ndk_lib)/crtend_android.o',
4743 ['_type=="shared_library" or _type=="loadable_module"', {
4745 '-Wl,--exclude-libs=ALL',
4748 '-Wl,-shared,-Bsymbolic',
4751 ['android_webview_build==0', {
4753 # crtbegin_so.o should be the last item in ldflags.
4754 '<(android_ndk_lib)/crtbegin_so.o',
4757 # crtend_so.o needs to be the last item in libraries.
4758 # Do not add any libraries after this!
4759 '<(android_ndk_lib)/crtend_so.o',
4766 # Settings for building host targets using the system toolchain.
4767 ['_toolset=="host"', {
4769 # Due to issues in Clang build system, using ASan on 32-bit
4770 # binaries on x86_64 host is problematic.
4771 # TODO(eugenis): re-enable.
4772 '-fsanitize=address',
4775 '-fsanitize=address',
4776 '-Wl,-z,noexecstack',
4777 '-Wl,--gc-sections',
4780 '-Wl,--warn-shared-textrel',
4781 '-Wl,--fatal-warnings',
4784 # Settings for building host targets on mac.
4785 ['_toolset=="host" and host_os=="mac"', {
4795 'cflags!': ['-fvisibility=hidden'],
4796 'cflags_cc!': ['-fvisibility-inlines-hidden'],
4798 ['OS=="mac" or OS=="ios"', {
4799 'target_defaults': {
4802 'ALWAYS_SEARCH_USER_PATHS': 'NO',
4803 # Don't link in libarclite_macosx.a, see http://crbug.com/156530.
4804 'CLANG_LINK_OBJC_RUNTIME': 'NO', # -fno-objc-link-runtime
4805 'COPY_PHASE_STRIP': 'NO',
4806 'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
4807 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
4808 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
4809 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
4810 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
4811 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden
4812 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
4813 'GCC_OBJC_CALL_CXX_CDTORS': 'YES', # -fobjc-call-cxx-cdtors
4814 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
4815 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
4816 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror
4817 'GCC_VERSION': '4.2',
4818 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
4819 'USE_HEADERMAP': 'NO',
4824 # Don't warn about unused function parameters.
4825 '-Wno-unused-parameter',
4826 # Don't warn about the "struct foo f = {0};" initialization
4828 '-Wno-missing-field-initializers',
4831 ['chromium_mac_pch', {'GCC_PRECOMPILE_PREFIX_HEADER': 'YES'},
4832 {'GCC_PRECOMPILE_PREFIX_HEADER': 'NO'}
4834 # Note that the prebuilt Clang binaries should not be used for iOS
4835 # development except for ASan builds.
4837 # gnu++11 instead of c++11 is needed because some code uses
4838 # typeof() (a GNU extension).
4839 # TODO(thakis): Eventually switch this to c++11 instead of
4840 # gnu++11 (once typeof can be removed, which is blocked on c++11
4841 # being available everywhere).
4842 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++11', # -std=gnu++11
4843 # Warn if automatic synthesis is triggered with
4844 # the -Wobjc-missing-property-synthesis flag.
4845 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
4846 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
4848 # This warns on selectors from Cocoa headers (-length, -set).
4849 # cfe-dev is currently discussing the merits of this warning.
4850 # TODO(thakis): Reevaluate what to do with this, based one
4851 # cfe-dev discussion.
4852 '-Wno-selector-type-mismatch',
4855 ['clang_xcode==0', {
4856 'CC': '$(SOURCE_ROOT)/<(clang_dir)/clang',
4857 'LDPLUSPLUS': '$(SOURCE_ROOT)/<(clang_dir)/clang++',
4861 ['clang==1 and clang_xcode==0 and clang_use_chrome_plugins==1', {
4863 '<@(clang_chrome_plugins_flags)',
4866 ['clang==1 and clang_xcode==0 and clang_load!=""', {
4868 '-Xclang', '-load', '-Xclang', '<(clang_load)',
4871 ['clang==1 and clang_xcode==0 and clang_add_plugin!=""', {
4873 '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
4876 ['clang==1 and "<(GENERATOR)"=="ninja"', {
4878 # See http://crbug.com/110262
4879 '-fcolor-diagnostics',
4882 ['OS=="ios" and target_subarch!="arm32" and \
4883 "<(GENERATOR)"=="xcode"', {
4885 # TODO(ios): when building Chrome for iOS on 64-bit platform
4886 # with Xcode, the -Wshorted-64-to-32 warning is automatically
4887 # enabled. This cause failures when compiling protobuf code,
4888 # so disable the warning. http://crbug.com/359107
4889 '-Wno-shorten-64-to-32',
4897 'clang_dir': '../third_party/llvm-build/Release+Asserts/bin',
4903 '-fsanitize=address',
4904 '-mllvm -asan-globals=0', # http://crbug.com/352073
4905 '-gline-tables-only',
4909 ['asan_coverage!=0', {
4910 'target_conditions': [
4911 ['_toolset=="target"', {
4913 '-mllvm -asan-coverage=<(asan_coverage)',
4919 'target_conditions': [
4920 ['_type!="static_library"', {
4921 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
4926 '-fsanitize=address',
4930 ['mac_write_linker_maps==1', {
4933 '-Wl,-map,>(_target_name).map',
4940 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
4941 'target_conditions': [
4942 ['_type=="executable"', {
4948 # Define copy_asan_dylib_path in a variable ending in
4949 # _path so that gyp understands it's a path and
4950 # performs proper relativization during dict merging.
4951 'copy_asan_dylib_path':
4952 'mac/copy_asan_runtime_dylib.sh',
4954 'postbuild_name': 'Copy ASan runtime dylib',
4956 '<(copy_asan_dylib_path)',
4965 ], # target_conditions
4966 }, # target_defaults
4967 }], # OS=="mac" or OS=="ios"
4969 'target_defaults': {
4971 # Prevent Mac OS X AssertMacros.h from defining macros that collide
4972 # with common names, like 'check', 'require', and 'verify'.
4973 # (Included by system header. Also exists on iOS but not included.)
4974 # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h
4975 '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0',
4978 # These should end with %, but there seems to be a bug with % in
4979 # variables that are intended to be set to different values in
4980 # different targets, like these.
4981 'mac_pie': 1, # Most executables can be position-independent.
4982 # Strip debugging symbols from the target.
4983 'mac_strip': '<(mac_strip_release)',
4987 ['mac_want_real_dsym=="default"', {
4990 'mac_real_dsym': '<(mac_want_real_dsym)'
4995 ['mac_want_real_dsym=="default"', {
4996 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
4998 'mac_real_dsym': '<(mac_want_real_dsym)'
5005 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
5006 # (Equivalent to -fPIC)
5007 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
5008 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5009 # Keep pch files below xcodebuild/.
5010 'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders',
5012 # Someday this can be replaced by an 'GCC_STRICT_ALIASING': 'NO'
5013 # xcode_setting, but not until all downstream projects' mac bots are
5014 # using xcode >= 4.6, because that's when the default value of the
5015 # flag in the compiler switched. Pre-4.6, the value 'NO' for that
5016 # setting is a no-op as far as xcode is concerned, but the compiler
5017 # behaves differently based on whether -fno-strict-aliasing is
5019 '-fno-strict-aliasing', # See http://crbug.com/32204.
5022 'target_conditions': [
5023 ['_type=="executable"', {
5026 # Arranges for data (heap) pages to be protected against
5027 # code execution when running on Mac OS X 10.7 ("Lion"), and
5028 # ensures that the position-independent executable (PIE) bit
5029 # is set for ASLR when running on Mac OS X 10.5 ("Leopard").
5031 # Define change_mach_o_flags in a variable ending in _path
5032 # so that GYP understands it's a path and performs proper
5033 # relativization during dict merging.
5034 'change_mach_o_flags_path':
5035 'mac/change_mach_o_flags_from_xcode.sh',
5036 'change_mach_o_flags_options%': [
5038 'target_conditions': [
5039 ['mac_pie==0 or release_valgrind_build==1', {
5040 # Don't enable PIE if it's unwanted. It's unwanted if
5041 # the target specifies mac_pie=0 or if building for
5042 # Valgrind, because Valgrind doesn't understand slide.
5043 # See the similar mac_pie/release_valgrind_build check
5045 'change_mach_o_flags_options': [
5051 'postbuild_name': 'Change Mach-O Flags',
5053 '<(change_mach_o_flags_path)',
5054 '>@(change_mach_o_flags_options)',
5061 'asan_saves_file': 'asan.saves',
5064 'CHROMIUM_STRIP_SAVE_FILE': '<(asan_saves_file)',
5068 'target_conditions': [
5069 ['mac_pie==1 and release_valgrind_build==0', {
5070 # Turn on position-independence (ASLR) for executables. When
5071 # PIE is on for the Chrome executables, the framework will
5072 # also be subject to ASLR.
5073 # Don't do this when building for Valgrind, because Valgrind
5074 # doesn't understand slide. TODO: Make Valgrind on Mac OS X
5075 # understand slide, and get rid of the Valgrind check.
5078 '-Wl,-pie', # Position-independent executable (MH_PIE)
5084 ['(_type=="executable" or _type=="shared_library" or \
5085 _type=="loadable_module") and mac_strip!=0', {
5086 'target_conditions': [
5087 ['mac_real_dsym == 1', {
5088 # To get a real .dSYM bundle produced by dsymutil, set the
5089 # debug information format to dwarf-with-dsym. Since
5090 # strip_from_xcode will not be used, set Xcode to do the
5091 # stripping as well.
5095 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
5096 'DEPLOYMENT_POSTPROCESSING': 'YES',
5097 'STRIP_INSTALLED_PRODUCT': 'YES',
5098 'target_conditions': [
5099 ['_type=="shared_library" or _type=="loadable_module"', {
5100 # The Xcode default is to strip debugging symbols
5101 # only (-S). Local symbols should be stripped as
5102 # well, which will be handled by -x. Xcode will
5103 # continue to insert -S when stripping even when
5104 # additional flags are added with STRIPFLAGS.
5106 }], # _type=="shared_library" or _type=="loadable_module"
5107 ['_type=="executable"', {
5110 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)',
5113 }], # _type=="executable" and asan==1
5114 ], # target_conditions
5116 }, # configuration "Release"
5118 }, { # mac_real_dsym != 1
5119 # To get a fast fake .dSYM bundle, use a post-build step to
5120 # produce the .dSYM and strip the executable. strip_from_xcode
5121 # only operates in the Release configuration.
5125 # Define strip_from_xcode in a variable ending in _path
5126 # so that gyp understands it's a path and performs proper
5127 # relativization during dict merging.
5128 'strip_from_xcode_path': 'mac/strip_from_xcode',
5130 'postbuild_name': 'Strip If Needed',
5131 'action': ['<(strip_from_xcode_path)'],
5135 ], # target_conditions
5136 }], # (_type=="executable" or _type=="shared_library" or
5137 # _type=="loadable_module") and mac_strip!=0
5138 ], # target_conditions
5139 }, # target_defaults
5142 'target_defaults': {
5143 'xcode_settings' : {
5144 # TODO(stuartmorgan): switch to c++0x (see TODOs in the clang
5146 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++0x',
5149 # Older Xcodes do not support -Wno-deprecated-register, so pass an
5150 # additional flag to suppress the "unknown compiler option" error.
5151 # Restrict this flag to builds that are either compiling with Xcode
5152 # or compiling with Xcode's Clang. This will allow Ninja builds to
5153 # continue failing on unknown compiler options.
5154 # TODO(rohitrao): This flag is temporary and should be removed as
5155 # soon as the iOS bots are updated to use Xcode 5.1.
5156 ['clang_xcode==1', {
5158 '-Wno-unknown-warning-option',
5162 # Limit the valid architectures depending on "target_subarch".
5163 # This need to include the "arm" architectures but also the "x86"
5164 # ones (they are used when building for the simulator).
5165 ['target_subarch=="arm32"', {
5166 'VALID_ARCHS': ['armv7', 'i386'],
5168 ['target_subarch=="arm64"', {
5169 'VALID_ARCHS': ['arm64', 'x86_64'],
5171 ['target_subarch=="both"', {
5172 'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
5174 ['use_system_libcxx==1', {
5175 'target_conditions': [
5176 # Only use libc++ when building target for iOS not when building
5177 # tools for the host (OS X) as Mac targets OS X SDK 10.6 which
5178 # does not support libc++.
5179 ['_toolset=="target"', {
5180 'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++
5184 # The default for deployment target of 7.0+ is libc++, so force
5185 # the old behavior unless libc++ is enabled.
5186 'CLANG_CXX_LIBRARY': 'libstdc++', # -stdlib=libstdc++
5190 'target_conditions': [
5191 ['_toolset=="host"', {
5193 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
5194 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
5203 ['_toolset=="target"', {
5205 # This section should be for overriding host settings. But,
5206 # since we can't negate the iphone deployment target above, we
5207 # instead set it here for target only.
5208 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)',
5209 'ARCHS': ['$(ARCHS_STANDARD_INCLUDING_64_BIT)'],
5212 ['_type=="executable"', {
5216 'DEPLOYMENT_POSTPROCESSING': 'YES',
5217 'STRIP_INSTALLED_PRODUCT': 'YES',
5222 # Remove dSYM to reduce build time.
5223 'DEBUG_INFORMATION_FORMAT': 'dwarf',
5229 ['chromium_ios_signing', {
5230 # iOS SDK wants everything for device signed.
5231 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
5233 'CODE_SIGNING_REQUIRED': 'NO',
5234 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '',
5239 ], # target_conditions
5240 }, # target_defaults
5243 'target_defaults': {
5245 '_WIN32_WINNT=0x0602',
5252 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
5253 'WIN32_LEAN_AND_MEAN',
5255 # _HAS_EXCEPTIONS must match ExceptionHandling in msvs_settings.
5256 '_HAS_EXCEPTIONS=0',
5259 ['buildtype=="Official"', {
5260 # In official builds, targets can self-select an optimization
5261 # level by defining a variable named 'optimize', and setting it
5263 # - "size", optimizes for minimal code size - the default.
5264 # - "speed", optimizes for speed over code size.
5265 # - "max", whole program optimization and link-time code
5266 # generation. This is very expensive and should be used
5269 'optimize%': 'size',
5273 # Set /LTCG for the official builds.
5274 'LinkTimeCodeGeneration': '1',
5277 'target_conditions': [
5278 ['optimize=="size"', {
5280 'VCCLCompilerTool': {
5281 # 1, optimizeMinSpace, Minimize Size (/O1)
5282 'Optimization': '1',
5283 # 2, favorSize - Favor small code (/Os)
5284 'FavorSizeOrSpeed': '2',
5289 ['optimize=="speed"', {
5291 'VCCLCompilerTool': {
5292 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5293 'Optimization': '2',
5294 # 1, favorSpeed - Favor fast code (/Ot)
5295 'FavorSizeOrSpeed': '1',
5300 ['optimize=="max"', {
5301 # Disable Warning 4702 ("Unreachable code") for the WPO/PGO
5302 # builds. Probably anything that this would catch that
5303 # wouldn't be caught in a normal build isn't going to
5304 # actually be a bug, so the incremental value of C4702 for
5305 # PGO builds is likely very small.
5306 'msvs_disabled_warnings': [
5310 'VCCLCompilerTool': {
5311 # 2, optimizeMaxSpeed, Maximize Speed (/O2)
5312 'Optimization': '2',
5313 # 1, favorSpeed - Favor fast code (/Ot)
5314 'FavorSizeOrSpeed': '1',
5315 # This implies link time code generation.
5316 'WholeProgramOptimization': 'true',
5334 'AdditionalLibraryDirectories':
5335 ['<(windows_driver_kit_path)/lib/ATL/i386'],
5337 'VCLibrarianTool': {
5338 'AdditionalLibraryDirectories':
5339 ['<(windows_driver_kit_path)/lib/ATL/i386'],
5345 'VCLibrarianTool': {
5346 'AdditionalLibraryDirectories':
5347 ['<(windows_driver_kit_path)/lib/ATL/amd64'],
5350 'AdditionalLibraryDirectories':
5351 ['<(windows_driver_kit_path)/lib/ATL/amd64'],
5356 # https://code.google.com/p/chromium/issues/detail?id=372451#c20
5357 # Warning 4702 ("Unreachable code") should be re-enabled once
5358 # Express users are updated to VS2013 Update 2.
5359 'msvs_disabled_warnings': [
5363 'VCCLCompilerTool': {
5364 'AdditionalOptions!': [
5365 '/Zc:inline', # Not supported on non-updated Express.
5369 # Explicitly required when using the ATL with express
5370 'AdditionalDependencies': ['atlthunk.lib'],
5372 # ATL 8.0 included in WDK 7.1 makes the linker to generate
5373 # almost eight hundred LNK4254 and LNK4078 warnings:
5374 # - warning LNK4254: section 'ATL' (50000040) merged into
5375 # '.rdata' (40000040) with different attributes
5376 # - warning LNK4078: multiple 'ATL' sections found with
5377 # different attributes
5378 'AdditionalOptions': ['/ignore:4254', '/ignore:4078'],
5381 'msvs_system_include_dirs': [
5382 '<(windows_driver_kit_path)/inc/atl71',
5383 '<(windows_driver_kit_path)/inc/mfc42',
5387 'msvs_system_include_dirs': [
5388 '<(windows_sdk_path)/Include/shared',
5389 '<(windows_sdk_path)/Include/um',
5390 '<(windows_sdk_path)/Include/winrt',
5391 '$(VSInstallDir)/VC/atlmfc/include',
5393 'msvs_cygwin_shell': 0,
5394 'msvs_disabled_warnings': [
5395 # C4127: conditional expression is constant
5396 # This warning can in theory catch dead code and other problems, but
5397 # triggers in far too many desirable cases where the conditional
5398 # expression is either set by macros or corresponds some legitimate
5399 # compile-time constant expression (due to constant template args,
5400 # conditionals comparing the sizes of different types, etc.). Some of
5401 # these can be worked around, but it's not worth it.
5404 # C4351: new behavior: elements of array 'array' will be default
5406 # This is a silly "warning" that basically just alerts you that the
5407 # compiler is going to actually follow the language spec like it's
5408 # supposed to, instead of not following it like old buggy versions
5409 # did. There's absolutely no reason to turn this on.
5412 # C4355: 'this': used in base member initializer list
5413 # It's commonly useful to pass |this| to objects in a class'
5414 # initializer list. While this warning can catch real bugs, most of
5415 # the time the constructors in question don't attempt to call methods
5416 # on the passed-in pointer (until later), and annotating every legit
5417 # usage of this is simply more hassle than the warning is worth.
5420 # C4503: 'identifier': decorated name length exceeded, name was
5422 # This only means that some long error messages might have truncated
5423 # identifiers in the presence of lots of templates. It has no effect
5424 # on program correctness and there's no real reason to waste time
5425 # trying to prevent it.
5428 # C4611: interaction between 'function' and C++ object destruction is
5430 # This warning is unavoidable when using e.g. setjmp/longjmp. MSDN
5431 # suggests using exceptions instead of setjmp/longjmp for C++, but
5432 # Chromium code compiles without exception support. We therefore have
5433 # to use setjmp/longjmp for e.g. JPEG decode error handling, which
5434 # means we have to turn off this warning (and be careful about how
5435 # object destruction happens in such cases).
5438 # TODO(maruel): These warnings are level 4. They will be slowly
5439 # removed as code is fixed.
5440 4100, # Unreferenced formal parameter
5441 4121, # Alignment of a member was sensitive to packing
5442 4189, # Local variable is initialized but not referenced
5443 4244, # Conversion from 'type1' to 'type2', possible loss of data
5444 4481, # Nonstandard extension used: override specifier 'keyword'
5445 4505, # Unreferenced local function has been removed
5446 4510, # Default constructor could not be generated
5447 4512, # Assignment operator could not be generated
5448 4610, # Object can never be instantiated
5451 'VCCLCompilerTool': {
5452 'AdditionalOptions': ['/MP'],
5453 'MinimalRebuild': 'false',
5454 'BufferSecurityCheck': 'true',
5455 'EnableFunctionLevelLinking': 'true',
5456 'RuntimeTypeInfo': 'false',
5457 'WarningLevel': '4',
5458 'WarnAsError': 'true',
5459 'DebugInformationFormat': '3',
5460 # ExceptionHandling must match _HAS_EXCEPTIONS above.
5461 'ExceptionHandling': '0',
5463 'VCLibrarianTool': {
5464 'AdditionalOptions': ['/ignore:4221'],
5465 'AdditionalLibraryDirectories': [
5466 '<(windows_sdk_path)/Lib/win8/um/x86',
5470 'AdditionalDependencies': [
5482 'AdditionalLibraryDirectories': [
5483 '<(windows_sdk_path)/Lib/win8/um/x86',
5485 'GenerateDebugInformation': 'true',
5486 'MapFileName': '$(OutDir)\\$(TargetName).map',
5487 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
5488 'FixedBaseAddress': '1',
5491 # 1 == /SUBSYSTEM:CONSOLE
5492 # 2 == /SUBSYSTEM:WINDOWS
5493 # Most of the executables we'll ever create are tests
5494 # and utilities with console output.
5498 'GenerateStublessProxies': 'true',
5499 'TypeLibraryName': '$(InputName).tlb',
5500 'OutputDirectory': '$(IntDir)',
5501 'HeaderFileName': '$(InputName).h',
5502 'DLLDataFileName': '$(InputName).dlldata.c',
5503 'InterfaceIdentifierFileName': '$(InputName)_i.c',
5504 'ProxyFileName': '$(InputName)_p.c',
5506 'VCResourceCompilerTool': {
5508 'AdditionalIncludeDirectories': [
5510 '<(SHARED_INTERMEDIATE_DIR)',
5513 'target_conditions': [
5514 ['_type=="executable"', {
5516 'EmbedManifest': 'true',
5519 ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', {
5521 'AdditionalManifestFiles': [
5522 '>(win_exe_compatibility_manifest)',
5529 # Building with Clang on Windows is a work in progress and very
5530 # experimental. See crbug.com/82385.
5531 'VCCLCompilerTool': {
5532 'WarnAsError': 'false',
5533 'RuntimeTypeInfo': 'false',
5534 'AdditionalOptions': [
5535 '-fmsc-version=1800',
5538 # Many files use intrinsics without including this header.
5539 # TODO(hans): Fix those files, or move this to sub-GYPs.
5542 # TODO(hans): Make this list shorter eventually.
5543 '-Qunused-arguments',
5544 '-Wno-c++11-compat-deprecated-writable-strings',
5545 '-Wno-deprecated-declarations',
5547 '-Wno-enum-conversion',
5548 '-Wno-extra-tokens',
5549 '-Wno-ignored-attributes',
5550 '-Wno-incompatible-pointer-types',
5551 '-Wno-int-to-void-pointer-cast',
5552 '-Wno-invalid-noreturn',
5553 '-Wno-logical-op-parentheses',
5555 '-Wno-missing-braces',
5556 '-Wno-missing-declarations',
5557 '-Wno-msvc-include',
5558 '-Wno-null-dereference',
5559 '-Wno-overloaded-virtual',
5561 '-Wno-pointer-sign',
5563 '-Wno-return-type-c-linkage',
5565 '-Wno-sometimes-uninitialized',
5567 '-Wno-tautological-compare',
5568 '-Wno-unknown-pragmas',
5570 '-Wno-unused-function',
5571 '-Wno-unused-private-field',
5572 '-Wno-unused-value',
5573 '-Wno-unused-variable',
5574 '-Wno-unused-local-typedef', # http://crbug.com/411648
5579 # ASan on Windows is a work in progress and very experimental.
5580 # See crbug.com/345874.
5581 'VCCLCompilerTool': {
5582 'AdditionalOptions': [
5583 '-fsanitize=address',
5585 'AdditionalIncludeDirectories': [
5586 # MSVC needs to be able to find the sanitizer headers when
5587 # invoked via /fallback. This is critical for using macros
5588 # like ASAN_UNPOISON_MEMORY_REGION in files where we fall
5590 '<(DEPTH)/<(make_clang_dir)/lib/clang/3.6.0/include_sanitizer',
5594 'AdditionalLibraryDirectories': [
5595 # TODO(hans): If make_clang_dir is absolute, this breaks.
5596 '<(DEPTH)/<(make_clang_dir)/lib/clang/3.6.0/lib/windows',
5599 'target_conditions': [
5600 ['component=="shared_library"', {
5602 'AdditionalDependencies': [
5603 'clang_rt.asan_dynamic-i386.lib',
5604 'clang_rt.asan_dynamic_runtime_thunk-i386.lib',
5608 ['_type=="executable" and component=="static_library"', {
5610 'AdditionalDependencies': [
5611 'clang_rt.asan-i386.lib',
5615 ['(_type=="shared_library" or _type=="loadable_module") and component=="static_library"', {
5617 'AdditionalDependencies': [
5618 'clang_rt.asan_dll_thunk-i386.lib',
5628 ['disable_nacl==1', {
5629 'target_defaults': {
5635 ['OS=="win" and msvs_use_common_linker_extras', {
5636 'target_defaults': {
5651 'AdditionalOptions': [
5660 'AdditionalOptions': ['/largeaddressaware'],
5669 'AdditionalOptions': [
5670 # safeseh is not compatible with x64
5682 ['enable_new_npdevice_api==1', {
5683 'target_defaults': {
5685 'ENABLE_NEW_NPDEVICE_API',
5689 # Don't warn about the "typedef 'foo' locally defined but not used"
5690 # for gcc 4.8 and higher.
5691 # TODO: remove this flag once all builds work. See crbug.com/227506
5692 ['gcc_version>=48 and clang==0', {
5693 'target_defaults': {
5695 '-Wno-unused-local-typedefs',
5699 ['gcc_version>=48 and clang==0 and host_clang==1', {
5700 'target_defaults': {
5701 'target_conditions': [
5702 ['_toolset=="host"', { 'cflags!': [ '-Wno-unused-local-typedefs' ]}],
5706 # In the android webview build, force host targets to be compiled with clang
5707 # as the hermetic host gcc is very old on some platforms. This is already
5708 # the default on the current development version of AOSP but we force it
5709 # here in case we need to compile against an older release version. We also
5710 # explicitly set it to false for target binaries to avoid causing problems
5711 # for the work to enable clang by default in AOSP.
5712 ['android_webview_build==1', {
5713 'target_defaults': {
5714 'target_conditions': [
5715 ['_toolset=="host"', {
5716 'aosp_build_settings': {
5717 'LOCAL_CLANG': 'true',
5719 }, { # else: _toolset != "host"
5720 'aosp_build_settings': {
5721 'LOCAL_CLANG': 'false',
5727 # We need a special case to handle the android webview build on mac because
5728 # the host gcc there doesn't accept this flag, but the target gcc may
5730 ['gcc_version>=48 and android_webview_build==1 and host_os=="mac"', {
5731 'target_defaults': {
5732 'target_conditions': [
5733 ['_toolset=="host"', {
5735 '-Wno-unused-local-typedefs',
5741 ['clang==1 and ((OS!="mac" and OS!="ios") or clang_xcode==0) '
5743 'make_global_settings': [
5744 ['CC', '<(make_clang_dir)/bin/clang'],
5745 ['CXX', '<(make_clang_dir)/bin/clang++'],
5746 ['CC.host', '$(CC)'],
5747 ['CXX.host', '$(CXX)'],
5750 ['clang==1 and OS=="win"', {
5751 'make_global_settings': [
5752 # On Windows, gyp's ninja generator only looks at CC.
5753 ['CC', '<(make_clang_dir)/bin/clang-cl'],
5756 ['OS=="android" and clang==0', {
5757 # Hardcode the compiler names in the Makefile so that
5758 # it won't depend on the environment at make time.
5759 'make_global_settings': [
5760 ['CC', '<!(/bin/echo -n <(android_toolchain)/*-gcc)'],
5761 ['CXX', '<!(/bin/echo -n <(android_toolchain)/*-g++)'],
5762 ['CC.host', '<(host_cc)'],
5763 ['CXX.host', '<(host_cxx)'],
5766 ['OS=="linux" and target_arch=="mipsel"', {
5767 'make_global_settings': [
5768 ['CC', '<(sysroot)/../bin/mipsel-linux-gnu-gcc'],
5769 ['CXX', '<(sysroot)/../bin/mipsel-linux-gnu-g++'],
5770 ['CC.host', '<(host_cc)'],
5771 ['CXX.host', '<(host_cxx)'],
5774 ['OS=="linux" and target_arch=="arm" and host_arch!="arm" and chromeos==0 and clang==0', {
5775 # Set default ARM cross compiling on linux. These can be overridden
5776 # using CC/CXX/etc environment variables.
5777 'make_global_settings': [
5778 ['CC', '<!(which arm-linux-gnueabihf-gcc)'],
5779 ['CXX', '<!(which arm-linux-gnueabihf-g++)'],
5780 ['CC.host', '<(host_cc)'],
5781 ['CXX.host', '<(host_cxx)'],
5785 # TODO(yyanagisawa): supports GENERATOR==make
5786 # make generator doesn't support CC_wrapper without CC
5787 # in make_global_settings yet.
5788 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
5789 'make_global_settings': [
5790 ['CC_wrapper', '<(gomadir)/gomacc'],
5791 ['CXX_wrapper', '<(gomadir)/gomacc'],
5792 ['CC.host_wrapper', '<(gomadir)/gomacc'],
5793 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
5797 'target_defaults': {
5798 'target_conditions': [
5799 ['_toolset=="target"', {
5802 '-ffat-lto-objects',
5808 ['use_lto==1 or use_lto_o2==1', {
5809 'target_defaults': {
5810 'target_conditions': [
5811 ['_toolset=="target"', {
5821 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
5822 # This block adds *project-wide* configuration settings to each project
5823 # file. It's almost always wrong to put things here. Specify your
5824 # custom xcode_settings in target_defaults to add them to targets instead.
5827 # In an Xcode Project Info window, the "Base SDK for All Configurations"
5828 # setting sets the SDK on a project-wide basis. In order to get the
5829 # configured SDK to show properly in the Xcode UI, SDKROOT must be set
5830 # here at the project level.
5833 ['mac_sdk_path==""', {
5834 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
5836 'SDKROOT': '<(mac_sdk_path)', # -isysroot
5842 ['ios_sdk_path==""', {
5844 # TODO(justincohen): Ninja only supports simulator for now.
5845 ['"<(GENERATOR)"=="xcode"', {
5846 'SDKROOT': 'iphoneos<(ios_sdk)', # -isysroot
5848 'SDKROOT': 'iphonesimulator<(ios_sdk)', # -isysroot
5852 'SDKROOT': '<(ios_sdk_path)', # -isysroot
5857 # Target both iPhone and iPad.
5858 'TARGETED_DEVICE_FAMILY': '1,2',
5861 ['target_arch=="x64"', {
5866 ['target_arch=="ia32"', {
5875 # The Xcode generator will look for an xcode_settings section at the root
5876 # of each dict and use it to apply settings on a file-wide basis. Most
5877 # settings should not be here, they should be in target-specific
5878 # xcode_settings sections, or better yet, should use non-Xcode-specific
5879 # settings in target dicts. SYMROOT is a special case, because many other
5880 # Xcode variables depend on it, including variables such as
5881 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5882 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5883 # files to appear (when present) in the UI as actual files and not red
5884 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5885 # and therefore SYMROOT, needs to be set at the project level.
5886 'SYMROOT': '<(DEPTH)/xcodebuild',