# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # IMPORTANT: # Please don't directly include this file if you are building via gyp_chromium, # since gyp_chromium is automatically forcing its inclusion. { # Variables expected to be overriden on the GYP command line (-D) or by # ~/.gyp/include.gypi. 'variables': { # Putting a variables dict inside another variables dict looks kind of # weird. This is done so that 'host_arch', 'chromeos', etc are defined as # variables within the outer variables dict here. This is necessary # to get these variables defined for the conditions within this variables # dict that operate on these variables. 'variables': { 'variables': { 'variables': { 'variables': { # Whether we're building a ChromeOS build. 'chromeos%': 0, # Whether or not we are using the Aura windowing framework. 'use_aura%': 0, # Whether or not we are building the Ash shell. 'use_ash%': 0, # Whether or not we are using CRAS, the ChromeOS Audio Server. 'use_cras%': 0, # Use a raw surface abstraction. 'use_ozone%': 0, # Configure the build for small devices. See crbug.com/318413 'embedded%': 0, }, # Copy conditionally-set variables out one scope. 'chromeos%': '<(chromeos)', 'use_aura%': '<(use_aura)', 'use_ash%': '<(use_ash)', 'use_cras%': '<(use_cras)', 'use_ozone%': '<(use_ozone)', 'embedded%': '<(embedded)', # Whether we are using Views Toolkit 'toolkit_views%': 0, # Use OpenSSL instead of NSS. Under development: see http://crbug.com/62803 'use_openssl%': 0, # Disable viewport meta tag by default. 'enable_viewport%': 0, # Enable HiDPI support. 'enable_hidpi%': 0, # Enable touch optimized art assets and metrics. 'enable_touch_ui%': 0, # Override buildtype to select the desired build flavor. # Dev - everyday build for development/testing # Official - release build (generally implies additional processing) # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp # conversion is done), some of the things which are now controlled by # 'branding', such as symbol generation, will need to be refactored # based on 'buildtype' (i.e. we don't care about saving symbols for # non-Official # builds). 'buildtype%': 'Dev', # Override branding to select the desired branding flavor. 'branding%': 'Chromium', 'conditions': [ # ChromeOS and Windows use Aura and Ash. ['chromeos==1 or OS=="win"', { 'use_ash%': 1, 'use_aura%': 1, }], # Ozone uses Aura. ['use_ozone==1', { 'use_aura%': 1, }], # Whether we're a traditional desktop unix. ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and chromeos==0', { 'desktop_linux%': 1, }, { 'desktop_linux%': 0, }], # Compute the architecture that we're building on. ['OS=="win" or OS=="mac" or OS=="ios"', { 'host_arch%': 'ia32', }, { # This handles the Unix platforms for which there is some support. # Anything else gets passed through, which probably won't work # very well; such hosts should pass an explicit target_arch to # gyp. 'host_arch%': '= 7) or target_arch=="ia32") and android_webview_build==0', { # Currently only supported on Android ARMv7+, or ia32 # without webview. When enabled, this will also enable # WebAudio support on Android ARM and ia32. Default is # enabled. Whether WebAudio is actually available depends # on runtime settings and flags. 'use_openmax_dl_fft%': 1, }, { 'use_openmax_dl_fft%': 0, }], ['OS=="win" or OS=="linux"', { 'enable_mdns%' : 1, }], # Turns on compiler optimizations in V8 in Debug build, except # on android_clang, where we're hitting a weird linker error. # TODO(dpranke): http://crbug.com/266155 . ['OS=="android"', { 'v8_optimized_debug%': 1, }, { 'v8_optimized_debug%': 2, }], # Disable various features by default on embedded. ['embedded==1', { 'remoting%': 0, 'enable_printing%': 0, }], ], # Set this to 1 to enable use of concatenated impulse responses # for the HRTF panner in WebAudio. 'use_concatenated_impulse_responses': 1, # You can set the variable 'use_official_google_api_keys' to 1 # to use the Google-internal file containing official API keys # for Google Chrome even in a developer build. Setting this # variable explicitly to 1 will cause your build to fail if the # internal file is missing. # # The variable is documented here, but not handled in this file; # see //google_apis/determine_use_official_keys.gypi for the # implementation. # # Set the variable to 0 to not use the internal file, even when # it exists in your checkout. # # Leave it unset in your include.gypi to have the variable # implicitly set to 1 if you have # src/google_apis/internal/google_chrome_api_keys.h in your # checkout, and implicitly set to 0 if not. # # Note that official builds always behave as if the variable # was explicitly set to 1, i.e. they always use official keys, # and will fail to build if the internal file is missing. # # NOTE: You MUST NOT explicitly set the variable to 2 in your # include.gypi or by other means. Due to subtleties of GYP, this # is not the same as leaving the variable unset, even though its # default value in # //google_apis/determine_use_official_keys.gypi is 2. # Set these to bake the specified API keys and OAuth client # IDs/secrets into your build. # # If you create a build without values baked in, you can instead # set environment variables to provide the keys at runtime (see # src/google_apis/google_api_keys.h for details). Features that # require server-side APIs may fail to work if no keys are # provided. # # Note that if you are building an official build or if # use_official_google_api_keys has been set to 1 (explicitly or # implicitly), these values will be ignored and the official # keys will be used instead. 'google_api_key%': '', 'google_default_client_id%': '', 'google_default_client_secret%': '', }, # Copy conditionally-set variables out one scope. 'branding%': '<(branding)', 'buildtype%': '<(buildtype)', 'target_arch%': '<(target_arch)', 'host_arch%': '<(host_arch)', 'toolkit_views%': '<(toolkit_views)', 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)', 'use_aura%': '<(use_aura)', 'use_ash%': '<(use_ash)', 'use_cras%': '<(use_cras)', 'use_openssl%': '<(use_openssl)', 'use_nss%': '<(use_nss)', 'use_udev%': '<(use_udev)', 'os_bsd%': '<(os_bsd)', 'os_posix%': '<(os_posix)', 'use_dbus%': '<(use_dbus)', 'use_glib%': '<(use_glib)', 'use_pango%': '<(use_pango)', 'use_cairo%': '<(use_cairo)', 'use_ozone%': '<(use_ozone)', 'use_ozone_evdev%': '<(use_ozone_evdev)', 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)', 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', 'desktop_linux%': '<(desktop_linux)', 'use_x11%': '<(use_x11)', 'use_gnome_keyring%': '<(use_gnome_keyring)', 'linux_fpic%': '<(linux_fpic)', 'chromeos%': '<(chromeos)', 'enable_viewport%': '<(enable_viewport)', 'enable_hidpi%': '<(enable_hidpi)', 'enable_touch_ui%': '<(enable_touch_ui)', 'use_xi2_mt%':'<(use_xi2_mt)', 'file_manager_extension%': '<(file_manager_extension)', 'image_loader_extension%': '<(image_loader_extension)', 'fastbuild%': '<(fastbuild)', 'dcheck_always_on%': '<(dcheck_always_on)', 'logging_like_official_build%': '<(logging_like_official_build)', 'tracing_like_official_build%': '<(tracing_like_official_build)', 'python_ver%': '<(python_ver)', 'arm_version%': '<(arm_version)', 'armv7%': '<(armv7)', 'arm_neon%': '<(arm_neon)', 'arm_neon_optional%': '<(arm_neon_optional)', 'sysroot%': '<(sysroot)', 'system_libdir%': '<(system_libdir)', 'component%': '<(component)', 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', 'use_third_party_translations%': '<(use_third_party_translations)', 'remoting%': '<(remoting)', 'enable_one_click_signin%': '<(enable_one_click_signin)', 'enable_webrtc%': '<(enable_webrtc)', 'chromium_win_pch%': '<(chromium_win_pch)', 'configuration_policy%': '<(configuration_policy)', 'safe_browsing%': '<(safe_browsing)', 'input_speech%': '<(input_speech)', 'notifications%': '<(notifications)', 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 'mac_want_real_dsym%': '<(mac_want_real_dsym)', 'asan%': '<(asan)', 'lsan%': '<(lsan)', 'msan%': '<(msan)', 'tsan%': '<(tsan)', 'tsan_blacklist%': '<(tsan_blacklist)', 'use_instrumented_libraries%': '<(use_instrumented_libraries)', 'clang_type_profiler%': '<(clang_type_profiler)', 'order_profiling%': '<(order_profiling)', 'order_text_section%': '<(order_text_section)', 'enable_extensions%': '<(enable_extensions)', 'enable_plugin_installation%': '<(enable_plugin_installation)', 'enable_plugins%': '<(enable_plugins)', 'enable_session_service%': '<(enable_session_service)', 'enable_themes%': '<(enable_themes)', 'enable_autofill_dialog%': '<(enable_autofill_dialog)', 'enable_background%': '<(enable_background)', 'linux_use_gold_binary%': '<(linux_use_gold_binary)', 'linux_use_gold_flags%': '<(linux_use_gold_flags)', 'use_canvas_skia%': '<(use_canvas_skia)', 'test_isolation_mode%': '<(test_isolation_mode)', 'test_isolation_outdir%': '<(test_isolation_outdir)', 'test_isolation_fail_on_missing': '<(test_isolation_fail_on_missing)', 'enable_automation%': '<(enable_automation)', 'enable_printing%': '<(enable_printing)', 'enable_spellcheck%': '<(enable_spellcheck)', 'enable_google_now%': '<(enable_google_now)', 'cld_version%': '<(cld_version)', 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 'disable_ftp_support%': '<(disable_ftp_support)', 'enable_task_manager%': '<(enable_task_manager)', 'sas_dll_path%': '<(sas_dll_path)', 'wix_path%': '<(wix_path)', 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 'use_system_libjpeg%': '<(use_system_libjpeg)', 'android_webview_build%': '<(android_webview_build)', 'gyp_managed_install%': 0, 'create_standalone_apk%': 1, 'google_tv%': '<(google_tv)', 'enable_app_list%': '<(enable_app_list)', 'use_default_render_theme%': '<(use_default_render_theme)', 'enable_settings_app%': '<(enable_settings_app)', 'google_api_key%': '<(google_api_key)', 'google_default_client_id%': '<(google_default_client_id)', 'google_default_client_secret%': '<(google_default_client_secret)', 'enable_managed_users%': '<(enable_managed_users)', 'native_discardable_memory%': '<(native_discardable_memory)', 'native_memory_pressure_signals%': '<(native_memory_pressure_signals)', 'data_reduction_fallback_host%': '<(data_reduction_fallback_host)', 'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)', 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)', 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)', 'data_reduction_proxy_probe_url%': '<(data_reduction_proxy_probe_url)', 'enable_mdns%' : '<(enable_mdns)', 'enable_enhanced_bookmarks%' : '<(enable_enhanced_bookmarks)', 'v8_optimized_debug%': '<(v8_optimized_debug)', 'proprietary_codecs%': '<(proprietary_codecs)', 'use_goma%': '<(use_goma)', 'gomadir%': '<(gomadir)', # Use system nspr instead of the bundled one. 'use_system_nspr%': 0, # Use system protobuf instead of bundled one. 'use_system_protobuf%': 0, # Use system yasm instead of bundled one. 'use_system_yasm%': 0, # Use system ICU instead of bundled one. 'use_system_icu%' : 0, # Default to enabled PIE; this is important for ASLR but we may need to be # able to turn it off for various reasons. 'linux_disable_pie%': 0, # The release channel that this build targets. This is used to restrict # channel-specific build options, like which installer packages to create. # The default is 'all', which does no channel-specific filtering. 'channel%': 'all', # Override chromium_mac_pch and set it to 0 to suppress the use of # precompiled headers on the Mac. Prefix header injection may still be # used, but prefix headers will not be precompiled. This is useful when # using distcc to distribute a build to compile slaves that don't # share the same compiler executable as the system driving the compilation, # because precompiled headers rely on pointers into a specific compiler # executable's image. Setting this to 0 is needed to use an experimental # Linux-Mac cross compiler distcc farm. 'chromium_mac_pch%': 1, # The default value for mac_strip in target_defaults. This cannot be # set there, per the comment about variable% in a target_defaults. 'mac_strip_release%': 0, # Set to 1 to enable java code coverage. Instruments classes during build # to produce .ec files during runtime. 'emma_coverage%': 0, # EMMA filter string consisting of a list of inclusion/exclusion patterns # separated with whitespace and/or comma. Only has effect if # 'emma_coverage=1'. 'emma_filter%': '', # Set to 1 to enable running Android lint on java/class files. 'android_lint%': 0, # Set to 1 to force Visual C++ to use legacy debug information format /Z7. # This is useful for parallel compilation tools which can't support /Zi. # Only used on Windows. 'win_z7%' : 0, # Although base/allocator lets you select a heap library via an # environment variable, the libcmt shim it uses sometimes gets in # the way. To disable it entirely, and switch to normal msvcrt, do e.g. # 'win_use_allocator_shim': 0, # 'win_release_RuntimeLibrary': 2 # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build. 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt # TODO(bradnelson): eliminate this when possible. # To allow local gyp files to prevent release.vsprops from being included. # Yes(1) means include release.vsprops. # Once all vsprops settings are migrated into gyp, this can go away. 'msvs_use_common_release%': 1, # TODO(bradnelson): eliminate this when possible. # To allow local gyp files to override additional linker options for msvs. # Yes(1) means set use the common linker options. 'msvs_use_common_linker_extras%': 1, # TODO(sgk): eliminate this if possible. # It would be nicer to support this via a setting in 'target_defaults' # in chrome/app/locales/locales.gypi overriding the setting in the # 'Debug' configuration in the 'target_defaults' dict below, # but that doesn't work as we'd like. 'msvs_debug_link_incremental%': '2', # Needed for some of the largest modules. 'msvs_debug_link_nonincremental%': '1', # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows # to get incremental linking to be faster in debug builds. 'incremental_chrome_dll%': '0', # Experimental setting to break chrome.dll into multiple pieces based on # process type. 'chrome_multiple_dll%': '0', # The default settings for third party code for treating # warnings-as-errors. Ideally, this would not be required, however there # is some third party code that takes a long time to fix/roll. So, this # flag allows us to have warnings as errors in general to prevent # regressions in most modules, while working on the bits that are # remaining. 'win_third_party_warn_as_error%': 'true', # Clang stuff. 'clang%': '<(clang)', 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts', # These two variables can be set in GYP_DEFINES while running # |gclient runhooks| to let clang run a plugin in every compilation. # Only has an effect if 'clang=1' is in GYP_DEFINES as well. # Example: # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dylib clang_add_plugin=print-fns' gclient runhooks 'clang_load%': '', 'clang_add_plugin%': '', # The default type of gtest. 'gtest_target_type%': 'executable', # Enable sampling based profiler. # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html 'profiling%': '0', # Profile without optimizing out stack frames when profiling==1. 'profiling_full_stack_frames%': '0', # And if we want to dump symbols for Breakpad-enabled builds. 'linux_dump_symbols%': 0, # And if we want to strip the binary after dumping symbols. 'linux_strip_binary%': 0, # Strip the test binaries needed for Linux reliability tests. 'linux_strip_reliability_tests%': 0, # Enable TCMalloc. 'linux_use_tcmalloc%': 1, 'android_use_tcmalloc%': 0, # Set to 1 to link against libgnome-keyring instead of using dlopen(). 'linux_link_gnome_keyring%': 0, # Set to 1 to link against gsettings APIs instead of using dlopen(). 'linux_link_gsettings%': 0, # Default arch variant for MIPS. 'mips_arch_variant%': 'mips32r2', # Enable use of OpenMAX DL FFT routines. 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', # Enable new NPDevice API. 'enable_new_npdevice_api%': 0, # Enable EGLImage support in OpenMAX 'enable_eglimage%': 1, # .gyp files or targets should set chromium_code to 1 if they build # Chromium-specific code, as opposed to external code. This variable is # used to control such things as the set of warnings to enable, and # whether warnings are treated as errors. 'chromium_code%': 0, 'release_valgrind_build%': 0, # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 'enable_wexit_time_destructors%': 0, # Set to 1 to compile with the built in pdf viewer. 'internal_pdf%': 0, # Set to 1 to compile with the OpenGL ES 2.0 conformance tests. 'internal_gles2_conform_tests%': 0, # Set to 1 to compile the filter fuzzer. 'internal_filter_fuzzer%': 0, # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' # so Cocoa is happy (http://crbug.com/20441). 'locales': [ 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', 'vi', 'zh-CN', 'zh-TW', ], # Pseudo locales are special locales which are used for testing and # debugging. They don't get copied to the final app. For more info, # check out https://sites.google.com/a/chromium.org/dev/Home/fake-bidi 'pseudo_locales': [ 'fake-bidi', ], 'grit_defines': [], # If debug_devtools is set to 1, JavaScript files for DevTools are # stored as is and loaded from disk. Otherwise, a concatenated file # is stored in resources.pak. It is still possible to load JS files # from disk by passing --debug-devtools cmdline switch. 'debug_devtools%': 0, # The Java Bridge is not compiled in by default. 'java_bridge%': 0, # Code signing for iOS binaries. The bots need to be able to disable this. 'chromium_ios_signing%': 1, # This flag is only used when disable_nacl==0 and disables all those # subcomponents which would require the installation of a native_client # untrusted toolchain. 'disable_nacl_untrusted%': 0, # Disable Dart by default. 'enable_dart%': 0, # The desired version of Windows SDK can be set in ~/.gyp/include.gypi. 'msbuild_toolset%': '', # Native Client is enabled by default. 'disable_nacl%': 0, # Portable Native Client is enabled by default. 'disable_pnacl%': 0, # Whether to build full debug version for Debug configuration on Android. # Compared to full debug version, the default Debug configuration on Android # has no full v8 debug, has size optimization and linker gc section, so that # we can build a debug version with acceptable size and performance. 'android_full_debug%': 0, # Sets the default version name and code for Android app, by default we # do a developer build. 'android_app_version_name%': 'Developer Build', 'android_app_version_code%': 0, # Contains data about the attached devices for gyp_managed_install. 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg', 'sas_dll_exists': '. Additional # documentation on these macros is available at # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTION3 # Chrome normally builds with the Mac OS X 10.6 SDK and sets the # deployment target to 10.6. Other projects, such as O3D, may # override these defaults. # Normally, mac_sdk_min is used to find an SDK that Xcode knows # about that is at least the specified version. In official builds, # the SDK must match mac_sdk_min exactly. If the SDK is installed # someplace that Xcode doesn't know about, set mac_sdk_path to the # path to the SDK; when set to a non-empty string, SDK detection # based on mac_sdk_min will be bypassed entirely. 'mac_sdk_min%': '10.6', 'mac_sdk_path%': '', 'mac_deployment_target%': '10.6', }, 'mac_sdk_min': '<(mac_sdk_min)', 'mac_sdk_path': '<(mac_sdk_path)', 'mac_deployment_target': '<(mac_deployment_target)', # Compile in Breakpad support by default so that it can be # tested, even if it is not enabled by default at runtime. 'mac_breakpad_compiled_in%': 1, 'conditions': [ # mac_product_name is set to the name of the .app bundle as it should # appear on disk. This duplicates data from # chrome/app/theme/chromium/BRANDING and # chrome/app/theme/google_chrome/BRANDING, but is necessary to get # these names into the build system. ['branding=="Chrome"', { 'mac_product_name%': 'Google Chrome', }, { # else: branding!="Chrome" 'mac_product_name%': 'Chromium', }], ['branding=="Chrome" and buildtype=="Official"', { 'mac_sdk%': ', where # typically changes with each launch. This in turn # means that breakpoints in Chrome.dll don't stick from one launch # to the next. For this reason, we turn ASLR off in debug builds. # Note that this is a three-way bool, where 0 means to pick up # the default setting, 1 is off and 2 is on. 'RandomizedBaseAddress': 1, }, 'VCResourceCompilerTool': { 'PreprocessorDefinitions': ['_DEBUG'], }, }, 'conditions': [ ['OS=="linux" or OS=="android"', { 'target_conditions': [ ['_toolset=="target"', { 'cflags': [ '<@(debug_extra_cflags)', ], }], ], }], ['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', { # Enable libstdc++ debugging facilities to help catch problems # early, see http://crbug.com/65151 . # TODO(phajdan.jr): Should we enable this for all of POSIX? 'defines': ['_GLIBCXX_DEBUG=1',], }], # Disabled on iOS because it was causing a crash on startup. # TODO(michelea): investigate, create a reduced test and possibly # submit a radar. ['release_valgrind_build==0 and OS!="ios"', { 'xcode_settings': { 'OTHER_CFLAGS': [ '-fstack-protector-all', # Implies -fstack-protector ], }, }], ], }, 'Release_Base': { 'abstract': 1, 'defines': [ 'NDEBUG', ], 'xcode_settings': { 'DEAD_CODE_STRIPPING': 'YES', # -Wl,-dead_strip 'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)', 'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ], }, 'msvs_settings': { 'VCCLCompilerTool': { 'RuntimeLibrary': '<(win_release_RuntimeLibrary)', 'conditions': [ # In official builds, each target will self-select # an optimization level. ['buildtype!="Official"', { 'Optimization': '<(win_release_Optimization)', }, ], # According to MSVS, InlineFunctionExpansion=0 means # "default inlining", not "/Ob0". # Thus, we have to handle InlineFunctionExpansion==0 separately. ['win_release_InlineFunctionExpansion==0', { 'AdditionalOptions': ['/Ob0'], }], ['win_release_InlineFunctionExpansion!=""', { 'InlineFunctionExpansion': '<(win_release_InlineFunctionExpansion)', }], # if win_release_OmitFramePointers is blank, leave as default ['win_release_OmitFramePointers==1', { 'OmitFramePointers': 'true', }], ['win_release_OmitFramePointers==0', { 'OmitFramePointers': 'false', # The above is not sufficient (http://crbug.com/106711): it # simply eliminates an explicit "/Oy", but both /O2 and /Ox # perform FPO regardless, so we must explicitly disable. # We still want the false setting above to avoid having # "/Oy /Oy-" and warnings about overriding. 'AdditionalOptions': ['/Oy-'], }], ], 'AdditionalOptions': [ '<@(win_release_extra_cflags)', ], }, 'VCLinkerTool': { # LinkIncremental is a tri-state boolean, where 0 means default # (i.e., inherit from parent solution), 1 means false, and # 2 means true. 'LinkIncremental': '1', # This corresponds to the /PROFILE flag which ensures the PDB # file contains FIXUP information (growing the PDB file by about # 5%) but does not otherwise alter the output binary. This # information is used by the Syzygy optimization tool when # decomposing the release image. 'Profile': 'true', }, }, 'conditions': [ ['msvs_use_common_release', { 'includes': ['release.gypi'], }], ['release_valgrind_build==0 and tsan==0', { 'defines': [ 'NVALGRIND', 'DYNAMIC_ANNOTATIONS_ENABLED=0', ], }, { 'defines': [ 'MEMORY_TOOL_REPLACES_ALLOCATOR', 'DYNAMIC_ANNOTATIONS_ENABLED=1', 'WTF_USE_DYNAMIC_ANNOTATIONS=1', ], }], ['win_use_allocator_shim==0', { 'defines': ['NO_TCMALLOC'], }], ['os_posix==1', { 'target_conditions': [ ['chromium_code==1', { # Non-chromium code is not guaranteed to compile cleanly # with _FORTIFY_SOURCE. Also, fortified build may fail # when optimizations are disabled, so only do that for Release # build. 'defines': [ '_FORTIFY_SOURCE=2', ], }], ], }], ['OS=="linux" or OS=="android"', { 'target_conditions': [ ['_toolset=="target"', { 'cflags': [ '<@(release_extra_cflags)', ], }], ], }], ['OS=="ios"', { 'defines': [ 'NS_BLOCK_ASSERTIONS=1', ], }], ], }, # # Concrete configurations # 'Debug': { 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'], }, 'Release': { 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'], }, 'conditions': [ [ 'OS=="win"', { # TODO(bradnelson): add a gyp mechanism to make this more graceful. 'Debug_x64': { 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'], }, 'Release_x64': { 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'], }, }], ], }, }, 'conditions': [ ['os_posix==1', { 'target_defaults': { 'ldflags': [ '-Wl,-z,now', '-Wl,-z,relro', ], }, }], ['os_posix==1 and chromeos==0', { # Chrome OS enables -fstack-protector-strong via its build wrapper, # and we want to avoid overriding this, so stack-protector is only # enabled when not building on Chrome OS. # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc # supports it. 'target_defaults': { 'cflags': [ '-fstack-protector', '--param=ssp-buffer-size=4', ], }, }], ['os_posix==1 and OS!="mac" and OS!="ios"', { 'target_defaults': { # Enable -Werror by default, but put it in a variable so it can # be disabled in ~/.gyp/include.gypi on the valgrind builders. 'variables': { 'werror%': '-Werror', 'libraries_for_target%': '', }, 'defines': [ '_FILE_OFFSET_BITS=64', ], 'cflags': [ '<(werror)', # See note above about the werror variable. '-pthread', '-fno-exceptions', '-fno-strict-aliasing', # See http://crbug.com/32204 '-Wall', # TODO(evan): turn this back on once all the builds work. # '-Wextra', # Don't warn about unused function params. We use those everywhere. '-Wno-unused-parameter', # Don't warn about the "struct foo f = {0};" initialization pattern. '-Wno-missing-field-initializers', # Don't export any symbols (for example, to plugins we dlopen()). # Note: this is *required* to make some plugins work. '-fvisibility=hidden', '-pipe', ], 'cflags_cc': [ '-fno-rtti', '-fno-threadsafe-statics', # Make inline functions have hidden visiblity by default. # Surprisingly, not covered by -fvisibility=hidden. '-fvisibility-inlines-hidden', # GCC turns on -Wsign-compare for C++ under -Wall, but clang doesn't, # so we specify it explicitly. (llvm.org/PR10448, crbug.com/90453) '-Wsign-compare', ], 'ldflags': [ '-pthread', '-Wl,-z,noexecstack', ], 'libraries' : [ '<(libraries_for_target)', ], 'configurations': { 'Debug_Base': { 'variables': { 'debug_optimize%': '0', }, 'defines': [ '_DEBUG', ], 'cflags': [ '-O>(debug_optimize)', '-g', ], 'conditions' : [ ['OS=="android"', { 'ldflags': [ '-Wl,--fatal-warnings', # Only link with needed input sections. This is to avoid # getting undefined reference to __cxa_bad_typeid in the CDU # library. '-Wl,--gc-sections', # Warn in case of text relocations. '-Wl,--warn-shared-textrel', ], }], ['OS=="android" and android_full_debug==0', { # Some configurations are copied from Release_Base to reduce # the binary size. 'variables': { 'debug_optimize%': 's', }, 'cflags': [ '-fomit-frame-pointer', '-fdata-sections', '-ffunction-sections', ], 'ldflags': [ '-Wl,-O1', '-Wl,--as-needed', ], }], ['OS=="linux" and target_arch=="ia32"', { 'ldflags': [ '-Wl,--no-as-needed', ], }], ], }, 'Release_Base': { 'variables': { 'release_optimize%': '2', # Binaries become big and gold is unable to perform GC # and remove unused sections for some of test targets # on 32 bit platform. # (This is currently observed only in chromeos valgrind bots) # The following flag is to disable --gc-sections linker # option for these bots. 'no_gc_sections%': 0, # TODO(bradnelson): reexamine how this is done if we change the # expansion of configurations 'release_valgrind_build%': 0, }, 'cflags': [ '-O<(release_optimize)', # Don't emit the GCC version ident directives, they just end up # in the .comment section taking up binary size. '-fno-ident', # Put data and code in their own sections, so that unused symbols # can be removed at link time with --gc-sections. '-fdata-sections', '-ffunction-sections', ], 'ldflags': [ # Specifically tell the linker to perform optimizations. # See http://lwn.net/Articles/192624/ . '-Wl,-O1', '-Wl,--as-needed', ], 'conditions' : [ ['no_gc_sections==0', { 'ldflags': [ '-Wl,--gc-sections', ], }], ['OS=="android"', { 'variables': { 'release_optimize%': 's', }, 'cflags': [ '-fomit-frame-pointer', ], 'ldflags': [ '-Wl,--fatal-warnings', # Warn in case of text relocations. '-Wl,--warn-shared-textrel', ], }], ['clang==1', { 'cflags!': [ '-fno-ident', ], }], ['profiling==1', { 'cflags': [ '-fno-omit-frame-pointer', '-g', ], 'conditions' : [ ['profiling_full_stack_frames==1', { 'cflags': [ '-fno-inline', '-fno-optimize-sibling-calls', ], }], ], }], # Can be omitted to reduce output size. Does not seem to affect # crash reporting. ['target_arch=="ia32"', { 'cflags': [ '-fno-unwind-tables', '-fno-asynchronous-unwind-tables', ], }], ], }, }, 'conditions': [ ['target_arch=="ia32"', { 'target_conditions': [ ['_toolset=="target"', { 'asflags': [ # Needed so that libs with .s files (e.g. libicudata.a) # are compatible with the general 32-bit-ness. '-32', ], # All floating-point computations on x87 happens in 80-bit # precision. Because the C and C++ language standards allow # the compiler to keep the floating-point values in higher # precision than what's specified in the source and doing so # is more efficient than constantly rounding up to 64-bit or # 32-bit precision as specified in the source, the compiler, # especially in the optimized mode, tries very hard to keep # values in x87 floating-point stack (in 80-bit precision) # as long as possible. This has important side effects, that # the real value used in computation may change depending on # how the compiler did the optimization - that is, the value # kept in 80-bit is different than the value rounded down to # 64-bit or 32-bit. There are possible compiler options to # make this behavior consistent (e.g. -ffloat-store would keep # all floating-values in the memory, thus force them to be # rounded to its original precision) but they have significant # runtime performance penalty. # # -mfpmath=sse -msse2 makes the compiler use SSE instructions # which keep floating-point values in SSE registers in its # native precision (32-bit for single precision, and 64-bit # for double precision values). This means the floating-point # value used during computation does not change depending on # how the compiler optimized the code, since the value is # always kept in its specified precision. 'conditions': [ ['branding=="Chromium" and disable_sse2==0', { 'cflags': [ '-march=pentium4', '-msse2', '-mfpmath=sse', ], }], # ChromeOS targets Pinetrail, which is sse3, but most of the # benefit comes from sse2 so this setting allows ChromeOS # to build on other CPUs. In the future -march=atom would # help but requires a newer compiler. ['chromeos==1 and disable_sse2==0', { 'cflags': [ '-msse2', '-mfpmath=sse', ], }], # Use gold linker for Android ia32 target. ['OS=="android"', { 'cflags': [ '-fuse-ld=gold', ], 'ldflags': [ '-fuse-ld=gold', ], }], # Install packages have started cropping up with # different headers between the 32-bit and 64-bit # versions, so we have to shadow those differences off # and make sure a 32-bit-on-64-bit build picks up the # right files. # For android build, use NDK headers instead of host headers ['host_arch!="ia32" and OS!="android"', { 'include_dirs+': [ '/usr/include32', ], }], ], # -mmmx allows mmintrin.h to be used for mmx intrinsics. # video playback is mmx and sse2 optimized. 'cflags': [ '-m32', '-mmmx', ], 'ldflags': [ '-m32', ], }], ], }], ['target_arch=="arm"', { 'target_conditions': [ ['_toolset=="target"', { 'cflags_cc': [ # The codesourcery arm-2009q3 toolchain warns at that the ABI # has changed whenever it encounters a varargs function. This # silences those warnings, as they are not helpful and # clutter legitimate warnings. '-Wno-abi', ], 'conditions': [ ['arm_arch!=""', { 'cflags': [ '-march=<(arm_arch)', ], }], ['arm_tune!=""', { 'cflags': [ '-mtune=<(arm_tune)', ], }], ['arm_fpu!=""', { 'cflags': [ '-mfpu=<(arm_fpu)', ], }], ['arm_float_abi!=""', { 'cflags': [ '-mfloat-abi=<(arm_float_abi)', ], }], ['arm_thumb==1', { 'cflags': [ '-mthumb', ] }], ['OS=="android"', { # Most of the following flags are derived from what Android # uses by default when building for arm, reference for which # can be found in the following file in the Android NDK: # toolchains/arm-linux-androideabi-4.4.3/setup.mk 'cflags': [ # The tree-sra optimization (scalar replacement for # aggregates enabling subsequent optimizations) leads to # invalid code generation when using the Android NDK's # compiler (r5-r7). This can be verified using # webkit_unit_tests' WTF.Checked_int8_t test. '-fno-tree-sra', '-fuse-ld=gold', '-Wno-psabi', ], # Android now supports .relro sections properly. # NOTE: While these flags enable the generation of .relro # sections, the generated libraries can still be loaded on # older Android platform versions. 'ldflags': [ '-Wl,-z,relro', '-Wl,-z,now', '-fuse-ld=gold', ], 'conditions': [ ['arm_thumb==1', { 'cflags': [ '-mthumb-interwork' ], }], ['profiling==1', { 'cflags': [ '-marm', # Probably reduntant, but recommend by "perf" docs. '-mapcs-frame', # Seems required by -fno-omit-frame-pointer. ], }], ['clang==1', { 'cflags!': [ # Clang does not support the following options. '-mthumb-interwork', '-finline-limit=64', '-fno-tree-sra', '-fuse-ld=gold', '-Wno-psabi', ], 'ldflags!': [ # Clang does not support the following options. '-fuse-ld=gold', ], }], ], }], ], }], ], }], ['target_arch=="mipsel"', { 'target_conditions': [ ['_toolset=="target"', { 'conditions': [ ['android_webview_build==0 and mips_arch_variant=="mips32r2"', { 'cflags': ['-mips32r2', '-Wa,-mips32r2'], }], ['android_webview_build==0 and mips_arch_variant!="mips32r2"', { 'cflags': ['-mips32', '-Wa,-mips32'], }], ], 'cflags': [ '-EL', '-mhard-float', ], 'ldflags': [ '-EL', '-Wl,--no-keep-memory' ], 'cflags_cc': [ '-Wno-uninitialized', ], }], ], }], ['linux_fpic==1', { 'cflags': [ '-fPIC', ], 'ldflags': [ '-fPIC', ], }], ['sysroot!=""', { 'target_conditions': [ ['_toolset=="target"', { 'cflags': [ '--sysroot=<(sysroot)', ], 'ldflags': [ '--sysroot=<(sysroot)', '= 4.6, because that's when the default value of the # flag in the compiler switched. Pre-4.6, the value 'NO' for that # setting is a no-op as far as xcode is concerned, but the compiler # behaves differently based on whether -fno-strict-aliasing is # specified or not. '-fno-strict-aliasing', # See http://crbug.com/32204. ], }, 'target_conditions': [ ['_type=="executable"', { 'postbuilds': [ { # Arranges for data (heap) pages to be protected against # code execution when running on Mac OS X 10.7 ("Lion"), and # ensures that the position-independent executable (PIE) bit # is set for ASLR when running on Mac OS X 10.5 ("Leopard"). 'variables': { # Define change_mach_o_flags in a variable ending in _path # so that GYP understands it's a path and performs proper # relativization during dict merging. 'change_mach_o_flags_path': 'mac/change_mach_o_flags_from_xcode.sh', 'change_mach_o_flags_options%': [ ], 'target_conditions': [ ['mac_pie==0 or release_valgrind_build==1', { # Don't enable PIE if it's unwanted. It's unwanted if # the target specifies mac_pie=0 or if building for # Valgrind, because Valgrind doesn't understand slide. # See the similar mac_pie/release_valgrind_build check # below. 'change_mach_o_flags_options': [ '--no-pie', ], }], ], }, 'postbuild_name': 'Change Mach-O Flags', 'action': [ '<(change_mach_o_flags_path)', '>@(change_mach_o_flags_options)', ], }, ], 'conditions': [ ['asan==1', { 'variables': { 'asan_saves_file': 'asan.saves', }, 'xcode_settings': { 'CHROMIUM_STRIP_SAVE_FILE': '<(asan_saves_file)', }, }], ], 'target_conditions': [ ['mac_pie==1 and release_valgrind_build==0', { # Turn on position-independence (ASLR) for executables. When # PIE is on for the Chrome executables, the framework will # also be subject to ASLR. # Don't do this when building for Valgrind, because Valgrind # doesn't understand slide. TODO: Make Valgrind on Mac OS X # understand slide, and get rid of the Valgrind check. 'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-pie', # Position-independent executable (MH_PIE) ], }, }], ], }], ['(_type=="executable" or _type=="shared_library" or \ _type=="loadable_module") and mac_strip!=0', { 'target_conditions': [ ['mac_real_dsym == 1', { # To get a real .dSYM bundle produced by dsymutil, set the # debug information format to dwarf-with-dsym. Since # strip_from_xcode will not be used, set Xcode to do the # stripping as well. 'configurations': { 'Release_Base': { 'xcode_settings': { 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym', 'DEPLOYMENT_POSTPROCESSING': 'YES', 'STRIP_INSTALLED_PRODUCT': 'YES', 'target_conditions': [ ['_type=="shared_library" or _type=="loadable_module"', { # The Xcode default is to strip debugging symbols # only (-S). Local symbols should be stripped as # well, which will be handled by -x. Xcode will # continue to insert -S when stripping even when # additional flags are added with STRIPFLAGS. 'STRIPFLAGS': '-x', }], # _type=="shared_library" or _type=="loadable_module" ['_type=="executable"', { 'conditions': [ ['asan==1', { 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', }] ], }], # _type=="executable" and asan==1 ], # target_conditions }, # xcode_settings }, # configuration "Release" }, # configurations }, { # mac_real_dsym != 1 # To get a fast fake .dSYM bundle, use a post-build step to # produce the .dSYM and strip the executable. strip_from_xcode # only operates in the Release configuration. 'postbuilds': [ { 'variables': { # Define strip_from_xcode in a variable ending in _path # so that gyp understands it's a path and performs proper # relativization during dict merging. 'strip_from_xcode_path': 'mac/strip_from_xcode', }, 'postbuild_name': 'Strip If Needed', 'action': ['<(strip_from_xcode_path)'], }, ], # postbuilds }], # mac_real_dsym ], # target_conditions }], # (_type=="executable" or _type=="shared_library" or # _type=="loadable_module") and mac_strip!=0 ], # target_conditions }, # target_defaults }], # OS=="mac" ['OS=="ios"', { 'target_defaults': { 'xcode_settings' : { 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', # This next block is mostly common with the 'mac' section above, # but keying off (or setting) 'clang' isn't valid for iOS as it # also means using Chromium's build of clang. # TODO(stuartmorgan): switch to c++0x (see TODOs in the clang # section above). 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++0x', # Warn if automatic synthesis is triggered with # the -Wobjc-missing-property-synthesis flag. 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES', 'WARNING_CFLAGS': [ '-Wheader-hygiene', # Don't die on dtoa code that uses a char as an array index. # This is required solely for base/third_party/dmg_fp/dtoa.cc. '-Wno-char-subscripts', # See comment in the mac clang section above for this flag. '-Wno-unneeded-internal-declaration', # Match OS X clang C++11 warning settings. '-Wno-c++11-narrowing', ], }, 'target_conditions': [ ['_toolset=="host"', { 'xcode_settings': { 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', 'ARCHS': [ 'x86_64' ], }, }], ['_toolset=="target"', { 'xcode_settings': { # This section should be for overriding host settings. But, # since we can't negate the iphone deployment target above, we # instead set it here for target only. 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)', }, }], ['_type=="executable"', { 'configurations': { 'Release_Base': { 'xcode_settings': { 'DEPLOYMENT_POSTPROCESSING': 'YES', 'STRIP_INSTALLED_PRODUCT': 'YES', }, }, 'Debug_Base': { 'xcode_settings': { # Remove dSYM to reduce build time. 'DEBUG_INFORMATION_FORMAT': 'dwarf', }, }, }, 'xcode_settings': { 'conditions': [ ['chromium_ios_signing', { # iOS SDK wants everything for device signed. 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', }, { 'CODE_SIGNING_REQUIRED': 'NO', 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '', }], ], }, }], ], # target_conditions }, # target_defaults }], # OS=="ios" ['OS=="win"', { 'target_defaults': { 'defines': [ '_WIN32_WINNT=0x0602', 'WINVER=0x0602', 'WIN32', '_WINDOWS', 'NOMINMAX', 'PSAPI_VERSION=1', '_CRT_RAND_S', 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', 'WIN32_LEAN_AND_MEAN', '_ATL_NO_OPENGL', ], 'conditions': [ ['buildtype=="Official"', { # In official builds, targets can self-select an optimization # level by defining a variable named 'optimize', and setting it # to one of # - "size", optimizes for minimal code size - the default. # - "speed", optimizes for speed over code size. # - "max", whole program optimization and link-time code # generation. This is very expensive and should be used # sparingly. 'variables': { 'optimize%': 'size', }, 'target_conditions': [ ['optimize=="size"', { 'msvs_settings': { 'VCCLCompilerTool': { # 1, optimizeMinSpace, Minimize Size (/O1) 'Optimization': '1', # 2, favorSize - Favor small code (/Os) 'FavorSizeOrSpeed': '2', }, }, }, ], ['optimize=="speed"', { 'msvs_settings': { 'VCCLCompilerTool': { # 2, optimizeMaxSpeed, Maximize Speed (/O2) 'Optimization': '2', # 1, favorSpeed - Favor fast code (/Ot) 'FavorSizeOrSpeed': '1', }, }, }, ], ['optimize=="max"', { 'msvs_settings': { 'VCCLCompilerTool': { # 2, optimizeMaxSpeed, Maximize Speed (/O2) 'Optimization': '2', # 1, favorSpeed - Favor fast code (/Ot) 'FavorSizeOrSpeed': '1', # This implies link time code generation. 'WholeProgramOptimization': 'true', }, }, }, ], ], }, ], ['component=="static_library"', { 'defines': [ '_HAS_EXCEPTIONS=0', ], }], ['secure_atl', { 'defines': [ '_SECURE_ATL', ], }], ['msvs_express', { 'configurations': { 'x86_Base': { 'msvs_settings': { 'VCLinkerTool': { 'AdditionalLibraryDirectories': ['<(windows_driver_kit_path)/lib/ATL/i386'], }, 'VCLibrarianTool': { 'AdditionalLibraryDirectories': ['<(windows_driver_kit_path)/lib/ATL/i386'], }, }, }, 'x64_Base': { 'msvs_settings': { 'VCLibrarianTool': { 'AdditionalLibraryDirectories': ['<(windows_driver_kit_path)/lib/ATL/amd64'], }, 'VCLinkerTool': { 'AdditionalLibraryDirectories': ['<(windows_driver_kit_path)/lib/ATL/amd64'], }, }, }, }, 'msvs_settings': { 'VCLinkerTool': { # Explicitly required when using the ATL with express 'AdditionalDependencies': ['atlthunk.lib'], # ATL 8.0 included in WDK 7.1 makes the linker to generate # almost eight hundred LNK4254 and LNK4078 warnings: # - warning LNK4254: section 'ATL' (50000040) merged into # '.rdata' (40000040) with different attributes # - warning LNK4078: multiple 'ATL' sections found with # different attributes 'AdditionalOptions': ['/ignore:4254', '/ignore:4078'], }, }, 'msvs_system_include_dirs': [ '<(windows_driver_kit_path)/inc/atl71', '<(windows_driver_kit_path)/inc/mfc42', ], 'target_conditions': [ ['chromium_code', { # Workaround for intsafe in 2010 Express + WDK. # ATL code uses intsafe.h and both intsafe.h and stdint.h # define INT8_MIN et al. # We can't use this workaround in third_party code because # it has various levels of intolerance for including stdint.h. 'msvs_system_include_dirs': [ '<(DEPTH)/build', ], 'msvs_settings': { 'VCCLCompilerTool': { 'ForcedIncludeFiles': [ 'intsafe_workaround.h', ], }, }, }], ], }], ], 'msvs_system_include_dirs': [ '<(windows_sdk_path)/Include/shared', '<(windows_sdk_path)/Include/um', '<(windows_sdk_path)/Include/winrt', '$(VSInstallDir)/VC/atlmfc/include', ], 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], 'msvs_cygwin_shell': 0, 'msvs_disabled_warnings': [4351, 4355, 4396, 4503, 4819, # TODO(maruel): These warnings are level 4. They will be slowly # removed as code is fixed. 4100, 4121, 4125, 4127, 4130, 4131, 4189, 4201, 4238, 4244, 4245, 4310, 4428, 4481, 4505, 4510, 4512, 4530, 4610, 4611, 4701, 4702, 4706, ], 'msvs_settings': { 'VCCLCompilerTool': { 'AdditionalOptions': ['/MP'], 'MinimalRebuild': 'false', 'BufferSecurityCheck': 'true', 'EnableFunctionLevelLinking': 'true', 'RuntimeTypeInfo': 'false', 'WarningLevel': '4', 'WarnAsError': 'true', 'DebugInformationFormat': '3', 'conditions': [ ['component=="shared_library"', { 'ExceptionHandling': '1', # /EHsc }, { 'ExceptionHandling': '0', }], ], }, 'VCLibrarianTool': { 'AdditionalOptions': ['/ignore:4221'], 'AdditionalLibraryDirectories': [ '<(windows_sdk_path)/Lib/win8/um/x86', ], }, 'VCLinkerTool': { 'AdditionalDependencies': [ 'wininet.lib', 'dnsapi.lib', 'version.lib', 'msimg32.lib', 'ws2_32.lib', 'usp10.lib', 'psapi.lib', 'dbghelp.lib', 'winmm.lib', 'shlwapi.lib', ], 'AdditionalLibraryDirectories': [ '<(windows_sdk_path)/Lib/win8/um/x86', ], 'GenerateDebugInformation': 'true', 'MapFileName': '$(OutDir)\\$(TargetName).map', 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib', 'FixedBaseAddress': '1', # SubSystem values: # 0 == not set # 1 == /SUBSYSTEM:CONSOLE # 2 == /SUBSYSTEM:WINDOWS # Most of the executables we'll ever create are tests # and utilities with console output. 'SubSystem': '1', }, 'VCMIDLTool': { 'GenerateStublessProxies': 'true', 'TypeLibraryName': '$(InputName).tlb', 'OutputDirectory': '$(IntDir)', 'HeaderFileName': '$(InputName).h', 'DLLDataFileName': '$(InputName).dlldata.c', 'InterfaceIdentifierFileName': '$(InputName)_i.c', 'ProxyFileName': '$(InputName)_p.c', }, 'VCResourceCompilerTool': { 'Culture' : '1033', 'AdditionalIncludeDirectories': [ '<(DEPTH)', '<(SHARED_INTERMEDIATE_DIR)', ], }, 'target_conditions': [ ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', { 'VCManifestTool': { 'AdditionalManifestFiles': [ '>(win_exe_compatibility_manifest)', ], }, }], ['_type=="executable" and >(win_use_external_manifest)==0', { 'VCManifestTool': { 'EmbedManifest': 'true', } }], ['_type=="executable" and >(win_use_external_manifest)==1', { 'VCManifestTool': { 'EmbedManifest': 'false', } }], ], }, }, }], ['disable_nacl==1', { 'target_defaults': { 'defines': [ 'DISABLE_NACL', ], }, }], ['OS=="win" and msvs_use_common_linker_extras', { 'target_defaults': { 'msvs_settings': { 'VCLinkerTool': { 'DelayLoadDLLs': [ 'dbghelp.dll', 'dwmapi.dll', 'shell32.dll', 'uxtheme.dll', ], }, }, 'configurations': { 'x86_Base': { 'msvs_settings': { 'VCLinkerTool': { 'AdditionalOptions': [ '/safeseh', '/dynamicbase', '/ignore:4199', '/ignore:4221', '/nxcompat', ], 'conditions': [ ['asan==0', { 'AdditionalOptions': ['/largeaddressaware'], }], ], }, }, }, 'x64_Base': { 'msvs_settings': { 'VCLinkerTool': { 'AdditionalOptions': [ # safeseh is not compatible with x64 '/dynamicbase', '/ignore:4199', '/ignore:4221', '/nxcompat', ], }, }, }, }, }, }], ['enable_new_npdevice_api==1', { 'target_defaults': { 'defines': [ 'ENABLE_NEW_NPDEVICE_API', ], }, }], # Don't warn about the "typedef 'foo' locally defined but not used" # for gcc 4.8. # TODO: remove this flag once all builds work. See crbug.com/227506 ['gcc_version>=48', { 'target_defaults': { 'cflags': [ '-Wno-unused-local-typedefs', ], }, }], ['clang==1', { 'make_global_settings': [ ['CC', '<(make_clang_dir)/bin/clang'], ['CXX', '<(make_clang_dir)/bin/clang++'], ['CC.host', '$(CC)'], ['CXX.host', '$(CXX)'], ], }], ['OS=="android" and clang==0', { # Hardcode the compiler names in the Makefile so that # it won't depend on the environment at make time. 'make_global_settings': [ ['CC', '