2012-01-04 02:02:16 +04:00
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
2009-02-26 00:26:55 +03:00
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
2009-09-16 03:52:14 +04:00
# IMPORTANT:
# Please don't directly include this file if you are building via gyp_chromium,
# since gyp_chromium is automatically forcing its inclusion.
2009-02-26 00:26:55 +03:00
{
2011-01-07 01:19:30 +03:00
# Variables expected to be overriden on the GYP command line (-D) or by
# ~/.gyp/include.gypi.
2009-02-26 00:26:55 +03:00
'variables': {
2009-08-05 23:26:07 +04:00
# Putting a variables dict inside another variables dict looks kind of
2011-01-07 01:19:30 +03:00
# weird. This is done so that 'host_arch', 'chromeos', etc are defined as
2009-08-05 23:26:07 +04:00
# variables within the outer variables dict here. This is necessary
# to get these variables defined for the conditions within this variables
2012-03-20 06:11:58 +04:00
# dict that operate on these variables.
2009-08-05 23:26:07 +04:00
'variables': {
2011-01-07 01:19:30 +03:00
'variables': {
2011-01-07 22:04:43 +03:00
'variables': {
2012-08-07 05:23:11 +04:00
'variables': {
# Whether we're building a ChromeOS build.
'chromeos%': 0,
2009-08-05 23:26:07 +04:00
2012-08-07 05:23:11 +04:00
# Whether or not we are using the Aura windowing framework.
'use_aura%': 0,
2011-09-18 21:28:50 +04:00
2012-08-07 05:23:11 +04:00
# Whether or not we are building the Ash shell.
'use_ash%': 0,
2013-04-06 08:51:21 +04:00
2013-08-08 01:02:31 +04:00
# Whether or not we are using CRAS, the ChromeOS Audio Server.
'use_cras%': 0,
2013-05-03 23:19:15 +04:00
# Use a raw surface abstraction.
'use_ozone%': 0,
2013-11-14 06:42:43 +04:00
# Configure the build for small devices. See crbug.com/318413
'embedded%': 0,
2014-03-26 23:10:02 +04:00
'conditions': [
# Compute the architecture that we're building on.
['OS=="win" or OS=="mac" or OS=="ios"', {
'host_arch%': 'ia32',
}, {
'host_arch%': '<!(python <(DEPTH)/build/linux/detect_host_arch.py)',
}],
],
2012-08-07 05:23:11 +04:00
},
# Copy conditionally-set variables out one scope.
'chromeos%': '<(chromeos)',
'use_aura%': '<(use_aura)',
'use_ash%': '<(use_ash)',
2013-08-08 01:02:31 +04:00
'use_cras%': '<(use_cras)',
2013-05-03 23:19:15 +04:00
'use_ozone%': '<(use_ozone)',
2013-11-14 06:42:43 +04:00
'embedded%': '<(embedded)',
2014-03-26 23:10:02 +04:00
'host_arch%': '<(host_arch)',
2012-01-13 07:34:28 +04:00
2012-08-07 05:23:11 +04:00
# Whether we are using Views Toolkit
'toolkit_views%': 0,
2011-10-06 07:30:42 +04:00
2014-03-28 20:20:32 +04:00
# Use OpenSSL instead of NSS as the underlying SSL and crypto
# implementation. Certificate verification will in most cases be
# handled by the OS. If OpenSSL's struct X509 is used to represent
# certificates, use_openssl_certs must be set.
2011-10-06 07:30:42 +04:00
'use_openssl%': 0,
2011-11-22 05:25:27 +04:00
2014-03-28 20:20:32 +04:00
# Typedef X509Certificate::OSCertHandle to OpenSSL's struct X509*.
'use_openssl_certs%': 0,
2012-02-23 03:08:05 +04:00
# Disable viewport meta tag by default.
'enable_viewport%': 0,
2012-04-24 06:43:24 +04:00
# Enable HiDPI support.
'enable_hidpi%': 0,
2012-05-11 00:32:40 +04:00
2012-05-15 21:46:58 +04:00
# 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',
2012-08-07 05:23:11 +04:00
2013-05-08 11:20:09 +04:00
# Override branding to select the desired branding flavor.
'branding%': 'Chromium',
2012-08-07 05:23:11 +04:00
'conditions': [
2013-09-16 04:22:52 +04:00
# ChromeOS and Windows use Aura and Ash.
2014-05-14 03:25:06 +04:00
['chromeos==1 or OS=="win"', {
2012-08-07 05:23:11 +04:00
'use_ash%': 1,
2013-09-13 08:28:01 +04:00
'use_aura%': 1,
2012-08-07 05:23:11 +04:00
}],
2013-06-08 21:16:47 +04:00
2013-11-14 06:42:43 +04:00
# Ozone uses Aura.
['use_ozone==1', {
'use_aura%': 1,
}],
2014-05-13 03:04:41 +04:00
2014-05-14 03:25:06 +04:00
# ToT Linux should be aura.
#
# TODO(erg): Merge this into the previous block once compiling with
# aura safely implies including ash capabilities.
['OS=="linux"', {
'use_aura%': 1,
}],
2013-09-30 12:36:13 +04:00
# 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,
}],
2013-11-14 06:42:43 +04:00
# Embedded implies ozone.
['embedded==1', {
'use_ozone%': 1,
}],
2013-12-04 11:32:41 +04:00
2014-01-14 01:27:42 +04:00
['embedded==1', {
'use_system_fontconfig%': 0,
}, {
'use_system_fontconfig%': 1,
}],
2014-03-26 23:10:02 +04:00
['OS=="android"', {
'target_arch%': 'arm',
}, {
# Default architecture we're building for is the architecture we're
# building on, and possibly sub-architecture (for iOS builds).
'target_arch%': '<(host_arch)',
}],
2012-08-07 05:23:11 +04:00
],
2011-01-07 22:04:43 +03:00
},
# Copy conditionally-set variables out one scope.
'chromeos%': '<(chromeos)',
2013-09-30 12:36:13 +04:00
'desktop_linux%': '<(desktop_linux)',
2011-08-25 19:39:58 +04:00
'use_aura%': '<(use_aura)',
2012-01-04 02:02:16 +04:00
'use_ash%': '<(use_ash)',
2013-08-08 01:02:31 +04:00
'use_cras%': '<(use_cras)',
2013-05-03 23:19:15 +04:00
'use_ozone%': '<(use_ozone)',
2013-11-14 06:42:43 +04:00
'embedded%': '<(embedded)',
2011-10-06 07:30:42 +04:00
'use_openssl%': '<(use_openssl)',
2014-03-28 20:20:32 +04:00
'use_openssl_certs%': '<(use_openssl_certs)',
2014-01-14 01:27:42 +04:00
'use_system_fontconfig%': '<(use_system_fontconfig)',
2012-02-23 03:08:05 +04:00
'enable_viewport%': '<(enable_viewport)',
2012-04-24 06:43:24 +04:00
'enable_hidpi%': '<(enable_hidpi)',
2012-05-15 21:46:58 +04:00
'buildtype%': '<(buildtype)',
2013-05-08 11:20:09 +04:00
'branding%': '<(branding)',
2012-12-11 23:49:22 +04:00
'host_arch%': '<(host_arch)',
2014-03-26 23:10:02 +04:00
'target_arch%': '<(target_arch)',
2012-12-11 23:49:22 +04:00
2014-02-13 22:17:35 +04:00
'target_subarch%': '',
2012-05-15 21:46:58 +04:00
2013-03-12 14:22:36 +04:00
# This is set when building the Android WebView inside the Android
# build system, using the 'android' gyp backend. The WebView code is
# still built when this is unset, but builds using the normal chromium
# build system.
'android_webview_build%': 0,
2012-07-28 00:36:53 +04:00
2013-04-26 16:06:54 +04:00
# Set ARM architecture version.
'arm_version%': 7,
2013-12-13 03:06:50 +04:00
# Use aurax11 for clipboard implementation. This is true on linux_aura.
'use_clipboard_aurax11%': 0,
2013-12-04 11:32:41 +04:00
# goma settings.
# 1 to use goma.
# If no gomadir is set, it uses the default gomadir.
'use_goma%': 0,
'gomadir%': '',
2014-03-26 23:10:02 +04:00
# The system root for cross-compiles. Default: none.
'sysroot%': '',
'chroot_cmd%': '',
2010-01-12 07:29:59 +03:00
'conditions': [
2013-10-05 05:01:32 +04:00
# Ash needs Aura.
['use_aura==0', {
'use_ash%': 0,
}],
2012-02-07 05:54:50 +04:00
# Set default value of toolkit_views based on OS.
2012-03-19 19:40:35 +04:00
['OS=="win" or chromeos==1 or use_aura==1', {
2011-01-07 22:04:43 +03:00
'toolkit_views%': 1,
}, {
'toolkit_views%': 0,
}],
2012-04-24 06:43:24 +04:00
2013-11-14 06:42:43 +04:00
# Embedded builds use aura without ash or views.
['embedded==1', {
'use_aura%': 1,
'use_ash%': 0,
'toolkit_views%': 0,
}],
2014-03-07 02:10:49 +04:00
# Enable HiDPI on Mac OS, Chrome OS and Windows.
['OS=="mac" or chromeos==1 or OS=="win"', {
2012-04-24 06:43:24 +04:00
'enable_hidpi%': 1,
}],
2012-05-11 00:32:40 +04:00
2013-09-30 12:36:13 +04:00
# Enable App Launcher on ChromeOS, Windows and OSX.
# On Linux, enable App Launcher for the Aura build.
['use_ash==1 or OS=="win" or OS=="mac" or (desktop_linux==1 and use_aura==1)', {
2012-11-15 07:58:16 +04:00
'enable_app_list%': 1,
}, {
'enable_app_list%': 0,
2013-01-10 11:33:09 +04:00
}],
2012-11-21 02:36:07 +04:00
['use_aura==1 or (OS!="win" and OS!="mac" and OS!="ios" and OS!="android")', {
2012-11-28 19:52:26 +04:00
'use_default_render_theme%': 1,
2012-11-21 02:36:07 +04:00
}, {
'use_default_render_theme%': 0,
}],
2013-11-14 06:42:43 +04:00
['use_ozone==1', {
'use_ozone_evdev%': 1,
}, {
'use_ozone_evdev%': 0,
2013-12-04 11:32:41 +04:00
}],
# Set default gomadir.
['OS=="win"', {
'gomadir': 'c:\\goma\\goma-win',
2014-01-19 03:54:41 +04:00
}, {
2013-12-04 11:32:41 +04:00
'gomadir': '<!(/bin/echo -n ${HOME}/goma)',
}],
2014-02-13 22:17:35 +04:00
# Set the default "target_subarch" on iOS. Valid values are "arm32",
# "arm64" and "both" (meaning a fat binary).
#
# TODO(sdefresne): change the default from "arm32" to "both" for
# "target_subarch" once http://crbug.com/339477 is fixed.
#
# TODO(sdefresne): set the "target_arch" to "arm" once compilation
# of skia has been fixed for simulator. http://crbug.com/342377
['OS=="ios"', {
'target_subarch%': 'arm32',
}],
2010-01-12 07:29:59 +03:00
],
},
2010-04-27 02:58:17 +04:00
2011-01-07 01:19:30 +03:00
# Copy conditionally-set variables out one scope.
'chromeos%': '<(chromeos)',
'host_arch%': '<(host_arch)',
2012-12-11 23:49:22 +04:00
'target_arch%': '<(target_arch)',
2014-02-13 22:17:35 +04:00
'target_subarch%': '<(target_subarch)',
2011-01-07 22:04:43 +03:00
'toolkit_views%': '<(toolkit_views)',
2013-09-07 07:26:37 +04:00
'desktop_linux%': '<(desktop_linux)',
2011-08-25 19:39:58 +04:00
'use_aura%': '<(use_aura)',
2012-01-04 02:02:16 +04:00
'use_ash%': '<(use_ash)',
2013-08-08 01:02:31 +04:00
'use_cras%': '<(use_cras)',
2013-05-03 23:19:15 +04:00
'use_ozone%': '<(use_ozone)',
2013-10-22 03:09:48 +04:00
'use_ozone_evdev%': '<(use_ozone_evdev)',
2013-12-13 03:06:50 +04:00
'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
2013-11-14 06:42:43 +04:00
'embedded%': '<(embedded)',
2011-10-06 07:30:42 +04:00
'use_openssl%': '<(use_openssl)',
2014-03-28 20:20:32 +04:00
'use_openssl_certs%': '<(use_openssl_certs)',
2014-01-14 01:27:42 +04:00
'use_system_fontconfig%': '<(use_system_fontconfig)',
2012-02-23 03:08:05 +04:00
'enable_viewport%': '<(enable_viewport)',
2012-04-24 06:43:24 +04:00
'enable_hidpi%': '<(enable_hidpi)',
2013-03-12 14:22:36 +04:00
'android_webview_build%': '<(android_webview_build)',
2013-12-04 11:32:41 +04:00
'use_goma%': '<(use_goma)',
'gomadir%': '<(gomadir)',
2012-11-15 07:58:16 +04:00
'enable_app_list%': '<(enable_app_list)',
2012-11-21 02:36:07 +04:00
'use_default_render_theme%': '<(use_default_render_theme)',
2012-12-11 23:49:22 +04:00
'buildtype%': '<(buildtype)',
2013-05-08 11:20:09 +04:00
'branding%': '<(branding)',
2013-04-26 16:06:54 +04:00
'arm_version%': '<(arm_version)',
2014-03-26 23:10:02 +04:00
'sysroot%': '<(sysroot)',
'chroot_cmd%': '<(chroot_cmd)',
2010-04-27 02:58:17 +04:00
2013-04-02 23:42:30 +04:00
# Set to 1 to enable fast builds. Set to 2 for even faster builds
# (it disables debug info for fastest compilation - only for use
# on compile-only bots).
2009-10-02 23:59:54 +04:00
'fastbuild%': 0,
2010-02-03 20:02:27 +03:00
2014-04-17 01:11:46 +04:00
# 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,
2014-03-10 22:23:38 +04:00
# Set to 1 to enable dcheck in release.
2011-09-21 00:59:01 +04:00
'dcheck_always_on%': 0,
2013-07-10 01:47:01 +04:00
# Set to 1 to make a build that disables unshipped tracing events.
# Note: this setting is ignored if buildtype=="Official".
'tracing_like_official_build%': 0,
2013-02-22 15:17:25 +04:00
# Disable image loader component extension by default.
'image_loader_extension%': 0,
2013-04-26 16:06:54 +04:00
# Set NEON compilation flags.
2010-02-27 00:53:43 +03:00
'arm_neon%': 1,
2010-03-04 19:42:23 +03:00
2013-04-26 16:06:54 +04:00
# Detect NEON support at run-time.
'arm_neon_optional%': 0,
2011-09-30 08:38:43 +04:00
# The system libdir used for this ABI.
'system_libdir%': 'lib',
2010-12-07 10:27:27 +03:00
# Use libjpeg-turbo as the JPEG codec used by Chromium.
2011-02-28 05:28:03 +03:00
'use_libjpeg_turbo%': 1,
2010-12-07 10:27:27 +03:00
2012-07-18 21:11:28 +04:00
# Use system libjpeg. Note that the system's libjepg will be used even if
# use_libjpeg_turbo is set.
'use_system_libjpeg%': 0,
2013-03-06 18:06:17 +04:00
# By default, component is set to static_library and it can be overriden
# by the GYP command line or by ~/.gyp/include.gypi.
2011-05-20 03:18:53 +04:00
'component%': 'static_library',
2011-01-07 01:19:30 +03:00
2011-01-07 22:04:43 +03:00
# Set to select the Title Case versions of strings in GRD files.
'use_titlecase_in_grd_files%': 0,
2011-01-07 01:19:30 +03:00
2011-02-02 03:10:27 +03:00
# Use translations provided by volunteers at launchpad.net. This
# currently only works on Linux.
2011-02-01 21:51:19 +03:00
'use_third_party_translations%': 0,
2011-01-11 03:53:18 +03:00
# Remoting compilation is enabled by default. Set to 0 to disable.
'remoting%': 1,
2011-06-01 17:56:25 +04:00
# Configuration policy is enabled by default. Set to 0 to disable.
'configuration_policy%': 1,
2012-11-29 21:00:03 +04:00
# Variable safe_browsing is used to control the build time configuration
# for safe browsing feature. Safe browsing can be compiled in 3 different
# levels: 0 disables it, 1 enables it fully, and 2 enables only UI and
# reporting features without enabling phishing and malware detection. This
# is useful to integrate a third party phishing/malware detection to
# existing safe browsing logic.
2011-07-11 14:22:56 +04:00
'safe_browsing%': 1,
2011-10-14 09:08:22 +04:00
# Speech input is compiled in by default. Set to 0 to disable.
2014-05-07 04:53:50 +04:00
# TODO(tommyw): Speech Input doesn't exist anymore. Clarify the scope
# of this flag (and probably rename it).
2011-10-14 09:08:22 +04:00
'input_speech%': 1,
2011-10-28 14:41:57 +04:00
# Notifications are compiled in by default. Set to 0 to disable.
'notifications%' : 1,
2012-12-19 15:09:37 +04:00
# Use dsymutil to generate real .dSYM files on Mac. The default is 0 for
# regular builds and 1 for ASan builds.
'mac_want_real_dsym%': 'default',
2011-02-11 19:43:46 +03:00
# If this is set, the clang plugins used on the buildbot will be used.
# Run tools/clang/scripts/update.sh to make sure they are compiled.
# This causes 'clang_chrome_plugins_flags' to be set.
# Has no effect if 'clang' is not set as well.
2012-04-19 07:40:08 +04:00
'clang_use_chrome_plugins%': 1,
2011-02-11 19:43:46 +03:00
2012-11-28 03:41:44 +04:00
# Enable building with ASAN (Clang's -fsanitize=address option).
# -fsanitize=address only works with clang, but asan=1 implies clang=1
2011-08-15 18:33:06 +04:00
# See https://sites.google.com/a/chromium.org/dev/developers/testing/addresssanitizer
'asan%': 0,
2014-01-18 01:01:36 +04:00
# Enable coverage gathering instrumentation in ASan. This flag also
# controls coverage granularity (experimental).
2014-01-16 07:25:03 +04:00
'asan_coverage%': 0,
2011-08-15 18:33:06 +04:00
2014-04-28 16:11:15 +04:00
# Enable Chromium overrides of the default configurations for various
# dynamic tools (like ASan).
'use_sanitizer_options%': 1,
2014-02-15 08:49:18 +04:00
# Enable building with SyzyAsan.
# See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo
'syzyasan%': 0,
2013-06-13 19:49:55 +04:00
# Enable building with LSan (Clang's -fsanitize=leak option).
# -fsanitize=leak only works with clang, but lsan=1 implies clang=1
# See https://sites.google.com/a/chromium.org/dev/developers/testing/leaksanitizer
'lsan%': 0,
2012-11-09 15:28:20 +04:00
# Enable building with TSAN (Clang's -fsanitize=thread option).
# -fsanitize=thread only works with clang, but tsan=1 implies clang=1
2012-07-04 11:51:12 +04:00
# See http://clang.llvm.org/docs/ThreadSanitizer.html
'tsan%': 0,
2012-11-01 14:36:16 +04:00
'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/valgrind/tsan_v2/ignores.txt',
2012-07-04 11:51:12 +04:00
2013-02-27 00:06:59 +04:00
# Enable building with MSAN (Clang's -fsanitize=memory option).
# MemorySanitizer only works with clang, but msan=1 implies clang=1
# See http://clang.llvm.org/docs/MemorySanitizer.html
'msan%': 0,
2014-01-18 00:24:53 +04:00
'msan_blacklist%': '<(PRODUCT_DIR)/../../tools/msan/blacklist.txt',
2013-02-27 00:06:59 +04:00
2013-11-12 17:41:30 +04:00
# Use the dynamic libraries instrumented by one of the sanitizers
# instead of the standard system libraries.
'use_instrumented_libraries%': 0,
2013-12-20 17:07:28 +04:00
# Use libc++ (third_party/libc++ and third_party/libc++abi) instead of
# stdlibc++ as standard library. This is intended to use for instrumented
# builds.
'use_custom_libcxx%': 0,
2012-09-26 09:17:25 +04:00
# Use a modified version of Clang to intercept allocated types and sizes
# for allocated objects. clang_type_profiler=1 implies clang=1.
# See http://dev.chromium.org/developers/deep-memory-profiler/cpp-object-type-identifier
# TODO(dmikurube): Support mac. See http://crbug.com/123758#c11
'clang_type_profiler%': 0,
2012-05-16 14:04:44 +04:00
# Set to true to instrument the code with function call logger.
# See src/third_party/cygprofile/cyg-profile.cc for details.
'order_profiling%': 0,
2012-01-25 19:30:46 +04:00
# Use the provided profiled order file to link Chrome image with it.
# This makes Chrome faster by better using CPU cache when executing code.
# This is known as PGO (profile guided optimization).
# See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-effort
'order_text_section%' : "",
2011-06-24 07:15:13 +04:00
# Set to 1 compile with -fPIC cflag on linux. This is a must for shared
# libraries on linux x86-64 and arm, plus ASLR.
'linux_fpic%': 1,
2012-03-06 01:02:40 +04:00
# Whether one-click signin is enabled or not.
'enable_one_click_signin%': 0,
2012-04-17 21:13:34 +04:00
# Enable Chrome browser extensions
'enable_extensions%': 1,
2012-12-08 02:44:40 +04:00
# Enable Google Now.
2014-04-17 20:50:56 +04:00
'enable_google_now%': 1,
2012-12-08 02:44:40 +04:00
2013-08-12 21:16:05 +04:00
# Enable printing support and UI. This variable is used to configure
# which parts of printing will be built. 0 disables printing completely,
# 1 enables it fully, and 2 enables only the codepath to generate a
# Metafile (e.g. usually a PDF or EMF) and disables print preview, cloud
# print, UI, etc.
2012-06-09 10:04:02 +04:00
'enable_printing%': 1,
Suppression the problems on the build bots: There were two reasons why that CL broke the build tree. One is the size bloating, which was solved by https://codereview.chromium.org/23460018. The other is compiling error on ARM, and this was also solved by updating CLD2 (https://chromiumcodereview.appspot.com/23606017/).
--
Use Finch to compare the performances of CLD1 and CLD2
Add a compile time constant CLD_VERSION, which indicates the version of CLD. If this is not define, Finch test to compare CLD1 and CLD2 is supposed to be used.
By this CL, each platform will have the below status:
Linux: Use both CLD1 and CLD2 (and use Finch).
Mac OS X: Use both CLD1 and CLD2 (and use Finch).
Windows: Use only CLD1 once because now CLD2 can't be compiled on Windows. After we can have CLD2 compiled on Windows, we will use CLD2 and Finch asap.
iOS: Still use only CLD1. (It's because it is hard to use both CLD1 and CLD2 on mobile platform because of the binary size impact.)
Android: Still use only CLD1. (The same reason as iOS)
So some platforms will have two CLD binaries, but this is temporal in the sense that we intend to use Finch only for Dev and Beta channel. Before releasing the stable Chromium version, we decide which version of CLD is adopted, make another CL to use only one CLD, and send a merge request. (Of course, we hope we will be able to adopt CLD2.)
BUG=240647
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=221380
Review URL: https://chromiumcodereview.appspot.com/22867032
git-svn-id: http://src.chromium.org/svn/trunk/src/build@221675 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-09-06 15:03:06 +04:00
# Set the version of CLD.
# 0: Don't specify the version. This option is for the Finch testing.
# 1: Use only CLD1.
# 2: Use only CLD2.
2013-10-22 06:10:00 +04:00
'cld_version%': 2,
Suppression the problems on the build bots: There were two reasons why that CL broke the build tree. One is the size bloating, which was solved by https://codereview.chromium.org/23460018. The other is compiling error on ARM, and this was also solved by updating CLD2 (https://chromiumcodereview.appspot.com/23606017/).
--
Use Finch to compare the performances of CLD1 and CLD2
Add a compile time constant CLD_VERSION, which indicates the version of CLD. If this is not define, Finch test to compare CLD1 and CLD2 is supposed to be used.
By this CL, each platform will have the below status:
Linux: Use both CLD1 and CLD2 (and use Finch).
Mac OS X: Use both CLD1 and CLD2 (and use Finch).
Windows: Use only CLD1 once because now CLD2 can't be compiled on Windows. After we can have CLD2 compiled on Windows, we will use CLD2 and Finch asap.
iOS: Still use only CLD1. (It's because it is hard to use both CLD1 and CLD2 on mobile platform because of the binary size impact.)
Android: Still use only CLD1. (The same reason as iOS)
So some platforms will have two CLD binaries, but this is temporal in the sense that we intend to use Finch only for Dev and Beta channel. Before releasing the stable Chromium version, we decide which version of CLD is adopted, make another CL to use only one CLD, and send a merge request. (Of course, we hope we will be able to adopt CLD2.)
BUG=240647
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=221380
Review URL: https://chromiumcodereview.appspot.com/22867032
git-svn-id: http://src.chromium.org/svn/trunk/src/build@221675 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-09-06 15:03:06 +04:00
2014-03-19 16:10:59 +04:00
# For CLD2, the size of the tables that should be included in the build
2014-03-27 20:16:03 +04:00
# Only evaluated if cld_version == 2 or if building the CLD2 dynamic data
# tool explicitly.
2014-03-19 16:10:59 +04:00
# See third_party/cld_2/cld_2.gyp for more information.
# 0: Small tables, lower accuracy
# 1: Medium tables, medium accuracy
# 2: Large tables, high accuracy
'cld2_table_size%': 2,
2014-03-27 20:16:03 +04:00
# Set the way CLD is compiled. Only evaluated if cld_version == 2.
# 0: static, language scoring tables compiled into the binary
# 1: dynamic, language scoring tables live in a data file that must
# be loaded at runtime.
'cld2_dynamic%': 0,
2014-04-30 15:27:19 +04:00
# Whether CLD2 is a component. Only evaluated if cld_version == 2 and
# cld2_dynamic == 1.
# 0: Not a component. If cld2_dynamic == 1, it is up to the distribution
# to ensure that the data file is provided if desired.
# 1: Componentized. CLD data should be obtained via the Component
# Updater.
'cld2_is_component%': 0,
2013-07-31 11:48:53 +04:00
# Enable spell checker.
'enable_spellcheck%': 1,
2011-07-20 02:07:48 +04:00
# Webrtc compilation is enabled by default. Set to 0 to disable.
'enable_webrtc%': 1,
2012-04-05 22:34:53 +04:00
# Enables use of the session service, which is enabled by default.
# Support for disabling depends on the platform.
'enable_session_service%': 1,
2012-03-16 00:50:38 +04:00
# Enables theme support, which is enabled by default. Support for
# disabling depends on the platform.
'enable_themes%': 1,
2013-02-22 07:37:22 +04:00
# Enables autofill dialog and associated features; disabled by default.
'enable_autofill_dialog%' : 0,
2012-04-06 02:53:00 +04:00
# Enables support for background apps.
'enable_background%': 1,
2012-04-06 05:11:02 +04:00
# Enable the task manager by default.
'enable_task_manager%': 1,
2012-05-02 21:20:45 +04:00
2014-03-08 02:36:32 +04:00
# Enables used resource whitelist generation; disabled by default.
'enable_resource_whitelist_generation%': 0,
2014-05-07 19:05:29 +04:00
# Enable FILE support by default.
'disable_file_support%': 0,
2012-08-30 17:18:11 +04:00
# Enable FTP support by default.
'disable_ftp_support%': 0,
2014-05-07 18:05:46 +04:00
# Use native android functions in place of ICU. Not supported by most
# components.
'use_icu_alternatives_on_android%': 0,
2013-09-15 02:48:02 +04:00
# XInput2 multitouch support is enabled by default (use_xi2_mt=2).
# Setting to zero value disables XI2 MT. When XI2 MT is enabled,
2012-05-15 11:29:55 +04:00
# the input value also defines the required XI2 minor minimum version.
# For example, use_xi2_mt=2 means XI2.2 or above version is required.
2013-09-15 02:48:02 +04:00
'use_xi2_mt%': 2,
2012-05-15 11:29:55 +04:00
2012-01-16 15:45:17 +04:00
# Use of precompiled headers on Windows.
#
# This variable may be explicitly set to 1 (enabled) or 0
# (disabled) in ~/.gyp/include.gypi or via the GYP command line.
# This setting will override the default.
#
2012-12-21 00:45:39 +04:00
# See
2012-01-16 15:45:17 +04:00
# http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders
# for details.
2011-09-27 04:15:16 +04:00
'chromium_win_pch%': 0,
2012-04-19 07:40:08 +04:00
# Set this to true when building with Clang.
# See http://code.google.com/p/chromium/wiki/Clang for details.
'clang%': 0,
2012-01-17 20:47:34 +04:00
# Enable plug-in installation by default.
'enable_plugin_installation%': 1,
2012-03-18 07:09:50 +04:00
# Specifies whether to use canvas_skia.cc in place of platform
2012-03-15 21:32:42 +04:00
# specific implementations of gfx::Canvas. Affects text drawing in the
2012-01-25 21:49:35 +04:00
# Chrome UI.
# TODO(asvitkine): Enable this on all platforms and delete this flag.
# http://crbug.com/105550
2012-03-18 07:09:50 +04:00
'use_canvas_skia%': 0,
2012-01-25 21:49:35 +04:00
2012-03-01 05:29:47 +04:00
# Set to "tsan", "memcheck", or "drmemory" to configure the build to work
# with one of those tools.
'build_for_tool%': '',
2013-01-18 03:08:52 +04:00
# If no directory is specified then a temporary directory will be used.
'test_isolation_outdir%': '',
2013-03-20 21:00:47 +04:00
# True if isolate should fail if the isolate files refer to files
# that are missing.
'test_isolation_fail_on_missing': 0,
2012-03-07 18:39:56 +04:00
2012-06-27 23:14:06 +04:00
'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
2012-04-12 13:50:12 +04:00
'wix_path%': '<(DEPTH)/third_party/wix',
2013-01-19 07:44:31 +04:00
# Managed users are enabled by default.
'enable_managed_users%': 1,
2013-07-15 17:28:43 +04:00
# Platform natively supports discardable memory.
'native_discardable_memory%': 0,
# Platform sends memory pressure signals natively.
'native_memory_pressure_signals%': 0,
2014-05-08 10:05:33 +04:00
'data_reduction_fallback_host%' : '',
2014-01-14 15:17:30 +04:00
'data_reduction_dev_host%' : '',
2014-05-08 10:05:33 +04:00
'spdy_proxy_auth_origin%' : '',
2013-02-21 21:52:29 +04:00
'spdy_proxy_auth_property%' : '',
2013-05-28 03:18:25 +04:00
'spdy_proxy_auth_value%' : '',
2013-10-08 04:49:43 +04:00
'data_reduction_proxy_probe_url%' : '',
2013-07-10 23:21:05 +04:00
'enable_mdns%' : 0,
2014-03-21 04:58:56 +04:00
'enable_service_discovery%': 0,
2014-02-14 20:40:34 +04:00
'enable_hangout_services_extension%': 0,
2013-02-21 21:52:29 +04:00
2014-03-19 19:25:54 +04:00
# Enable the Syzygy optimization step.
'syzygy_optimize%': 0,
2014-05-10 03:18:16 +04:00
# Enable hole punching for the protected video.
'video_hole%': 0,
2011-01-07 22:04:43 +03:00
'conditions': [
2011-05-12 22:18:34 +04:00
# A flag for POSIX platforms
2011-05-18 21:25:37 +04:00
['OS=="win"', {
2011-05-12 22:18:34 +04:00
'os_posix%': 0,
2011-05-18 21:25:37 +04:00
}, {
'os_posix%': 1,
2011-05-12 22:18:34 +04:00
}],
2011-11-14 23:15:25 +04:00
# A flag for BSD platforms
['OS=="freebsd" or OS=="openbsd"', {
'os_bsd%': 1,
}, {
'os_bsd%': 0,
}],
2011-10-05 18:34:57 +04:00
# NSS usage.
2011-10-06 07:30:42 +04:00
['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==0', {
2011-10-05 18:34:57 +04:00
'use_nss%': 1,
}, {
'use_nss%': 0,
}],
2011-10-06 07:30:42 +04:00
2014-03-28 20:20:32 +04:00
# When OpenSSL is used for SSL and crypto on Unix-like systems, use
# OpenSSL's certificate definition.
['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_openssl==1', {
'use_openssl_certs%': 1,
}, {
'use_openssl_certs%': 0,
}],
2013-11-20 12:36:40 +04:00
# libudev usage. This currently only affects the content layer.
2013-11-22 05:42:47 +04:00
['OS=="linux" and embedded==0', {
2013-11-20 12:36:40 +04:00
'use_udev%': 1,
}, {
'use_udev%': 0,
}],
2013-04-06 08:51:21 +04:00
# Flags to use X11 on non-Mac POSIX platforms.
2013-05-04 03:39:54 +04:00
['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
2013-04-06 08:51:21 +04:00
'use_x11%': 0,
}, {
'use_x11%': 1,
}],
2013-11-14 06:42:43 +04:00
# Flags to use glib.
2014-04-23 22:28:51 +04:00
['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or use_ozone==1', {
2011-09-21 04:17:19 +04:00
'use_glib%': 0,
2011-05-18 21:25:37 +04:00
}, {
2011-09-21 04:17:19 +04:00
'use_glib%': 1,
2013-11-14 06:42:43 +04:00
}],
2013-11-20 00:17:16 +04:00
# Flags to use pango and cairo.
2013-11-14 06:42:43 +04:00
['OS=="win" or OS=="mac" or OS=="ios" or OS=="android" or embedded==1', {
'use_pango%': 0,
2013-11-20 00:17:16 +04:00
'use_cairo%': 0,
2013-11-14 06:42:43 +04:00
}, {
2013-05-24 01:44:15 +04:00
'use_pango%': 1,
2013-11-20 00:17:16 +04:00
'use_cairo%': 1,
2012-02-06 00:16:21 +04:00
}],
2012-03-20 06:11:58 +04:00
2013-11-14 00:44:52 +04:00
# DBus usage.
2013-11-14 06:42:43 +04:00
['OS=="linux" and embedded==0', {
2013-11-14 00:44:52 +04:00
'use_dbus%': 1,
}, {
'use_dbus%': 0,
}],
2011-10-27 23:01:00 +04:00
# We always use skia text rendering in Aura on Windows, since GDI
# doesn't agree with our BackingStore.
# TODO(beng): remove once skia text rendering is on by default.
['use_aura==1 and OS=="win"', {
'enable_skia_text%': 1,
}],
2011-09-21 01:20:33 +04:00
2011-01-07 01:19:30 +03:00
# A flag to enable or disable our compile-time dependency
# on gnome-keyring. If that dependency is disabled, no gnome-keyring
# support will be available. This option is useful
2011-09-24 22:32:49 +04:00
# for Linux distributions and for Aura.
2014-02-19 12:12:29 +04:00
['OS!="linux" or chromeos==1', {
2011-01-07 01:19:30 +03:00
'use_gnome_keyring%': 0,
}, {
'use_gnome_keyring%': 1,
}],
2014-04-17 23:20:23 +04:00
['OS=="mac" or OS=="ios"', {
# Mac and iOS want Title Case strings
2011-01-07 22:04:43 +03:00
'use_titlecase_in_grd_files%': 1,
}],
2014-01-22 15:09:32 +04:00
# Enable loader extensions on Chrome OS.
2012-03-02 01:34:06 +04:00
['chromeos==1', {
2013-02-22 15:17:25 +04:00
'image_loader_extension%': 1,
2012-02-07 05:54:50 +04:00
}, {
2013-02-22 15:17:25 +04:00
'image_loader_extension%': 0,
2012-02-07 05:54:50 +04:00
}],
2013-02-06 22:47:29 +04:00
['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
2012-06-12 23:20:01 +04:00
'enable_one_click_signin%': 1,
2012-05-30 00:39:51 +04:00
}],
2011-09-21 00:35:01 +04:00
['OS=="android"', {
2012-08-21 04:50:46 +04:00
'enable_extensions%': 0,
2012-12-08 02:44:40 +04:00
'enable_google_now%': 0,
Suppression the problems on the build bots: There were two reasons why that CL broke the build tree. One is the size bloating, which was solved by https://codereview.chromium.org/23460018. The other is compiling error on ARM, and this was also solved by updating CLD2 (https://chromiumcodereview.appspot.com/23606017/).
--
Use Finch to compare the performances of CLD1 and CLD2
Add a compile time constant CLD_VERSION, which indicates the version of CLD. If this is not define, Finch test to compare CLD1 and CLD2 is supposed to be used.
By this CL, each platform will have the below status:
Linux: Use both CLD1 and CLD2 (and use Finch).
Mac OS X: Use both CLD1 and CLD2 (and use Finch).
Windows: Use only CLD1 once because now CLD2 can't be compiled on Windows. After we can have CLD2 compiled on Windows, we will use CLD2 and Finch asap.
iOS: Still use only CLD1. (It's because it is hard to use both CLD1 and CLD2 on mobile platform because of the binary size impact.)
Android: Still use only CLD1. (The same reason as iOS)
So some platforms will have two CLD binaries, but this is temporal in the sense that we intend to use Finch only for Dev and Beta channel. Before releasing the stable Chromium version, we decide which version of CLD is adopted, make another CL to use only one CLD, and send a merge request. (Of course, we hope we will be able to adopt CLD2.)
BUG=240647
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=221380
Review URL: https://chromiumcodereview.appspot.com/22867032
git-svn-id: http://src.chromium.org/svn/trunk/src/build@221675 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-09-06 15:03:06 +04:00
'cld_version%': 1,
2014-03-27 20:16:03 +04:00
'cld2_dynamic%': 0,
2014-04-30 15:27:19 +04:00
'cld2_is_component%': 0,
2013-07-31 11:48:53 +04:00
'enable_spellcheck%': 0,
2012-08-21 04:50:46 +04:00
'enable_themes%': 0,
2012-08-02 15:03:58 +04:00
'remoting%': 0,
2013-04-26 16:06:54 +04:00
'arm_neon%': 0,
'arm_neon_optional%': 1,
2013-07-15 17:28:43 +04:00
'native_discardable_memory%': 1,
'native_memory_pressure_signals%': 1,
2013-08-20 02:26:25 +04:00
'enable_printing%': 2,
2014-01-30 15:04:29 +04:00
'enable_task_manager%':0,
2014-02-14 00:14:13 +04:00
# Set to 1 once we have a notification system for Android.
# http://crbug.com/115320
'notifications%': 0,
2014-05-10 03:18:16 +04:00
'video_hole%': 1,
2013-08-20 02:26:25 +04:00
}],
2013-08-21 00:22:22 +04:00
# Android OS includes support for proprietary codecs regardless of
# building Chromium or Google Chrome. We also ship Google Chrome with
# proprietary codecs.
['OS=="android" or branding=="Chrome"', {
'proprietary_codecs%': 1,
2013-08-24 03:33:41 +04:00
}, {
'proprietary_codecs%': 0,
2013-08-21 00:22:22 +04:00
}],
2013-12-16 22:02:04 +04:00
['OS=="mac" or OS=="ios"', {
2013-10-30 20:33:30 +04:00
'native_discardable_memory%': 1,
'native_memory_pressure_signals%': 1,
}],
2013-08-10 22:27:05 +04:00
# Enable autofill dialog for Android, Mac and Views-enabled platforms.
['toolkit_views==1 or (OS=="android" and android_webview_build==0) or OS=="mac"', {
2013-02-22 07:37:22 +04:00
'enable_autofill_dialog%': 1
}],
2014-04-01 23:22:44 +04:00
['OS=="android"', {
2013-01-12 12:35:43 +04:00
'enable_webrtc%': 1,
}],
2012-07-03 02:10:48 +04:00
['OS=="ios"', {
2012-09-12 16:02:24 +04:00
'disable_ftp_support%': 1,
'enable_extensions%': 0,
2012-12-08 02:44:40 +04:00
'enable_google_now%': 0,
Suppression the problems on the build bots: There were two reasons why that CL broke the build tree. One is the size bloating, which was solved by https://codereview.chromium.org/23460018. The other is compiling error on ARM, and this was also solved by updating CLD2 (https://chromiumcodereview.appspot.com/23606017/).
--
Use Finch to compare the performances of CLD1 and CLD2
Add a compile time constant CLD_VERSION, which indicates the version of CLD. If this is not define, Finch test to compare CLD1 and CLD2 is supposed to be used.
By this CL, each platform will have the below status:
Linux: Use both CLD1 and CLD2 (and use Finch).
Mac OS X: Use both CLD1 and CLD2 (and use Finch).
Windows: Use only CLD1 once because now CLD2 can't be compiled on Windows. After we can have CLD2 compiled on Windows, we will use CLD2 and Finch asap.
iOS: Still use only CLD1. (It's because it is hard to use both CLD1 and CLD2 on mobile platform because of the binary size impact.)
Android: Still use only CLD1. (The same reason as iOS)
So some platforms will have two CLD binaries, but this is temporal in the sense that we intend to use Finch only for Dev and Beta channel. Before releasing the stable Chromium version, we decide which version of CLD is adopted, make another CL to use only one CLD, and send a merge request. (Of course, we hope we will be able to adopt CLD2.)
BUG=240647
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=221380
Review URL: https://chromiumcodereview.appspot.com/22867032
git-svn-id: http://src.chromium.org/svn/trunk/src/build@221675 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-09-06 15:03:06 +04:00
'cld_version%': 1,
2014-03-27 20:16:03 +04:00
'cld2_dynamic%': 0,
2012-09-12 16:02:24 +04:00
'enable_printing%': 0,
2012-11-05 21:11:44 +04:00
'enable_session_service%': 0,
2012-09-12 16:02:24 +04:00
'enable_themes%': 0,
2012-09-10 21:46:15 +04:00
'enable_webrtc%': 0,
2012-09-12 16:02:24 +04:00
'notifications%': 0,
2012-07-03 02:10:48 +04:00
'remoting%': 0,
2012-11-05 21:11:44 +04:00
'safe_browsing%': 0,
2013-01-19 07:44:31 +04:00
'enable_managed_users%': 0,
2014-01-30 15:04:29 +04:00
'enable_task_manager%': 0,
2012-07-03 02:10:48 +04:00
}],
2011-10-13 21:18:11 +04:00
# Use GPU accelerated cross process image transport by default
2011-11-22 05:25:27 +04:00
# on linux builds with the Aura window manager
2012-01-28 07:23:01 +04:00
['use_aura==1 and OS=="linux"', {
2011-10-19 18:51:33 +04:00
'ui_compositor_image_transport%': 1,
2011-10-13 21:18:11 +04:00
}, {
2011-10-19 18:51:33 +04:00
'ui_compositor_image_transport%': 0,
2011-10-13 21:18:11 +04:00
}],
2012-01-16 15:45:17 +04:00
2012-12-21 00:45:39 +04:00
# Turn precompiled headers on by default.
['OS=="win" and buildtype!="Official"', {
2012-01-16 15:45:17 +04:00
'chromium_win_pch%': 1
}],
2012-01-17 20:47:34 +04:00
2013-05-07 23:52:10 +04:00
['chromeos==1 or OS=="android" or OS=="ios"', {
2012-01-17 20:47:34 +04:00
'enable_plugin_installation%': 0,
}, {
'enable_plugin_installation%': 1,
}],
2012-02-04 02:44:59 +04:00
2014-04-22 12:29:14 +04:00
# Whether PPAPI is enabled.
2014-01-17 10:52:19 +04:00
['OS=="android" or OS=="ios" or embedded==1', {
2012-12-05 09:24:54 +04:00
'enable_plugins%': 0,
}, {
'enable_plugins%': 1,
}],
2014-04-16 13:50:23 +04:00
# linux_use_bundled_gold: whether to use the gold linker binary checked
# into third_party/binutils. Force this off via GYP_DEFINES when you
# are using a custom toolchain and need to control -B in ldflags.
2014-04-29 05:22:10 +04:00
# Do not use 32-bit gold on 32-bit hosts as it runs out address space
# for component=static_library builds.
2013-03-15 11:27:56 +04:00
['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', {
2014-04-16 13:50:23 +04:00
'linux_use_bundled_gold%': 1,
2012-02-09 23:00:17 +04:00
}, {
2014-04-16 13:50:23 +04:00
'linux_use_bundled_gold%': 0,
}],
# linux_use_bundled_binutils: whether to use the binary binutils
# checked into third_party/binutils. These are not multi-arch so cannot
# be used except on x86 and x86-64 (the only two architectures which
# are currently checke in). Force this off via GYP_DEFINES when you
# are using a custom toolchain and need to control -B in cflags.
['OS=="linux" and (target_arch=="x64")', {
'linux_use_bundled_binutils%': 1,
}, {
'linux_use_bundled_binutils%': 0,
2013-03-26 16:01:34 +04:00
}],
# linux_use_gold_flags: whether to use build flags that rely on gold.
2014-04-30 02:01:49 +04:00
# On by default for x64 Linux.
['OS=="linux" and target_arch=="x64"', {
2013-03-26 16:01:34 +04:00
'linux_use_gold_flags%': 1,
}, {
2012-02-09 07:49:00 +04:00
'linux_use_gold_flags%': 0,
2012-02-04 02:44:59 +04:00
}],
2012-03-16 01:53:10 +04:00
2014-05-01 03:42:32 +04:00
# linux_use_debug_fission: whether to use split DWARF debug info
# files. This can reduce link time significantly, but is incompatible
# with some utilities such as icecc and ccache. Requires gold and
# gcc >= 4.8 or clang.
# http://gcc.gnu.org/wiki/DebugFission
['OS=="linux" and target_arch=="x64"', {
'linux_use_debug_fission%': 1,
}, {
'linux_use_debug_fission%': 0,
}],
2012-11-03 04:02:19 +04:00
['OS=="android" or OS=="ios"', {
2012-06-15 01:28:32 +04:00
'enable_captive_portal_detection%': 0,
}, {
'enable_captive_portal_detection%': 1,
}],
2012-03-22 08:19:12 +04:00
# Enable Skia UI text drawing incrementally on different platforms.
# http://crbug.com/105550
#
# On Aura, this allows per-tile painting to be used in the browser
# compositor.
2013-09-14 05:32:17 +04:00
['OS!="android"', {
2012-03-22 08:19:12 +04:00
'use_canvas_skia%': 1,
}],
2012-07-23 17:36:12 +04:00
2012-08-31 00:15:44 +04:00
['chromeos==1', {
# When building for ChromeOS we dont want Chromium to use libjpeg_turbo.
'use_libjpeg_turbo%': 0,
}],
2012-07-23 17:36:12 +04:00
['OS=="android"', {
# When building as part of the Android system, use system libraries
# where possible to reduce ROM size.
2013-03-12 14:22:36 +04:00
'use_system_libjpeg%': '<(android_webview_build)',
2012-07-23 17:36:12 +04:00
}],
2012-12-05 04:47:12 +04:00
Menu for the OSX app launcher, HoverImageMenuButton in src/ui/base/cocoa/controls.
Adds a drop-down menu to the right of the search entry area on the OSX
app launcher. The menu is shown when clicked, and the button responds to
hover effects.
The menu button uses a new class, HoverImageMenuButton, which is derived
from an NSPopUpButton with minor extensions. Notably, it does not have a
dependency on browser themes, as does MenuButton from
chrome/browser/ui/cocoa. It tracks the mouse hover state and updates
the cell, which extends NSPopUpButtonCell and shows only the image in
the control frame -- no border, bezel, label, or dropdown arrow.
HoverImageMenuButtonCell supports a hover image, which behaves much like
an additional 'alternateImage' from NSButtonCell but for the hover
state, rather than the 'pressed' (or 'lit') state.
The menu shows the currently signed-in user, in a custom view as the
first item. It also (currently) shows menu options for Settings, Help, and
Feedback.
BUG=138633
TEST=Added app_list_unittests AppsSearchBoxMenuTest and
AppsSearchBoxMenuTest and tested manually to ensure the items are
launched correctly. Added ui_unittests HoverImageMenuButtonTest.*
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=206237
Review URL: https://chromiumcodereview.appspot.com/15955003
git-svn-id: http://src.chromium.org/svn/trunk/src/build@206930 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-18 15:09:33 +04:00
# Do not enable the Settings App on ChromeOS.
['enable_app_list==1 and chromeos==0', {
2012-12-05 04:47:12 +04:00
'enable_settings_app%': 1,
}, {
'enable_settings_app%': 0,
}],
2012-12-11 23:49:22 +04:00
['OS=="linux" and target_arch=="arm" and chromeos==0', {
# Set some defaults for arm/linux chrome builds
2014-05-07 22:45:59 +04:00
'use_allocator%': 'none',
2012-12-14 05:53:43 +04:00
# sysroot needs to be an absolute path otherwise it generates
2012-12-11 23:49:22 +04:00
# incorrect results when passed to pkg-config
2012-12-14 05:53:43 +04:00
'sysroot%': '<!(cd <(DEPTH) && pwd -P)/arm-sysroot',
2012-12-11 23:49:22 +04:00
}], # OS=="linux" and target_arch=="arm" and chromeos==0
2013-01-31 11:56:46 +04:00
2013-08-28 09:46:42 +04:00
['OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0', {
2013-05-08 11:20:09 +04:00
'conditions': [
['target_arch=="x64"', {
2013-06-06 03:07:43 +04:00
'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_amd64-sysroot',
2013-05-08 11:20:09 +04:00
}],
['target_arch=="ia32"', {
2013-06-06 03:07:43 +04:00
'sysroot%': '<!(cd <(DEPTH) && pwd -P)/chrome/installer/linux/debian_wheezy_i386-sysroot',
2013-05-08 11:20:09 +04:00
}],
],
2013-08-28 09:46:42 +04:00
}], # OS=="linux" and branding=="Chrome" and buildtype=="Official" and chromeos==0
2013-05-08 11:20:09 +04:00
2013-06-28 22:20:44 +04:00
['OS=="linux" and target_arch=="mipsel"', {
2013-03-06 00:50:07 +04:00
'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot',
2013-03-09 06:51:28 +04:00
'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu-gcc',
2013-01-31 11:56:46 +04:00
}],
2013-03-20 21:00:47 +04:00
# Whether tests targets should be run, archived or just have the
2013-04-10 04:17:01 +04:00
# dependencies verified. All the tests targets have the '_run' suffix,
2013-03-20 21:00:47 +04:00
# e.g. base_unittests_run runs the target base_unittests. The test
2013-10-31 17:34:31 +04:00
# target always calls tools/swarming_client/isolate.py. See the script's
2013-03-20 21:00:47 +04:00
# --help for more information and the valid --mode values. Meant to be
# overriden with GYP_DEFINES.
2013-04-10 04:17:01 +04:00
# TODO(maruel): Remove the conditions as more configurations are
# supported.
# NOTE: The check for disable_nacl==0 and component=="static_library"
# can't be used here because these variables are not defined yet, but it
# is still not supported.
2013-12-19 06:39:08 +04:00
['OS!="ios" and OS!="android" and chromeos==0', {
2013-03-20 21:00:47 +04:00
'test_isolation_mode%': 'check',
}, {
'test_isolation_mode%': 'noop',
}],
2013-12-09 22:13:14 +04:00
# Whether Android ARM or x86 build uses OpenMAX DL FFT.
2014-05-02 21:36:22 +04:00
['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target_arch=="ia32" or target_arch=="x64")', {
# Currently only supported on Android ARMv7+, ia32 or x64.
# When enabled, this will also enable WebAudio support on
# Android ARM, ia32 and x64. Default is enabled. Whether
# WebAudio is actually available depends on runtime settings
# and flags.
2013-04-23 09:47:58 +04:00
'use_openmax_dl_fft%': 1,
2013-04-17 08:00:53 +04:00
}, {
'use_openmax_dl_fft%': 0,
}],
2013-07-10 23:21:05 +04:00
['OS=="win" or OS=="linux"', {
'enable_mdns%' : 1,
2013-08-08 02:09:06 +04:00
}],
# 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"', {
2013-10-20 02:44:19 +04:00
'v8_optimized_debug%': 1,
2013-08-08 02:09:06 +04:00
}, {
2013-10-20 02:44:19 +04:00
'v8_optimized_debug%': 2,
2013-08-08 02:09:06 +04:00
}],
2013-11-14 06:42:43 +04:00
# Disable various features by default on embedded.
['embedded==1', {
'remoting%': 0,
'enable_printing%': 0,
}],
2014-03-20 18:49:41 +04:00
2014-03-20 22:20:00 +04:00
# By default, use ICU data file (icudtl.dat) on all platforms
# except when building Android WebView.
# TODO(jshin): Handle 'use_system_icu' on Linux (Chromium).
2014-05-10 16:16:52 +04:00
# Set the data reduction proxy origin for Android Webview.
2014-03-20 22:20:00 +04:00
['android_webview_build==0', {
'icu_use_data_file_flag%' : 1,
2014-05-10 16:16:52 +04:00
'spdy_proxy_auth_origin%': '',
'data_reduction_proxy_probe_url%': '',
'data_reduction_dev_host%': '',
'data_reduction_fallback_host%': '',
2014-03-20 22:20:00 +04:00
}, {
'icu_use_data_file_flag%' : 0,
2014-05-10 16:16:52 +04:00
'spdy_proxy_auth_origin%': 'https://proxy.googlezip.net:443/',
'data_reduction_proxy_probe_url%': 'http://check.googlezip.net/connect',
'data_reduction_dev_host%': 'http://proxy-dev.googlezip.net:80/',
'data_reduction_fallback_host%': 'http://compress.googlezip.net:80/',
2014-03-20 22:20:00 +04:00
}],
2011-01-07 01:19:30 +03:00
],
2012-09-17 21:01:39 +04:00
2013-04-25 23:35:42 +04:00
# Set this to 1 to enable use of concatenated impulse responses
# for the HRTF panner in WebAudio.
2013-05-03 02:37:26 +04:00
'use_concatenated_impulse_responses': 1,
2013-04-25 23:35:42 +04:00
2013-05-16 15:39:54 +04:00
# 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.
2012-09-17 21:01:39 +04:00
#
2013-05-16 15:39:54 +04:00
# The variable is documented here, but not handled in this file;
# see //google_apis/determine_use_official_keys.gypi for the
# implementation.
2012-09-17 21:01:39 +04:00
#
2013-05-16 15:39:54 +04:00
# Set the variable to 0 to not use the internal file, even when
# it exists in your checkout.
2012-09-17 21:01:39 +04:00
#
2013-05-16 15:39:54 +04:00
# 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
2012-09-17 21:01:39 +04:00
# was explicitly set to 1, i.e. they always use official keys,
# and will fail to build if the internal file is missing.
2013-05-16 15:39:54 +04:00
#
# 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.
2012-09-17 21:01:39 +04:00
# 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%': '',
2009-08-05 23:26:07 +04:00
},
2011-01-07 01:19:30 +03:00
# Copy conditionally-set variables out one scope.
2009-08-05 23:26:07 +04:00
'branding%': '<(branding)',
'buildtype%': '<(buildtype)',
2009-09-19 02:10:27 +04:00
'target_arch%': '<(target_arch)',
2014-02-13 22:17:35 +04:00
'target_subarch%': '<(target_subarch)',
2010-01-12 07:29:59 +03:00
'host_arch%': '<(host_arch)',
2009-09-22 16:37:44 +04:00
'toolkit_views%': '<(toolkit_views)',
2011-10-19 18:51:33 +04:00
'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
2011-08-25 19:39:58 +04:00
'use_aura%': '<(use_aura)',
2012-01-04 02:02:16 +04:00
'use_ash%': '<(use_ash)',
2013-08-08 01:02:31 +04:00
'use_cras%': '<(use_cras)',
2011-10-06 07:30:42 +04:00
'use_openssl%': '<(use_openssl)',
2014-03-28 20:20:32 +04:00
'use_openssl_certs%': '<(use_openssl_certs)',
2011-10-05 18:34:57 +04:00
'use_nss%': '<(use_nss)',
2013-11-20 12:36:40 +04:00
'use_udev%': '<(use_udev)',
2011-11-14 23:15:25 +04:00
'os_bsd%': '<(os_bsd)',
2011-05-12 22:18:34 +04:00
'os_posix%': '<(os_posix)',
2013-11-14 00:44:52 +04:00
'use_dbus%': '<(use_dbus)',
2011-09-21 04:17:19 +04:00
'use_glib%': '<(use_glib)',
2013-05-24 01:44:15 +04:00
'use_pango%': '<(use_pango)',
2013-11-20 00:17:16 +04:00
'use_cairo%': '<(use_cairo)',
2013-05-03 23:19:15 +04:00
'use_ozone%': '<(use_ozone)',
2013-10-22 03:09:48 +04:00
'use_ozone_evdev%': '<(use_ozone_evdev)',
2013-12-13 03:06:50 +04:00
'use_clipboard_aurax11%': '<(use_clipboard_aurax11)',
2014-01-14 01:27:42 +04:00
'use_system_fontconfig%': '<(use_system_fontconfig)',
2013-09-07 07:26:37 +04:00
'desktop_linux%': '<(desktop_linux)',
2011-05-12 22:18:34 +04:00
'use_x11%': '<(use_x11)',
2010-09-16 04:22:21 +04:00
'use_gnome_keyring%': '<(use_gnome_keyring)',
2010-10-01 22:56:11 +04:00
'linux_fpic%': '<(linux_fpic)',
2009-09-22 16:37:44 +04:00
'chromeos%': '<(chromeos)',
2012-02-23 03:08:05 +04:00
'enable_viewport%': '<(enable_viewport)',
2012-04-24 06:43:24 +04:00
'enable_hidpi%': '<(enable_hidpi)',
2011-09-25 04:04:35 +04:00
'use_xi2_mt%':'<(use_xi2_mt)',
2013-02-22 15:17:25 +04:00
'image_loader_extension%': '<(image_loader_extension)',
2009-10-02 23:59:54 +04:00
'fastbuild%': '<(fastbuild)',
2014-04-17 01:11:46 +04:00
'win_z7%': '<(win_z7)',
2011-09-21 00:59:01 +04:00
'dcheck_always_on%': '<(dcheck_always_on)',
2013-07-10 01:47:01 +04:00
'tracing_like_official_build%': '<(tracing_like_official_build)',
2013-04-26 16:06:54 +04:00
'arm_version%': '<(arm_version)',
2010-02-27 00:53:43 +03:00
'arm_neon%': '<(arm_neon)',
2013-04-26 16:06:54 +04:00
'arm_neon_optional%': '<(arm_neon_optional)',
2010-03-04 19:42:23 +03:00
'sysroot%': '<(sysroot)',
2014-02-14 20:58:45 +04:00
'chroot_cmd%': '<(chroot_cmd)',
2011-09-30 08:38:43 +04:00
'system_libdir%': '<(system_libdir)',
2010-06-21 22:06:52 +04:00
'component%': '<(component)',
2014-03-08 02:36:32 +04:00
'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_generation)',
2011-01-07 22:04:43 +03:00
'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)',
2011-02-04 20:38:17 +03:00
'use_third_party_translations%': '<(use_third_party_translations)',
2011-01-11 03:53:18 +03:00
'remoting%': '<(remoting)',
2012-03-06 01:02:40 +04:00
'enable_one_click_signin%': '<(enable_one_click_signin)',
2011-07-20 02:07:48 +04:00
'enable_webrtc%': '<(enable_webrtc)',
2011-09-27 04:15:16 +04:00
'chromium_win_pch%': '<(chromium_win_pch)',
2011-06-01 17:56:25 +04:00
'configuration_policy%': '<(configuration_policy)',
2011-07-11 14:22:56 +04:00
'safe_browsing%': '<(safe_browsing)',
2011-10-14 09:08:22 +04:00
'input_speech%': '<(input_speech)',
2011-10-28 14:41:57 +04:00
'notifications%': '<(notifications)',
2011-02-11 19:43:46 +03:00
'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
2012-12-19 15:09:37 +04:00
'mac_want_real_dsym%': '<(mac_want_real_dsym)',
2011-08-15 18:33:06 +04:00
'asan%': '<(asan)',
2014-01-16 07:25:03 +04:00
'asan_coverage%': '<(asan_coverage)',
2014-04-28 16:11:15 +04:00
'use_sanitizer_options%': '<(use_sanitizer_options)',
2014-02-15 08:49:18 +04:00
'syzyasan%': '<(syzyasan)',
2014-03-19 19:25:54 +04:00
'syzygy_optimize%': '<(syzygy_optimize)',
2013-06-13 19:49:55 +04:00
'lsan%': '<(lsan)',
2013-02-27 00:06:59 +04:00
'msan%': '<(msan)',
2014-01-18 00:24:53 +04:00
'msan_blacklist%': '<(msan_blacklist)',
2012-07-04 11:51:12 +04:00
'tsan%': '<(tsan)',
2012-11-01 14:36:16 +04:00
'tsan_blacklist%': '<(tsan_blacklist)',
2013-11-12 17:41:30 +04:00
'use_instrumented_libraries%': '<(use_instrumented_libraries)',
2013-12-20 17:07:28 +04:00
'use_custom_libcxx%': '<(use_custom_libcxx)',
2012-09-26 09:17:25 +04:00
'clang_type_profiler%': '<(clang_type_profiler)',
2012-05-16 14:04:44 +04:00
'order_profiling%': '<(order_profiling)',
2012-01-25 19:30:46 +04:00
'order_text_section%': '<(order_text_section)',
2012-04-17 21:13:34 +04:00
'enable_extensions%': '<(enable_extensions)',
2012-01-17 20:47:34 +04:00
'enable_plugin_installation%': '<(enable_plugin_installation)',
2012-12-05 09:24:54 +04:00
'enable_plugins%': '<(enable_plugins)',
2012-04-05 22:34:53 +04:00
'enable_session_service%': '<(enable_session_service)',
2012-03-16 00:50:38 +04:00
'enable_themes%': '<(enable_themes)',
2013-02-22 07:37:22 +04:00
'enable_autofill_dialog%': '<(enable_autofill_dialog)',
2012-04-06 02:53:00 +04:00
'enable_background%': '<(enable_background)',
2014-04-16 13:50:23 +04:00
'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
2012-02-09 07:49:00 +04:00
'linux_use_gold_flags%': '<(linux_use_gold_flags)',
2014-05-01 03:42:32 +04:00
'linux_use_debug_fission%': '<(linux_use_debug_fission)',
2012-03-18 07:09:50 +04:00
'use_canvas_skia%': '<(use_canvas_skia)',
2012-05-15 18:56:33 +04:00
'test_isolation_mode%': '<(test_isolation_mode)',
'test_isolation_outdir%': '<(test_isolation_outdir)',
2013-03-20 21:00:47 +04:00
'test_isolation_fail_on_missing': '<(test_isolation_fail_on_missing)',
2012-06-09 10:04:02 +04:00
'enable_printing%': '<(enable_printing)',
2013-07-31 11:48:53 +04:00
'enable_spellcheck%': '<(enable_spellcheck)',
2012-12-08 02:44:40 +04:00
'enable_google_now%': '<(enable_google_now)',
Suppression the problems on the build bots: There were two reasons why that CL broke the build tree. One is the size bloating, which was solved by https://codereview.chromium.org/23460018. The other is compiling error on ARM, and this was also solved by updating CLD2 (https://chromiumcodereview.appspot.com/23606017/).
--
Use Finch to compare the performances of CLD1 and CLD2
Add a compile time constant CLD_VERSION, which indicates the version of CLD. If this is not define, Finch test to compare CLD1 and CLD2 is supposed to be used.
By this CL, each platform will have the below status:
Linux: Use both CLD1 and CLD2 (and use Finch).
Mac OS X: Use both CLD1 and CLD2 (and use Finch).
Windows: Use only CLD1 once because now CLD2 can't be compiled on Windows. After we can have CLD2 compiled on Windows, we will use CLD2 and Finch asap.
iOS: Still use only CLD1. (It's because it is hard to use both CLD1 and CLD2 on mobile platform because of the binary size impact.)
Android: Still use only CLD1. (The same reason as iOS)
So some platforms will have two CLD binaries, but this is temporal in the sense that we intend to use Finch only for Dev and Beta channel. Before releasing the stable Chromium version, we decide which version of CLD is adopted, make another CL to use only one CLD, and send a merge request. (Of course, we hope we will be able to adopt CLD2.)
BUG=240647
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=221380
Review URL: https://chromiumcodereview.appspot.com/22867032
git-svn-id: http://src.chromium.org/svn/trunk/src/build@221675 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-09-06 15:03:06 +04:00
'cld_version%': '<(cld_version)',
2014-03-19 16:10:59 +04:00
'cld2_table_size%': '<(cld2_table_size)',
2014-03-27 20:16:03 +04:00
'cld2_dynamic%': '<(cld2_dynamic)',
2014-04-30 15:27:19 +04:00
'cld2_is_component%': '<(cld2_is_component)',
2012-06-15 01:28:32 +04:00
'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
2014-05-07 19:05:29 +04:00
'disable_file_support%': '<(disable_file_support)',
2012-08-30 17:18:11 +04:00
'disable_ftp_support%': '<(disable_ftp_support)',
2014-05-07 18:05:46 +04:00
'use_icu_alternatives_on_android%': '<(use_icu_alternatives_on_android)',
2012-04-06 05:11:02 +04:00
'enable_task_manager%': '<(enable_task_manager)',
2012-06-27 23:14:06 +04:00
'sas_dll_path%': '<(sas_dll_path)',
2012-04-12 13:50:12 +04:00
'wix_path%': '<(wix_path)',
2012-08-30 21:36:44 +04:00
'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
2012-07-23 17:36:12 +04:00
'use_system_libjpeg%': '<(use_system_libjpeg)',
2013-03-12 14:22:36 +04:00
'android_webview_build%': '<(android_webview_build)',
2014-03-20 22:20:00 +04:00
'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
2013-04-02 20:55:46 +04:00
'gyp_managed_install%': 0,
2013-06-25 22:42:07 +04:00
'create_standalone_apk%': 1,
2012-11-15 07:58:16 +04:00
'enable_app_list%': '<(enable_app_list)',
2012-11-21 02:36:07 +04:00
'use_default_render_theme%': '<(use_default_render_theme)',
2012-11-15 07:58:16 +04:00
'enable_settings_app%': '<(enable_settings_app)',
2012-09-17 21:01:39 +04:00
'google_api_key%': '<(google_api_key)',
'google_default_client_id%': '<(google_default_client_id)',
'google_default_client_secret%': '<(google_default_client_secret)',
2013-01-19 07:44:31 +04:00
'enable_managed_users%': '<(enable_managed_users)',
2013-07-15 17:28:43 +04:00
'native_discardable_memory%': '<(native_discardable_memory)',
'native_memory_pressure_signals%': '<(native_memory_pressure_signals)',
2013-11-05 00:27:29 +04:00
'data_reduction_fallback_host%': '<(data_reduction_fallback_host)',
2014-01-14 15:17:30 +04:00
'data_reduction_dev_host%': '<(data_reduction_dev_host)',
2013-02-21 21:52:29 +04:00
'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)',
'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
2013-05-28 03:18:25 +04:00
'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
2013-10-08 04:49:43 +04:00
'data_reduction_proxy_probe_url%': '<(data_reduction_proxy_probe_url)',
2013-07-10 23:21:05 +04:00
'enable_mdns%' : '<(enable_mdns)',
2014-03-21 04:58:56 +04:00
'enable_service_discovery%' : '<(enable_service_discovery)',
2014-02-14 20:40:34 +04:00
'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)',
2013-10-20 02:44:19 +04:00
'v8_optimized_debug%': '<(v8_optimized_debug)',
2013-08-24 03:33:41 +04:00
'proprietary_codecs%': '<(proprietary_codecs)',
2013-12-04 11:32:41 +04:00
'use_goma%': '<(use_goma)',
'gomadir%': '<(gomadir)',
2014-05-10 03:18:16 +04:00
'video_hole%': '<(video_hole)',
2012-03-07 18:39:56 +04:00
2012-11-01 03:29:37 +04:00
# Use system protobuf instead of bundled one.
'use_system_protobuf%': 0,
2011-10-13 00:37:36 +04:00
# Use system yasm instead of bundled one.
'use_system_yasm%': 0,
2013-04-26 15:18:16 +04:00
# Use system ICU instead of bundled one.
'use_system_icu%' : 0,
2012-02-29 04:40:36 +04:00
# 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,
2009-11-24 01:39:32 +03:00
# 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',
2009-03-12 22:09:24 +03:00
# 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,
2012-03-27 02:22:15 +04:00
# The default value for mac_strip in target_defaults. This cannot be
# set there, per the comment about variable% in a target_defaults.
2013-11-14 10:22:29 +04:00
'mac_strip_release%': 0,
2012-03-27 02:22:15 +04:00
2013-08-22 04:08:31 +04:00
# Set to 1 to enable java code coverage. Instruments classes during build
# to produce .ec files during runtime.
'emma_coverage%': 0,
2013-10-05 02:02:44 +04:00
# 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%': '',
2013-12-11 07:02:10 +04:00
# Set to 1 to enable running Android lint on java/class files.
2014-01-11 02:42:57 +04:00
'android_lint%': 0,
2013-12-11 07:02:10 +04:00
2009-12-23 02:28:15 +03:00
# Although base/allocator lets you select a heap library via an
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
# 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.
2010-06-21 22:06:52 +04:00
'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt
2009-09-12 02:32:11 +04:00
2009-04-14 05:39:12 +04:00
# 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,
2009-05-07 02:38:23 +04:00
2009-08-26 04:14:27 +04:00
# 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.
2009-07-04 02:00:19 +04:00
'msvs_use_common_linker_extras%': 1,
2009-06-02 11:46:24 +04:00
# 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',
2011-01-11 23:45:36 +03:00
# Needed for some of the largest modules.
'msvs_debug_link_nonincremental%': '1',
2012-08-16 22:57:10 +04:00
# Turns on Use Library Dependency Inputs for linking chrome.dll on Windows
2011-08-18 22:30:06 +04:00
# to get incremental linking to be faster in debug builds.
2012-08-07 01:49:26 +04:00
'incremental_chrome_dll%': '0',
2011-08-18 22:30:06 +04:00
2013-07-19 00:37:15 +04:00
# Experimental setting to break chrome.dll into multiple pieces based on
# process type.
'chrome_multiple_dll%': '0',
2013-05-08 21:51:02 +04:00
2014-03-14 20:48:30 +04:00
# Experimental setting to optimize Chrome's DLLs with PGO.
'chrome_pgo_phase%': '0',
2012-08-25 00:58:24 +04:00
# 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.
2014-04-17 20:50:56 +04:00
'win_third_party_warn_as_error%': 'true',
2012-08-25 00:58:24 +04:00
2012-04-19 07:40:08 +04:00
# Clang stuff.
'clang%': '<(clang)',
2011-10-21 01:52:24 +04:00
'make_clang_dir%': 'third_party/llvm-build/Release+Asserts',
2010-09-18 04:09:15 +04:00
2014-03-14 00:46:01 +04:00
# Control which version of clang to use when building for iOS. If set to
# '1', uses the version of clang that ships with Xcode. If set to '0', uses
# the version of clang that ships with the Chromium source. This variable
# is automatically set to '1' when using the Xcode generator.
2014-02-13 22:17:35 +04:00
'clang_xcode%': 0,
2011-01-28 05:57:59 +03:00
# 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:
2011-02-03 23:46:42 +03:00
# GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dylib clang_add_plugin=print-fns' gclient runhooks
2011-01-28 05:57:59 +03:00
'clang_load%': '',
'clang_add_plugin%': '',
2013-12-29 01:27:44 +04:00
# Tell ld64 to write map files describing binary layout. Useful
# for looking at what contributes to binary size, e.g. with
# https://github.com/nico/bloat
'mac_write_linker_maps%': 0,
2011-09-21 00:35:01 +04:00
# The default type of gtest.
'gtest_target_type%': 'executable',
2011-02-02 02:35:25 +03:00
# Enable sampling based profiler.
# See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
'profiling%': '0',
2013-06-23 18:17:58 +04:00
# Profile without optimizing out stack frames when profiling==1.
'profiling_full_stack_frames%': '0',
2011-02-02 02:35:25 +03:00
2010-08-25 04:22:01 +04:00
# And if we want to dump symbols for Breakpad-enabled builds.
2013-11-14 09:30:31 +04:00
'linux_dump_symbols%': 0,
2010-08-25 04:22:01 +04:00
# And if we want to strip the binary after dumping symbols.
2009-10-02 03:29:03 +04:00
'linux_strip_binary%': 0,
2010-09-16 02:24:49 +04:00
# Strip the test binaries needed for Linux reliability tests.
'linux_strip_reliability_tests%': 0,
2014-01-17 10:02:51 +04:00
# If we want stack unwind support for backtrace().
'debug_unwind_tables%': 1,
'release_unwind_tables%': 1,
2009-10-02 03:29:03 +04:00
2014-04-10 18:01:57 +04:00
# Override where to find binutils
'binutils_version%': 0,
'binutils_dir%': '',
2010-06-16 22:39:53 +04:00
# Enable TCMalloc.
2014-05-07 22:45:59 +04:00
# Default of 'use_allocator' is set to 'none' if OS=='android' later.
'use_allocator%': 'tcmalloc',
2009-11-11 22:24:24 +03:00
2010-06-10 09:45:01 +04:00
# Set to 1 to link against libgnome-keyring instead of using dlopen().
'linux_link_gnome_keyring%': 0,
2011-05-17 00:04:35 +04:00
# Set to 1 to link against gsettings APIs instead of using dlopen().
'linux_link_gsettings%': 0,
2010-06-10 09:45:01 +04:00
2013-04-27 08:10:26 +04:00
# Default arch variant for MIPS.
2014-02-02 20:10:28 +04:00
'mips_arch_variant%': 'mips32r1',
2013-04-27 08:10:26 +04:00
2013-03-23 20:17:08 +04:00
# Enable use of OpenMAX DL FFT routines.
'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
2013-04-17 19:26:34 +04:00
2010-04-17 02:40:37 +04:00
# Enable new NPDevice API.
'enable_new_npdevice_api%': 0,
2010-04-29 04:18:50 +04:00
# Enable EGLImage support in OpenMAX
2011-02-04 23:34:14 +03:00
'enable_eglimage%': 1,
2010-04-29 04:18:50 +04:00
2011-01-07 01:19:30 +03:00
# .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,
2014-04-07 12:17:25 +04:00
# Disable fatal linker warnings, similarly to how we make it possible
# to disable -Werror (e.g. for different toolchain versions).
'disable_fatal_linker_warnings%': 0,
2012-02-09 07:49:00 +04:00
'release_valgrind_build%': 0,
2011-11-09 22:46:07 +04:00
# TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
'enable_wexit_time_destructors%': 0,
2014-02-11 01:14:46 +04:00
# Build libpeerconnection as a static library by default.
'libpeer_target_type%': 'static_library',
2011-01-07 01:19:30 +03:00
# Set to 1 to compile with the built in pdf viewer.
'internal_pdf%': 0,
2012-07-24 05:27:17 +04:00
# Set to 1 to compile with the OpenGL ES 2.0 conformance tests.
'internal_gles2_conform_tests%': 0,
2013-11-20 02:04:11 +04:00
# Set to 1 to compile the filter fuzzer.
'internal_filter_fuzzer%': 0,
2011-01-07 01:19:30 +03:00
# 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',
2013-03-15 15:15:41 +04:00
'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
2011-01-07 01:19:30 +03:00
'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk',
'vi', 'zh-CN', 'zh-TW',
],
2011-07-24 13:29:19 +04:00
# 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',
],
2011-01-07 22:04:43 +03:00
'grit_defines': [],
2011-03-28 11:58:51 +04:00
# 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,
2011-10-25 03:16:18 +04:00
# The Java Bridge is not compiled in by default.
'java_bridge%': 0,
2012-06-30 02:12:20 +04:00
# Code signing for iOS binaries. The bots need to be able to disable this.
'chromium_ios_signing%': 1,
2011-12-14 20:32:07 +04:00
# 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,
2011-12-23 15:59:35 +04:00
# Disable Dart by default.
'enable_dart%': 0,
2012-04-03 20:19:26 +04:00
# Native Client is enabled by default.
'disable_nacl%': 0,
2013-03-08 02:07:33 +04:00
# Portable Native Client is enabled by default.
'disable_pnacl%': 0,
2012-08-21 08:39:00 +04:00
# 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,
2012-10-06 03:55:50 +04:00
# 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,
[Android] Add an action to check/record attached devices
When doing a gyp_managed_install, we install APKs to the attached
device. Currently this can fail in many ways (no device attached,
multiple devices attached, device offline, device doesn't have root,
etc.). In addition, we need to detect changes to the attached device
(particularly when the device is switched, when an APK is
uninstalled/updated).
The current approach is to check all this information in the action
interacting with the device. This means that when there is some
problem we print the same warning messages for every APK that is built,
and, in some cases, multiple times for each APK. Also, we have to run
every install/push action every build because we detect changes to the
attached device in that action.
This change creates a new build action, "get device configurations".
This action inspects the attached devices, filters out offline devices,
filters out devices without root, and then writes a configuration
file with the id+metadata for the first non-filtered device. This
configuration is then used by each of the build steps that interacts
with the device. This consolidates all the device checking to a single
place, and the build actions don't need to do any checking. In
addition, to detect changes in the attached device, we only need to run
this single action every build and the install/push actions will only
change when the device/metadata changes.
Also, with this change we can now gracefully handle the case where
multiple devices are attached (currently just write the configuration
for the first valid device and install to that one).
Review URL: https://chromiumcodereview.appspot.com/16831013
git-svn-id: http://src.chromium.org/svn/trunk/src/build@209582 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-07-02 05:52:33 +04:00
# Contains data about the attached devices for gyp_managed_install.
'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
2014-04-17 01:52:49 +04:00
'sas_dll_exists': '<!pymod_do_main(dir_exists "<(sas_dll_path)")',
'wix_exists': '<!pymod_do_main(dir_exists "<(wix_path)")',
2012-04-12 13:50:12 +04:00
2012-07-07 02:47:56 +04:00
'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
2012-07-03 01:48:05 +04:00
2012-12-08 10:56:11 +04:00
# Whether we are using the rlz library or not. Platforms like Android send
# rlz codes for searches but do not use the library.
2012-10-29 22:17:22 +04:00
'enable_rlz%': 0,
2013-07-28 12:59:54 +04:00
# Turns on the i18n support in V8.
'v8_enable_i18n_support': 1,
2014-01-17 18:17:40 +04:00
# Compile d8 for the host toolset.
'v8_toolset_for_d8': 'host',
2014-04-05 01:09:16 +04:00
# Compiles v8 without its platform library.
'v8_use_default_platform': 0,
2013-08-12 17:56:43 +04:00
# Use the chromium skia by default.
'use_system_skia%': '0',
2013-09-11 15:48:22 +04:00
# Use brlapi from brltty for braille display support.
'use_brlapi%': 0,
2013-09-12 17:29:41 +04:00
# Relative path to icu.gyp from this file.
'icu_gyp_path': '../third_party/icu/icu.gyp',
2013-11-28 20:05:14 +04:00
# IPC fuzzer is disabled by default.
'enable_ipc_fuzzer%': 0,
2013-12-04 08:37:06 +04:00
2013-12-14 02:10:27 +04:00
# Force disable libstdc++ debug mode.
'disable_glibcxx_debug%': 0,
2014-04-01 05:50:29 +04:00
# Set to 1 to compile with MSE support for MPEG2 TS
'enable_mpeg2ts_stream_parser%': 0,
2014-04-16 23:04:30 +04:00
# Support ChromeOS touchpad gestures with ozone.
'use_evdev_gestures%': 0,
2014-04-01 05:50:29 +04:00
2009-08-01 03:33:55 +04:00
'conditions': [
2014-03-19 19:25:54 +04:00
# Enable the Syzygy optimization step for the official builds.
['OS=="win" and buildtype=="Official" and syzyasan!=1', {
'syzygy_optimize%': 1,
}, {
'syzygy_optimize%': 0,
}],
2014-04-10 00:20:45 +04:00
# Get binutils version so we can enable debug fission if we can.
['os_posix==1 and OS!="mac" and OS!="ios"', {
'conditions': [
# compiler_version doesn't work with clang
# TODO(mithro): Land https://codereview.chromium.org/199793014/ so
# compiler_version works with clang.
# TODO(glider): set clang to 1 earlier for ASan and TSan builds so
# that it takes effect here.
['clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0', {
2014-04-23 12:20:16 +04:00
'binutils_version%': '<!pymod_do_main(compiler_version target assembler)',
2014-04-10 00:20:45 +04:00
}],
# On Android we know the binutils version in the toolchain.
['OS=="android"', {
'binutils_version%': 222,
}],
2014-04-16 13:50:23 +04:00
['host_arch=="x64"', {
'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
}],
['host_arch=="ia32"', {
'binutils_dir%': 'third_party/binutils/Linux_ia32/Release/bin',
}],
2014-04-10 00:20:45 +04:00
# Our version of binutils in third_party/binutils
2014-04-16 13:50:23 +04:00
['linux_use_bundled_binutils==1', {
2014-04-10 00:20:45 +04:00
'binutils_version%': 224,
}],
],
}, {
'binutils_version%': 0,
}],
2013-04-27 05:53:19 +04:00
# The version of GCC in use, set later in platforms that use GCC and have
# not explicitly chosen to build with clang. Currently, this means all
# platforms except Windows, Mac and iOS.
# TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
# it takes effect here.
2013-06-13 19:49:55 +04:00
['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsan==0 and tsan==0 and msan==0', {
2014-04-24 02:14:01 +04:00
'host_gcc_version%': '<!pymod_do_main(compiler_version host compiler)',
2014-01-14 04:14:49 +04:00
'conditions': [
['OS=="android"', {
2014-04-23 12:20:16 +04:00
# We directly set the gcc versions since we know what we use.
2014-03-18 21:43:48 +04:00
'conditions': [
2014-03-20 22:35:49 +04:00
['target_arch=="x64" or target_arch=="arm64"', {
2014-03-18 21:43:48 +04:00
'gcc_version%': 48,
}, {
'gcc_version%': 46,
}],
],
2014-01-14 04:14:49 +04:00
}, {
2014-04-23 12:20:16 +04:00
'gcc_version%': '<!pymod_do_main(compiler_version target compiler)',
2014-01-14 04:14:49 +04:00
}],
],
2013-04-27 05:53:19 +04:00
}, {
2014-04-23 12:20:16 +04:00
'host_gcc_version%': 0,
2013-04-27 05:53:19 +04:00
'gcc_version%': 0,
}],
2014-04-17 01:52:49 +04:00
['OS=="win" and "<!pymod_do_main(dir_exists <(windows_sdk_default_path))"=="True"', {
2012-07-07 02:47:56 +04:00
'windows_sdk_path%': '<(windows_sdk_default_path)',
}, {
'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0',
}],
2014-04-17 01:52:49 +04:00
['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"=="True"', {
2012-07-07 02:47:56 +04:00
'directx_sdk_path%': '<(directx_sdk_default_path)',
}, {
'directx_sdk_path%': '$(DXSDK_DIR)',
}],
2012-10-18 11:11:26 +04:00
['OS=="win"', {
'windows_driver_kit_path%': '$(WDK_DIR)',
}],
2012-06-30 02:12:20 +04:00
['os_posix==1 and OS!="mac" and OS!="ios"', {
2009-08-26 04:14:27 +04:00
'conditions': [
2013-01-31 11:56:46 +04:00
['target_arch=="mipsel"', {
'werror%': '',
'disable_nacl%': 1,
'nacl_untrusted_build%': 0,
2014-05-07 22:45:59 +04:00
'use_allocator%': 'none',
2013-06-28 22:20:44 +04:00
}],
['OS=="linux" and target_arch=="mipsel"', {
2013-01-31 11:56:46 +04:00
'sysroot%': '<(sysroot)',
2013-03-09 06:51:28 +04:00
'CXX%': '<(CXX)',
2013-01-31 11:56:46 +04:00
}],
2009-10-01 22:54:57 +04:00
# All Chrome builds have breakpad symbols, but only process the
# symbols from official builds.
2010-08-31 23:44:08 +04:00
['(branding=="Chrome" and buildtype=="Official")', {
2009-10-01 22:54:57 +04:00
'linux_dump_symbols%': 1,
2014-01-17 10:02:51 +04:00
# Omit unwind support in official release builds to save space. We
# can use breakpad for these builds.
'release_unwind_tables%': 0,
2014-04-29 05:22:10 +04:00
'conditions': [
# For official builds, use a 64-bit linker to avoid running out
# of address space. The buildbots should have a 64-bit kernel
# and a 64-bit libc installed.
['host_arch=="ia32" and target_arch=="ia32"', {
'linux_use_bundled_gold%': '1',
'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
}],
],
2009-10-01 22:54:57 +04:00
}],
2009-08-26 04:14:27 +04:00
],
2012-06-30 02:12:20 +04:00
}], # os_posix==1 and OS!="mac" and OS!="ios"
2012-07-03 02:10:48 +04:00
['OS=="ios"', {
'disable_nacl%': 1,
2012-11-03 04:02:19 +04:00
'enable_background%': 0,
2014-03-20 22:20:00 +04:00
'icu_use_data_file_flag%': 1,
2014-03-07 02:46:45 +04:00
'input_speech%': 0,
2012-07-17 14:41:13 +04:00
'use_system_libxml%': 1,
2012-07-24 22:03:47 +04:00
'use_system_sqlite%': 1,
2013-03-15 15:15:41 +04:00
'locales==': [
2013-09-04 02:16:39 +04:00
'ar', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es', 'es-MX',
'fi', 'fr', 'he', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms', 'nb',
'nl', 'pl', 'pt', 'pt-PT', 'ro', 'ru', 'sk', 'sv', 'th', 'tr', 'uk',
'vi', 'zh-CN', 'zh-TW',
2013-03-15 15:15:41 +04:00
],
2012-08-20 20:28:12 +04:00
# The Mac SDK is set for iOS builds and passed through to Mac
# sub-builds. This allows the Mac sub-build SDK in an iOS build to be
# overridden from the command line the same way it is for a Mac build.
'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)',
2012-10-06 04:46:29 +04:00
2013-08-06 21:36:11 +04:00
# iOS SDK and deployment target support. The |ios_sdk| value is left
# blank so that when it is set in the project files it will be the
# "current" iOS SDK. Forcing a specific SDK even if it is "current"
# causes Xcode to spit out a warning for every single project file for
# not using the "current" SDK.
2012-10-06 04:46:29 +04:00
'ios_sdk%': '',
'ios_sdk_path%': '',
2013-08-06 21:36:11 +04:00
'ios_deployment_target%': '6.0',
2012-10-09 14:50:32 +04:00
'conditions': [
# ios_product_name is set to the name of the .app bundle as it should
# appear on disk.
['branding=="Chrome"', {
'ios_product_name%': 'Chrome',
}, { # else: branding!="Chrome"
'ios_product_name%': 'Chromium',
}],
['branding=="Chrome" and buildtype=="Official"', {
'ios_breakpad%': 1,
}, { # else: branding!="Chrome" or buildtype!="Official"
'ios_breakpad%': 0,
}],
],
}], # OS=="ios"
2011-09-21 00:35:01 +04:00
['OS=="android"', {
# Location of Android NDK.
'variables': {
'variables': {
android envsetup: Stop honoring --target-arch parameter.
Most people don't use this parameter and get arm binaries. This is
still the default, so this change shouldn't affect most people.
Folks should instead pass -Dtarget_arch to gyp. (Or, soon, envsetup will stop
clobbering GYP_DEFINES, then you can just add target_arch to your GYP_DEFINES.)
Note that in gyp land, 'mips' is called 'mipsel' and 'x86' is called 'ia32'.
'arm' stays 'arm'.
So for example, instead of running
. build/android/envsetup.sh --target-arch=mips
android_gyp
you'd run
. build/android/envsetup.sh
android_gyp -Dtarget_arch=mipsel
I updated the bots I was able to find to pass the -D flag in addition to
--target-arch. After this CL here is in, I'll update the bots to stop passing
--target-arch, and then I'll make --target-arch a hard error in this script for
a while, to make sure nobody still uses it.
BUG=330631,34476
R=torne@chromium.org
TBR=yfriedman
Review URL: https://codereview.chromium.org/171903002
git-svn-id: http://src.chromium.org/svn/trunk/src/build@252034 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2014-02-19 22:20:22 +04:00
# Unfortunately we have to use absolute paths to the SDK/NDK because
# they're passed to ant which uses a different relative path from
# gyp.
'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/ndk/',
2014-04-10 17:42:46 +04:00
'android_ndk_experimental_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/ndk_experimental/',
android envsetup: Stop honoring --target-arch parameter.
Most people don't use this parameter and get arm binaries. This is
still the default, so this change shouldn't affect most people.
Folks should instead pass -Dtarget_arch to gyp. (Or, soon, envsetup will stop
clobbering GYP_DEFINES, then you can just add target_arch to your GYP_DEFINES.)
Note that in gyp land, 'mips' is called 'mipsel' and 'x86' is called 'ia32'.
'arm' stays 'arm'.
So for example, instead of running
. build/android/envsetup.sh --target-arch=mips
android_gyp
you'd run
. build/android/envsetup.sh
android_gyp -Dtarget_arch=mipsel
I updated the bots I was able to find to pass the -D flag in addition to
--target-arch. After this CL here is in, I'll update the bots to stop passing
--target-arch, and then I'll make --target-arch a hard error in this script for
a while, to make sure nobody still uses it.
BUG=330631,34476
R=torne@chromium.org
TBR=yfriedman
Review URL: https://codereview.chromium.org/171903002
git-svn-id: http://src.chromium.org/svn/trunk/src/build@252034 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2014-02-19 22:20:22 +04:00
'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_tools/sdk/',
'android_host_arch%': '<!(uname -m)',
# Android API-level of the SDK used for compilation.
'android_sdk_version%': '19',
'android_sdk_build_tools_version%': '19.0.0',
'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
2011-09-21 00:35:01 +04:00
},
2013-01-16 21:45:57 +04:00
# Copy conditionally-set variables out one scope.
2011-09-21 00:35:01 +04:00
'android_ndk_root%': '<(android_ndk_root)',
2013-01-16 21:45:57 +04:00
'android_sdk_root%': '<(android_sdk_root)',
2013-03-18 19:05:04 +04:00
'android_sdk_version%': '<(android_sdk_version)',
2013-04-03 22:20:22 +04:00
'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport',
2014-02-14 01:48:25 +04:00
'host_os%': '<(host_os)',
2013-01-16 21:45:57 +04:00
2013-03-18 19:05:04 +04:00
'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_version)',
2014-02-19 04:52:52 +04:00
# Android SDK build tools (e.g. dx, aapt, aidl)
'android_sdk_tools%': '<(android_sdk_root)/build-tools/<(android_sdk_build_tools_version)',
2013-01-16 21:45:57 +04:00
2013-03-06 00:54:33 +04:00
# Android API level 14 is ICS (Android 4.0) which is the minimum
# platform requirement for Chrome on Android, we use it for native
# code compilation.
2013-01-16 21:45:57 +04:00
'conditions': [
['target_arch == "ia32"', {
'android_app_abi%': 'x86',
'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-x86/gdbserver/gdbserver',
2013-03-06 00:54:33 +04:00
'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-x86',
2014-04-29 12:54:16 +04:00
'android_ndk_lib_dir%': 'usr/lib',
2013-01-16 21:45:57 +04:00
'android_toolchain%': '<(android_ndk_root)/toolchains/x86-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin',
}],
2014-03-18 21:43:48 +04:00
['target_arch == "x64"', {
'android_app_abi%': 'x86_64',
2014-04-10 17:42:46 +04:00
'android_gdbserver%': '<(android_ndk_experimental_root)/prebuilt/android-x86_64/gdbserver/gdbserver',
'android_ndk_sysroot%': '<(android_ndk_experimental_root)/platforms/android-20/arch-x86_64',
2014-04-29 12:54:16 +04:00
'android_ndk_lib_dir%': 'usr/lib64',
2014-04-10 17:42:46 +04:00
'android_toolchain%': '<(android_ndk_experimental_root)/toolchains/x86_64-4.8/prebuilt/<(host_os)-<(android_host_arch)/bin',
'android_stlport_root': '<(android_ndk_experimental_root)/sources/cxx-stl/stlport',
2014-03-18 21:43:48 +04:00
}],
2013-01-16 21:45:57 +04:00
['target_arch=="arm"', {
'conditions': [
2013-04-26 16:06:54 +04:00
['arm_version<7', {
2013-01-16 21:45:57 +04:00
'android_app_abi%': 'armeabi',
}, {
'android_app_abi%': 'armeabi-v7a',
}],
],
'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-arm/gdbserver/gdbserver',
2013-03-06 00:54:33 +04:00
'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-arm',
2014-04-29 12:54:16 +04:00
'android_ndk_lib_dir%': 'usr/lib',
2013-01-16 21:45:57 +04:00
'android_toolchain%': '<(android_ndk_root)/toolchains/arm-linux-androideabi-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin',
}],
2014-03-20 22:35:49 +04:00
['target_arch == "arm64"', {
2014-03-25 08:01:00 +04:00
'android_app_abi%': 'arm64-v8a',
2014-04-10 17:42:46 +04:00
'android_gdbserver%': '<(android_ndk_experimental_root)/prebuilt/android-arm64/gdbserver/gdbserver',
'android_ndk_sysroot%': '<(android_ndk_experimental_root)/platforms/android-20/arch-arm64',
2014-04-29 12:54:16 +04:00
'android_ndk_lib_dir%': 'usr/lib',
2014-04-24 14:15:33 +04:00
'android_toolchain%': '<(android_ndk_experimental_root)/toolchains/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
2014-04-10 17:42:46 +04:00
'android_stlport_root': '<(android_ndk_experimental_root)/sources/cxx-stl/stlport',
2014-03-20 22:35:49 +04:00
}],
2013-04-27 08:10:26 +04:00
['target_arch == "mipsel"', {
'android_app_abi%': 'mips',
'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-mips/gdbserver/gdbserver',
'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/arch-mips',
2014-04-29 12:54:16 +04:00
'android_ndk_lib_dir%': 'usr/lib',
2013-05-10 20:40:47 +04:00
'android_toolchain%': '<(android_ndk_root)/toolchains/mipsel-linux-android-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin',
2013-04-27 08:10:26 +04:00
}],
2013-01-16 21:45:57 +04:00
],
2011-09-21 00:35:01 +04:00
},
2013-01-16 21:45:57 +04:00
# Copy conditionally-set variables out one scope.
'android_app_abi%': '<(android_app_abi)',
'android_gdbserver%': '<(android_gdbserver)',
2011-09-21 00:35:01 +04:00
'android_ndk_root%': '<(android_ndk_root)',
2014-03-24 08:07:34 +04:00
'android_ndk_sysroot%': '<(android_ndk_sysroot)',
2013-01-16 21:45:57 +04:00
'android_sdk_root%': '<(android_sdk_root)',
'android_sdk_version%': '<(android_sdk_version)',
'android_toolchain%': '<(android_toolchain)',
2011-09-21 00:35:01 +04:00
'android_ndk_include': '<(android_ndk_sysroot)/usr/include',
2014-04-29 12:54:16 +04:00
'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
2013-08-09 10:48:18 +04:00
'android_sdk_tools%': '<(android_sdk_tools)',
2013-03-18 19:05:04 +04:00
'android_sdk%': '<(android_sdk)',
'android_sdk_jar%': '<(android_sdk)/android.jar',
2011-09-21 00:35:01 +04:00
2013-04-03 22:20:22 +04:00
'android_stlport_root': '<(android_stlport_root)',
'android_stlport_include': '<(android_stlport_root)/stlport',
'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_abi)',
2014-02-14 01:48:25 +04:00
'host_os%': '<(host_os)',
2013-04-03 22:20:22 +04:00
2012-08-16 17:52:04 +04:00
# Location of the "strip" binary, used by both gyp and scripts.
'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
2013-04-03 22:20:22 +04:00
# Location of the "readelf" binary.
'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
2013-02-22 04:37:33 +04:00
# Determines whether we should optimize JNI generation at the cost of
# breaking assumptions in the build system that when inputs have changed
# the outputs should always change as well. This is meant purely for
# developer builds, to avoid spurious re-linking of native files.
'optimize_jni_generation%': 0,
2011-09-21 00:35:01 +04:00
# Always uses openssl.
'use_openssl%': 1,
2014-03-28 20:20:32 +04:00
'use_openssl_certs%': 1,
2011-09-21 00:35:01 +04:00
'proprietary_codecs%': '<(proprietary_codecs)',
2012-12-01 07:39:07 +04:00
'safe_browsing%': 2,
2011-10-14 09:08:22 +04:00
'input_speech%': 0,
2011-10-25 03:16:18 +04:00
'java_bridge%': 1,
2012-08-02 15:03:58 +04:00
'build_ffmpegsumo%': 0,
2014-05-07 22:45:59 +04:00
'use_allocator%': 'none',
2012-06-09 10:04:02 +04:00
2012-07-18 00:45:48 +04:00
# Disable Native Client.
'disable_nacl%': 1,
2012-04-12 20:14:31 +04:00
# Android does not support background apps.
2012-04-06 02:53:00 +04:00
'enable_background%': 0,
2012-03-01 04:29:11 +04:00
2012-04-05 22:34:53 +04:00
# Sessions are store separately in the Java side.
'enable_session_service%': 0,
2012-07-18 00:45:48 +04:00
'p2p_apis%' : 0,
2012-08-02 15:03:58 +04:00
'gtest_target_type%': 'shared_library',
2011-09-21 00:35:01 +04:00
# Uses system APIs for decoding audio and video.
'use_libffmpeg%': '0',
2012-07-23 17:36:12 +04:00
# When building as part of the Android system, use system libraries
# where possible to reduce ROM size.
# TODO(steveblock): Investigate using the system version of sqlite.
2013-03-12 14:22:36 +04:00
'use_system_sqlite%': 0, # '<(android_webview_build)',
'use_system_expat%': '<(android_webview_build)',
'use_system_icu%': '<(android_webview_build)',
'use_system_stlport%': '<(android_webview_build)',
2012-07-23 17:36:12 +04:00
2011-09-21 00:35:01 +04:00
# Copy it out one scope.
2013-03-12 14:22:36 +04:00
'android_webview_build%': '<(android_webview_build)',
2011-09-21 00:35:01 +04:00
}], # OS=="android"
2013-05-30 18:16:12 +04:00
['android_webview_build==1', {
# When building the WebView in the Android tree, jarjar will remap all
# the class names, so the JNI generator needs to know this.
'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt',
}],
2009-08-05 23:26:07 +04:00
['OS=="mac"', {
2013-11-14 10:22:29 +04:00
'conditions': [
# All Chrome builds have breakpad symbols, but only process the
# symbols from official builds.
['(branding=="Chrome" and buildtype=="Official")', {
'mac_strip_release%': 1,
}],
2013-12-11 07:02:10 +04:00
],
2013-05-14 01:29:47 +04:00
}], # OS=="mac"
['OS=="mac" or OS=="ios"', {
2014-03-14 00:46:01 +04:00
'clang%': 1,
2012-10-06 04:46:29 +04:00
'variables': {
# Mac OS X SDK and deployment target support. The SDK identifies
# the version of the system headers that will be used, and
# corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
# macro. "Maximum allowed" refers to the operating system version
# whose APIs are available in the headers. The deployment target
# identifies the minimum system version that the built products are
# expected to function on. It corresponds to the
# MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these
# macros are available, #include <AvailabilityMacros.h>. 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)',
2011-12-14 23:10:56 +04:00
# 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,
2009-08-05 23:26:07 +04:00
'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"', {
2012-10-06 04:46:29 +04:00
'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac_sdk_min) --sdk_path=<(mac_sdk_path))',
2011-12-14 23:10:56 +04:00
# Enable uploading crash dumps.
'mac_breakpad_uploads%': 1,
# Enable dumping symbols at build time for use by Mac Breakpad.
2009-08-05 23:26:07 +04:00
'mac_breakpad%': 1,
2011-12-14 23:10:56 +04:00
# Enable Keystone auto-update support.
2009-08-05 23:26:07 +04:00
'mac_keystone%': 1,
}, { # else: branding!="Chrome" or buildtype!="Official"
2012-10-06 04:46:29 +04:00
'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))',
2011-12-14 23:10:56 +04:00
'mac_breakpad_uploads%': 0,
2009-08-05 23:26:07 +04:00
'mac_breakpad%': 0,
'mac_keystone%': 0,
}],
],
2013-05-14 01:29:47 +04:00
}], # OS=="mac" or OS=="ios"
2009-08-01 03:33:55 +04:00
['OS=="win"', {
'conditions': [
2013-08-06 10:09:43 +04:00
# This is the architecture convention used in WinSDK paths.
['target_arch=="ia32"', {
'winsdk_arch%': 'x86',
},{
'winsdk_arch%': '<(target_arch)',
}],
2010-06-21 22:06:52 +04:00
['component=="shared_library"', {
'win_use_allocator_shim%': 0,
2013-08-21 10:58:22 +04:00
},{
# Turn on multiple dll by default on Windows when in static_library.
'chrome_multiple_dll%': 1,
2010-06-21 22:06:52 +04:00
}],
2014-02-22 04:27:11 +04:00
['asan==1', {
'win_use_allocator_shim%': 0,
}],
2012-08-21 02:30:04 +04:00
['component=="shared_library" and "<(GENERATOR)"=="ninja"', {
2012-08-16 22:57:10 +04:00
# Only enabled by default for ninja because it's buggy in VS.
2012-08-21 02:30:04 +04:00
# Not enabled for component=static_library because some targets
# are too large and the toolchain fails due to the size of the
# .obj files.
2012-08-16 22:57:10 +04:00
'incremental_chrome_dll%': 1,
}],
2013-11-08 12:55:41 +04:00
# Don't do incremental linking for large modules on 32-bit or when
# component=static_library as the toolchain fails due to the size of
# the .ilk files.
['MSVS_OS_BITS==32 or component=="static_library"', {
2009-08-08 01:16:03 +04:00
'msvs_large_module_debug_link_mode%': '1', # No
},{
'msvs_large_module_debug_link_mode%': '2', # Yes
}],
2014-04-12 07:07:46 +04:00
['MSVS_VERSION=="2013e"', {
WinDDK ATL and MSVC express 2008/2005 compatability
Gives 'out of the box' compatability with VC2008 express - i.e. no modifications needed to system headers or .gyp* files or related hacks. Just set the GYP_MSVS_VERSION to 200Xe (e for express, same as the linked blog on the issue and first google hit as well).
1) Changes to build\common.gypi to turn off to define COMPILER_MSVC_EXPRESS if a express is detected (through the GYP_MSVC_VERSION environment variable), turn off the _SECURE_ATL define (which is flagged as an error with WinDDK's ATL, _SECURE_ATL adds [more] CRT checks to other ATL versions) and hard to link to the atl stdthunk library with express editions. Also, explicitly link to the base WinSDK libraries in common.gypi and mini_installer.gypi for MSVC 2005 express.
2) Fixes a few .cc files that have the wrong include order with the ATL headers when using the Windows DDK ATL. The Windows DDK ATL brings in intsafe.h (WinSDK, not WinDDK) with atlwin.h and generates multiple INTXX_MIN/MAX def warnings which get
flagged as errors with the warnings as errors flag if not included before other libraries that have the same definitions like ICU.
3) Changes to .rc files to avoid pulling in afxres.h (an MFC header -
it's available in the WinDDK) and winres.h which VCExpress doesn't have (it's available in a WinSDK sample, but that kind of the purpose of it). The main Chromium .rc files are already structured this way, I just changed the rest and changed the output of grit to do the same.
4) Removes the memset obj file linking in mini_installer.gyp and simply implements memset for mini_installer.cc.
Only changes to the chromium branch now. There are some .rc files in the Python26, Native Client, and Angle in samples that could #3 changes. They are not required for Chromium, however.
------
VC2005SP1 can be downloaded at
http://www.microsoft.com/downloads/en/details.aspx?FamilyId=7B0B0339-613A-46E6-AB4D-080D4D4A8C4E&displaylang=en
(or non-SP1 at http://download.microsoft.com/download/8/3/a/83aad8f9-38ba-4503-b3cd-ba28c360c27b/ENU/vcsetup.exe)
VC2008SP1 can be downloaded at
http://www.microsoft.com/downloads/en/details.aspx?FamilyId=F3FBB04E-92C2-4701-B4BA-92E26E408569&displaylang=en
currently.
The base developer instructions work fine afterwards with a couple tweaks for express versions:
http://www.chromium.org/developers/how-tos/build-instructions-windows
Under "Additional (free) downloads" under step 2:
X) Only the first 3 Non-SP KB Patches are needed for express. Don't forget to forget GYP_MSVS_VERSION environment as appropriate - 2008e for Visual C++ 2008 Express, for example.
Under "Additional (free) downloads" after step 5
[These only apply to 2008 express, 2005 works fine out of the box]:
6A) Download the WinDDK for the atl headers and libs -
http://msdn.microsoft.com/en-us/windows/hardware/gg487463.aspx. It works fine, but you do not need to install the whole DDK. In the WDK directory just install headers.msi, libs_x86fre.msi, and libs_x64fre.msi; just grab the atl headers and atl*.lib libs; right click the installers and uninstall afterwards. Add the appropriate include and lib paths to your global settings.
6B) To build x64 targets (x64 Native Client) download:
http://www.cppblog.com/Files/xcpp/VCE64BIT_WIN7SDK.zip
Follow the readme instructions.
Further information behind that and x64 target building with express:
- http://jenshuebel.wordpress.com/2009/02/12/visual-c-2008-express-edition-and-64-bit-targets/
- http://www.cppblog.com/xcpp/archive/2009/09/09/vc2008express_64bit_win7sdk.html
----------------
BUG=1433, 5026, 72885
TEST=Compiles in both Debug and Release mode in Visual C++ Express 2008/2005 and does not effect other build setups. In addition, the WinDDK ATL compiles with the secure_atl=0 in the GYP_DEFINES environment variable on non-express versions of MSVC.
Review URL: http://codereview.chromium.org/6676030
git-svn-id: http://src.chromium.org/svn/trunk/src/build@78921 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-03-21 23:58:50 +03:00
'msvs_express%': 1,
'secure_atl%': 0,
},{
'msvs_express%': 0,
'secure_atl%': 1,
}],
2009-08-01 03:33:55 +04:00
],
2009-12-05 01:46:50 +03:00
'nacl_win64_defines': [
# This flag is used to minimize dependencies when building
# Native Client loader for 64-bit Windows.
'NACL_WIN64',
],
2009-08-01 03:33:55 +04:00
}],
2011-01-07 22:04:43 +03:00
2012-10-30 17:55:07 +04:00
['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', {
2010-10-26 00:05:44 +04:00
'use_cups%': 1,
}, {
'use_cups%': 0,
}],
2011-01-07 22:04:43 +03:00
2014-01-17 10:52:19 +04:00
['enable_plugins==1 and (OS=="linux" or OS=="mac" or OS=="win")', {
2013-05-23 14:44:35 +04:00
'enable_pepper_cdms%': 1,
}, {
'enable_pepper_cdms%': 0,
}],
2013-01-31 11:56:46 +04:00
# Native Client glibc toolchain is enabled
# by default except on arm and mips.
['target_arch=="arm" or target_arch=="mipsel"', {
2012-06-21 12:38:32 +04:00
'disable_glibc%': 1,
}, {
'disable_glibc%': 0,
}],
2010-12-07 10:27:27 +03:00
# Set the relative path from this file to the GYP file of the JPEG
# library used by Chromium.
2012-07-18 21:11:28 +04:00
['use_system_libjpeg==1 or use_libjpeg_turbo==0', {
# Configuration for using the system libjeg is here.
2010-12-07 10:27:27 +03:00
'libjpeg_gyp_path': '../third_party/libjpeg/libjpeg.gyp',
2012-07-18 21:11:28 +04:00
}, {
'libjpeg_gyp_path': '../third_party/libjpeg_turbo/libjpeg.gyp',
}],
2011-01-07 22:04:43 +03:00
2011-05-17 00:04:35 +04:00
# Options controlling the use of GConf (the classic GNOME configuration
# system) and GIO, which contains GSettings (the new GNOME config system).
2013-11-14 06:42:43 +04:00
['chromeos==1 or embedded==1', {
2011-01-21 01:14:31 +03:00
'use_gconf%': 0,
2011-05-17 00:04:35 +04:00
'use_gio%': 0,
2011-01-21 01:14:31 +03:00
}, {
'use_gconf%': 1,
2011-05-17 00:04:35 +04:00
'use_gio%': 1,
2011-01-21 01:14:31 +03:00
}],
2011-03-28 16:01:29 +04:00
# Set up -D and -E flags passed into grit.
2011-03-23 19:24:29 +03:00
['branding=="Chrome"', {
# TODO(mmoss) The .grd files look for _google_chrome, but for
# consistency they should look for google_chrome_build like C++.
2011-03-28 16:01:29 +04:00
'grit_defines': ['-D', '_google_chrome',
'-E', 'CHROMIUM_BUILD=google_chrome'],
2011-03-23 19:24:29 +03:00
}, {
2011-03-28 16:01:29 +04:00
'grit_defines': ['-D', '_chromium',
'-E', 'CHROMIUM_BUILD=chromium'],
2011-03-23 19:24:29 +03:00
}],
2011-01-07 22:04:43 +03:00
['chromeos==1', {
2012-06-05 00:10:13 +04:00
'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'],
2011-01-07 22:04:43 +03:00
}],
2013-09-07 07:26:37 +04:00
['desktop_linux==1', {
'grit_defines': ['-D', 'desktop_linux'],
}],
2011-01-07 22:04:43 +03:00
['toolkit_views==1', {
'grit_defines': ['-D', 'toolkit_views'],
}],
2011-09-16 20:37:30 +04:00
['use_aura==1', {
'grit_defines': ['-D', 'use_aura'],
}],
2012-01-04 02:02:16 +04:00
['use_ash==1', {
'grit_defines': ['-D', 'use_ash'],
}],
2011-10-05 18:34:57 +04:00
['use_nss==1', {
'grit_defines': ['-D', 'use_nss'],
}],
2013-05-03 23:19:15 +04:00
['use_ozone==1', {
'grit_defines': ['-D', 'use_ozone'],
}],
2013-02-22 15:17:25 +04:00
['image_loader_extension==1', {
'grit_defines': ['-D', 'image_loader_extension'],
}],
2011-01-11 03:53:18 +03:00
['remoting==1', {
'grit_defines': ['-D', 'remoting'],
}],
2011-01-07 22:04:43 +03:00
['use_titlecase_in_grd_files==1', {
'grit_defines': ['-D', 'use_titlecase'],
}],
2011-02-01 21:51:19 +03:00
['use_third_party_translations==1', {
'grit_defines': ['-D', 'use_third_party_translations'],
2011-06-28 01:58:12 +04:00
'locales': [
2011-08-23 03:27:16 +04:00
'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia',
'ka', 'ku', 'kw', 'ms', 'ug'
2011-06-28 01:58:12 +04:00
],
2011-02-01 21:51:19 +03:00
}],
2011-09-21 00:35:01 +04:00
['OS=="android"', {
2013-05-21 19:29:17 +04:00
'grit_defines': ['-t', 'android',
2013-03-26 11:31:57 +04:00
'-E', 'ANDROID_JAVA_TAGGED_ONLY=true'],
2011-09-21 00:35:01 +04:00
}],
2013-07-31 09:41:03 +04:00
['OS=="mac" or OS=="ios"', {
2012-06-27 02:38:23 +04:00
'grit_defines': ['-D', 'scale_factors=2x'],
}],
2012-10-03 14:37:03 +04:00
['OS == "ios"', {
'grit_defines': [
2013-08-20 05:01:12 +04:00
'-t', 'ios',
2012-10-03 14:37:03 +04:00
# iOS uses a whitelist to filter resources.
'-w', '<(DEPTH)/build/ios/grit_whitelist.txt'
],
2013-05-09 13:20:01 +04:00
2014-03-14 00:46:01 +04:00
# Enable host builds when generating with ninja-ios.
2013-05-09 13:20:01 +04:00
'conditions': [
['"<(GENERATOR)"=="ninja"', {
'host_os%': "mac",
2014-02-13 22:17:35 +04:00
}],
2014-03-14 00:46:01 +04:00
# TODO(sdefresne): Remove the target_subarch check once Apple has
# upstreamed the support for "arm64". http://crbug.com/341453
['target_subarch!="arm32" or "<(GENERATOR)"=="xcode"', {
2014-02-13 22:17:35 +04:00
'clang_xcode%': 1,
}],
2013-05-09 13:20:01 +04:00
],
2012-10-03 14:37:03 +04:00
}],
2012-04-17 21:13:34 +04:00
['enable_extensions==1', {
'grit_defines': ['-D', 'enable_extensions'],
}],
2013-12-09 12:43:17 +04:00
['enable_plugins!=0', {
'grit_defines': ['-D', 'enable_plugins'],
}],
2013-08-12 21:16:05 +04:00
['enable_printing!=0', {
2012-06-09 10:04:02 +04:00
'grit_defines': ['-D', 'enable_printing'],
}],
2014-01-28 01:07:50 +04:00
['enable_printing==1', {
'grit_defines': ['-D', 'enable_full_printing'],
}],
2012-08-01 00:40:33 +04:00
['enable_themes==1', {
'grit_defines': ['-D', 'enable_themes'],
}],
2012-12-17 10:41:33 +04:00
['enable_app_list==1', {
'grit_defines': ['-D', 'enable_app_list'],
}],
2012-11-15 07:58:16 +04:00
['enable_settings_app==1', {
'grit_defines': ['-D', 'enable_settings_app'],
}],
2013-01-30 05:32:15 +04:00
['enable_google_now==1', {
'grit_defines': ['-D', 'enable_google_now'],
}],
2013-04-25 23:35:42 +04:00
['use_concatenated_impulse_responses==1', {
'grit_defines': ['-D', 'use_concatenated_impulse_responses'],
}],
2013-06-27 18:17:04 +04:00
['enable_webrtc==1', {
'grit_defines': ['-D', 'enable_webrtc'],
}],
2014-02-14 20:40:34 +04:00
['enable_hangout_services_extension==1', {
'grit_defines': ['-D', 'enable_hangout_services_extension'],
}],
2014-01-30 15:04:29 +04:00
['enable_task_manager==1', {
'grit_defines': ['-D', 'enable_task_manager'],
}],
2014-02-14 00:14:13 +04:00
['notifications==1', {
'grit_defines': ['-D', 'enable_notifications'],
}],
2014-04-15 16:51:25 +04:00
['enable_resource_whitelist_generation==1 and OS!="win"', {
2014-04-04 04:52:22 +04:00
'grit_rc_header_format': ['-h', '#define {textual_id} _Pragma("whitelisted_resource_{numeric_id}") {numeric_id}'],
2014-03-08 02:36:32 +04:00
}],
2014-04-15 16:51:25 +04:00
['enable_resource_whitelist_generation==1 and OS=="win"', {
'grit_rc_header_format': ['-h', '#define {textual_id} __pragma(message("whitelisted_resource_{numeric_id}")) {numeric_id}'],
}],
2014-03-21 04:58:56 +04:00
['enable_mdns==1 or OS=="mac"', {
'grit_defines': ['-D', 'enable_service_discovery'],
'enable_service_discovery%': 1
}],
2012-04-19 07:40:08 +04:00
['clang_use_chrome_plugins==1 and OS!="win"', {
2013-05-15 04:45:07 +04:00
'clang_chrome_plugins_flags': [
'<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)'
2012-05-19 10:36:31 +04:00
],
2011-02-11 19:43:46 +03:00
}],
2011-04-28 02:30:23 +04:00
2014-02-22 04:27:11 +04:00
['asan==1', {
2011-08-15 18:33:06 +04:00
'clang%': 1,
}],
2012-08-29 21:47:02 +04:00
['asan==1 and OS=="mac"', {
2013-02-11 23:25:09 +04:00
# TODO(glider): we do not strip ASan binaries until the dynamic ASan
2013-05-22 01:27:57 +04:00
# runtime is fully adopted. See http://crbug.com/242503.
2013-02-11 23:25:09 +04:00
'mac_strip_release': 0,
2012-08-29 21:47:02 +04:00
}],
2013-06-13 19:49:55 +04:00
['lsan==1', {
'clang%': 1,
}],
2012-07-04 11:51:12 +04:00
['tsan==1', {
'clang%': 1,
2014-04-09 03:56:09 +04:00
'use_custom_libcxx%': 1,
2012-07-04 11:51:12 +04:00
}],
2013-02-27 00:06:59 +04:00
['msan==1', {
'clang%': 1,
}],
2012-07-04 11:51:12 +04:00
2012-09-26 09:17:25 +04:00
['OS=="linux" and clang_type_profiler==1', {
'clang%': 1,
'clang_use_chrome_plugins%': 0,
2013-01-23 08:47:32 +04:00
'conditions': [
['host_arch=="x64"', {
'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_x64',
}],
['host_arch=="ia32"', {
# 32-bit Clang is unsupported. It may not build. Put your 32-bit
# Clang in this directory at your own risk if needed for some
# purpose (e.g. to compare 32-bit and 64-bit behavior like memory
# usage). Any failure by this compiler should not close the tree.
'make_clang_dir%': 'third_party/llvm-allocated-type/Linux_ia32',
}],
],
2012-09-26 09:17:25 +04:00
}],
2014-05-07 00:13:38 +04:00
['OS=="win"', {
# The Clang plugins don't currently work on Windows.
# TODO(hans): One day, this will work. (crbug.com/82385)
'clang_use_chrome_plugins%': 0,
}],
2012-03-01 05:29:47 +04:00
# On valgrind bots, override the optimizer settings so we don't inline too
# much and make the stacks harder to figure out.
#
# TODO(rnk): Kill off variables that no one else uses and just implement
# them under a build_for_tool== condition.
['build_for_tool=="memcheck" or build_for_tool=="tsan"', {
# gcc flags
'mac_debug_optimization': '1',
'mac_release_optimization': '1',
'release_optimize': '1',
'no_gc_sections': 1,
'debug_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
'-fno-builtin -fno-optimize-sibling-calls',
'release_extra_cflags': '-g -fno-inline -fno-omit-frame-pointer '
'-fno-builtin -fno-optimize-sibling-calls',
# MSVS flags for TSan on Pin and Windows.
'win_debug_RuntimeChecks': '0',
'win_debug_disable_iterator_debugging': '1',
'win_debug_Optimization': '1',
'win_debug_InlineFunctionExpansion': '0',
'win_release_InlineFunctionExpansion': '0',
'win_release_OmitFramePointers': '0',
2014-05-07 22:45:59 +04:00
'use_allocator': 'tcmalloc',
2012-03-01 05:29:47 +04:00
'release_valgrind_build': 1,
'werror': '',
'component': 'static_library',
'use_system_zlib': 0,
}],
# Build tweaks for DrMemory.
# TODO(rnk): Combine with tsan config to share the builder.
# http://crbug.com/108155
['build_for_tool=="drmemory"', {
# These runtime checks force initialization of stack vars which blocks
# DrMemory's uninit detection.
'win_debug_RuntimeChecks': '0',
2013-10-18 17:58:17 +04:00
# Iterator debugging is slow.
2012-03-01 05:29:47 +04:00
'win_debug_disable_iterator_debugging': '1',
# Try to disable optimizations that mess up stacks in a release build.
2012-10-18 19:45:16 +04:00
# DrM-i#1054 (http://code.google.com/p/drmemory/issues/detail?id=1054)
# /O2 and /Ob0 (disable inline) cannot be used together because of a
# compiler bug, so we use /Ob1 instead.
'win_release_InlineFunctionExpansion': '1',
2012-03-01 05:29:47 +04:00
'win_release_OmitFramePointers': '0',
2012-08-16 02:27:50 +04:00
# Ditto for debug, to support bumping win_debug_Optimization.
'win_debug_InlineFunctionExpansion': 0,
'win_debug_OmitFramePointers': 0,
2012-03-01 05:29:47 +04:00
# Keep the code under #ifndef NVALGRIND.
'release_valgrind_build': 1,
}],
2012-10-29 22:17:22 +04:00
2013-10-30 21:37:21 +04:00
# Enable RLZ on Win, Mac, iOS and ChromeOS.
['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos==1)', {
2012-10-29 22:17:22 +04:00
'enable_rlz%': 1,
}],
2013-04-26 16:06:54 +04:00
# Set default compiler flags depending on ARM version.
['arm_version==6 and android_webview_build==0', {
'arm_arch%': 'armv6',
'arm_tune%': '',
2013-12-16 18:11:38 +04:00
'arm_fpu%': 'vfp',
'arm_float_abi%': 'softfp',
2013-04-26 16:06:54 +04:00
'arm_thumb%': 0,
}],
['arm_version==7 and android_webview_build==0', {
'arm_arch%': 'armv7-a',
2014-01-30 11:53:42 +04:00
'arm_tune%': '',
2013-04-26 16:06:54 +04:00
'conditions': [
['arm_neon==1', {
'arm_fpu%': 'neon',
}, {
'arm_fpu%': 'vfpv3-d16',
}],
],
2013-10-29 06:38:46 +04:00
# Change the default to hard once the armhf transition is complete.
2013-04-26 16:06:54 +04:00
'arm_float_abi%': 'softfp',
'arm_thumb%': 1,
}],
['android_webview_build==1', {
# The WebView build gets its cpu-specific flags from the Android build system.
'arm_arch%': '',
'arm_tune%': '',
'arm_fpu%': '',
'arm_float_abi%': '',
'arm_thumb%': 0,
}],
2013-10-22 21:21:29 +04:00
# Enable brlapi by default for chromeos.
[ 'chromeos==1', {
'use_brlapi%': 1,
}],
2013-10-31 22:22:44 +04:00
['use_ozone==1', {
2013-11-01 09:37:26 +04:00
# This is the default platform
2013-10-31 22:22:44 +04:00
'ozone_platform%': "test",
2013-11-01 09:37:26 +04:00
# Enable built-in ozone platforms if ozone is enabled.
2014-05-02 04:00:02 +04:00
'ozone_platform_caca%': 0,
2013-11-01 09:37:26 +04:00
'ozone_platform_dri%': 1,
2014-05-15 22:09:10 +04:00
'ozone_platform_egltest%': 1,
2014-05-15 01:24:18 +04:00
'ozone_platform_ozonex%': 0,
2013-11-01 09:37:26 +04:00
'ozone_platform_test%': 1,
2013-11-08 00:10:44 +04:00
}, { # use_ozone==0
2014-05-02 04:00:02 +04:00
'ozone_platform_caca%': 0,
2013-11-08 00:10:44 +04:00
'ozone_platform_dri%': 0,
2014-05-15 22:09:10 +04:00
'ozone_platform_egltest%': 0,
2014-05-15 01:24:18 +04:00
'ozone_platform_ozonex%': 0,
2013-11-08 00:10:44 +04:00
'ozone_platform_test%': 0,
2013-10-31 22:22:44 +04:00
}],
2013-12-18 02:28:31 +04:00
['desktop_linux==1 and use_aura==1 and use_x11==1', {
'use_clipboard_aurax11%': 1,
}],
2013-12-04 11:32:41 +04:00
['OS=="win" and use_goma==1', {
# goma doesn't support pch yet.
'chromium_win_pch': 0,
# goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
'conditions': [
2014-04-17 01:11:46 +04:00
['win_z7==0', {
'fastbuild': 1,
2013-12-04 11:32:41 +04:00
}],
],
}],
2014-01-24 17:26:35 +04:00
2014-02-22 04:27:11 +04:00
['OS=="win" and (clang==1 or asan==1)', {
2014-01-24 17:26:35 +04:00
'chromium_win_pch': 0,
}],
2013-12-20 01:38:38 +04:00
# The seccomp-bpf sandbox is only supported on three architectures
# currently.
# Do not disable seccomp_bpf anywhere without talking to
# security@chromium.org!
['((OS=="linux" or OS=="android") and '
'(target_arch=="ia32" or target_arch=="x64" or '
'target_arch=="arm"))', {
'use_seccomp_bpf%': 1,
}, {
'use_seccomp_bpf%': 0,
}],
2009-08-01 03:33:55 +04:00
],
2012-03-01 05:29:47 +04:00
2013-12-13 15:49:09 +04:00
# The path to the ANGLE library.
'angle_path': '<(DEPTH)/third_party/angle',
2013-06-13 02:53:01 +04:00
2011-09-28 06:03:59 +04:00
# List of default apps to install in new profiles. The first list contains
# the source files as found in svn. The second list, used only for linux,
2011-10-26 04:57:06 +04:00
# contains the destination location for each of the files. When a crx
# is added or removed from the list, the chrome/browser/resources/
# default_apps/external_extensions.json file must also be updated.
2011-09-28 06:03:59 +04:00
'default_apps_list': [
'browser/resources/default_apps/external_extensions.json',
'browser/resources/default_apps/gmail.crx',
2011-10-26 04:57:06 +04:00
'browser/resources/default_apps/search.crx',
2011-09-28 06:03:59 +04:00
'browser/resources/default_apps/youtube.crx',
2012-09-06 05:07:00 +04:00
'browser/resources/default_apps/drive.crx',
2012-09-28 00:42:23 +04:00
'browser/resources/default_apps/docs.crx',
2011-09-28 06:03:59 +04:00
],
'default_apps_list_linux_dest': [
'<(PRODUCT_DIR)/default_apps/external_extensions.json',
'<(PRODUCT_DIR)/default_apps/gmail.crx',
2011-10-26 04:57:06 +04:00
'<(PRODUCT_DIR)/default_apps/search.crx',
2011-09-28 06:03:59 +04:00
'<(PRODUCT_DIR)/default_apps/youtube.crx',
2012-09-06 05:07:00 +04:00
'<(PRODUCT_DIR)/default_apps/drive.crx',
2012-09-28 00:42:23 +04:00
'<(PRODUCT_DIR)/default_apps/docs.crx',
2011-09-28 06:03:59 +04:00
],
2009-02-26 00:26:55 +03:00
},
'target_defaults': {
2009-08-21 01:19:26 +04:00
'variables': {
2010-02-10 23:43:18 +03:00
# The condition that operates on chromium_code is in a target_conditions
# section, and will not have access to the default fallback value of
# chromium_code at the top of this file, or to the chromium_code
# variable placed at the root variables scope of .gyp files, because
# those variables are not set at target scope. As a workaround,
# if chromium_code is not set at target scope, define it in target scope
# to contain whatever value it has during early variable expansion.
# That's enough to make it available during target conditional
# processing.
'chromium_code%': '<(chromium_code)',
2014-03-21 16:39:56 +04:00
'component%': '<(component)',
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
# See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx
'win_release_Optimization%': '2', # 2 = /Os
'win_debug_Optimization%': '0', # 0 = /Od
2011-10-11 19:47:33 +04:00
# See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx
2011-12-17 06:16:24 +04:00
# Tri-state: blank is default, 1 on, 0 off
2012-06-02 01:52:11 +04:00
'win_release_OmitFramePointers%': '0',
2011-12-17 06:16:24 +04:00
# Tri-state: blank is default, 1 on, 0 off
'win_debug_OmitFramePointers%': '',
2011-10-11 19:47:33 +04:00
2010-05-07 11:41:21 +04:00
# See http://msdn.microsoft.com/en-us/library/8wtf2dfz(VS.71).aspx
'win_debug_RuntimeChecks%': '3', # 3 = all checks enabled, 0 = off
2011-10-11 19:47:33 +04:00
2010-05-07 11:41:21 +04:00
# See http://msdn.microsoft.com/en-us/library/47238hez(VS.71).aspx
2010-05-07 17:19:15 +04:00
'win_debug_InlineFunctionExpansion%': '', # empty = default, 0 = off,
'win_release_InlineFunctionExpansion%': '2', # 1 = only __inline, 2 = max
2011-10-11 19:47:33 +04:00
2010-11-08 19:00:31 +03:00
# VS inserts quite a lot of extra checks to algorithms like
# std::partial_sort in Debug build which make them O(N^2)
# instead of O(N*logN). This is particularly slow under memory
# tools like ThreadSanitizer so we want it to be disablable.
# See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2014-02-23 11:19:55 +04:00
'win_debug_disable_iterator_debugging%': '0',
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
2013-07-31 00:24:30 +04:00
# An application manifest fragment to declare compatibility settings for
# 'executable' targets. Ignored in other target type.
'win_exe_compatibility_manifest%':
'<(DEPTH)\\build\\win\\compatibility.manifest',
2009-09-11 23:37:00 +04:00
'release_extra_cflags%': '',
'debug_extra_cflags%': '',
2012-02-09 07:49:00 +04:00
'release_valgrind_build%': '<(release_valgrind_build)',
2010-06-21 22:06:52 +04:00
2011-12-17 06:16:24 +04:00
# the non-qualified versions are widely assumed to be *nix-only
'win_release_extra_cflags%': '',
'win_debug_extra_cflags%': '',
2011-11-09 22:46:07 +04:00
# TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
'enable_wexit_time_destructors%': '<(enable_wexit_time_destructors)',
2011-10-06 22:06:44 +04:00
# Only used by Windows build for now. Can be used to build into a
# differet output directory, e.g., a build_dir_prefix of VS2010_ would
# output files in src/build/VS2010_{Debug,Release}.
'build_dir_prefix%': '',
2012-06-08 05:01:57 +04:00
# Targets are by default not nacl untrusted code.
'nacl_untrusted_build%': 0,
2012-11-16 03:28:44 +04:00
'pnacl_compile_flags': [
2013-11-02 06:05:53 +04:00
# pnacl uses the clang compiler so we need to suppress all the
2012-11-16 03:28:44 +04:00
# same warnings as we do for clang.
# TODO(sbc): Remove these if/when they are removed from the clang
# build.
'-Wno-unused-function',
'-Wno-char-subscripts',
'-Wno-c++11-extensions',
'-Wno-unnamed-type-template-args',
],
2010-06-21 22:06:52 +04:00
'conditions': [
['OS=="win" and component=="shared_library"', {
# See http://msdn.microsoft.com/en-us/library/aa652367.aspx
2012-03-16 19:22:16 +04:00
'win_release_RuntimeLibrary%': '2', # 2 = /MD (nondebug DLL)
'win_debug_RuntimeLibrary%': '3', # 3 = /MDd (debug DLL)
2010-06-21 22:06:52 +04:00
}, {
# See http://msdn.microsoft.com/en-us/library/aa652367.aspx
'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static)
}],
2012-06-30 02:12:20 +04:00
['OS=="ios"', {
# See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
'mac_release_optimization%': 's', # Use -Os unless overridden
'mac_debug_optimization%': '0', # Use -O0 unless overridden
}, {
# See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
'mac_release_optimization%': '3', # Use -O3 unless overridden
'mac_debug_optimization%': '0', # Use -O0 unless overridden
}],
2014-02-14 01:48:25 +04:00
['OS=="android"', {
'host_os%': '<(host_os)', # See comment above chromium_code.
}],
2010-06-21 22:06:52 +04:00
],
2009-08-21 01:19:26 +04:00
},
2013-06-13 02:53:01 +04:00
'defines': [
2013-12-05 16:16:13 +04:00
# Don't use deprecated V8 APIs anywhere.
'V8_DEPRECATION_WARNINGS',
2014-03-07 15:26:59 +04:00
# Temporary suppression until Blink code can be removed.
'BLINK_SCALE_FILTERS_AT_RECORD_TIME',
2013-06-13 02:53:01 +04:00
],
2009-03-05 00:36:39 +03:00
'conditions': [
2013-03-12 18:06:16 +04:00
['(OS=="mac" or OS=="ios") and asan==1', {
2013-03-12 15:56:31 +04:00
'dependencies': [
'<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime',
],
}],
2014-05-07 22:45:59 +04:00
['OS=="linux" and use_allocator!="none" and clang_type_profiler==1', {
2012-09-26 09:17:25 +04:00
'cflags_cc!': ['-fno-rtti'],
'cflags_cc+': [
'-frtti',
'-gline-tables-only',
'-fintercept-allocation-functions',
],
'defines': ['TYPE_PROFILING'],
'dependencies': [
'<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
],
}],
2013-01-23 08:47:32 +04:00
['OS=="linux" and clang==1 and host_arch=="ia32"', {
# TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed.
# See http://crbug.com/162818.
'cflags+': ['-Wno-sentinel'],
}],
2009-03-05 00:36:39 +03:00
['branding=="Chrome"', {
'defines': ['GOOGLE_CHROME_BUILD'],
}, { # else: branding!="Chrome"
'defines': ['CHROMIUM_BUILD'],
}],
2012-05-30 20:20:38 +04:00
['OS=="mac" and component=="shared_library"', {
'xcode_settings': {
'DYLIB_INSTALL_NAME_BASE': '@rpath',
'LD_RUNPATH_SEARCH_PATHS': [
# For unbundled binaries.
'@loader_path/.',
# For bundled binaries, to get back from Binary.app/Contents/MacOS.
'@loader_path/../../..',
],
},
}],
2014-05-10 02:01:28 +04:00
['clang==1 and OS!="win"', {
# This is here so that all files get recompiled after a clang roll and
# when turning clang on or off.
# (defines are passed via the command line, and build systems rebuild
# things when their commandline changes). Nothing should ever read this
# define.
'defines': ['CR_CLANG_REVISION=<!(<(DEPTH)/tools/clang/scripts/update.sh --print-revision)'],
}],
2012-10-29 22:17:22 +04:00
['enable_rlz==1', {
2012-03-27 02:29:17 +04:00
'defines': ['ENABLE_RLZ'],
}],
2011-07-14 00:41:28 +04:00
['component=="shared_library"', {
'defines': ['COMPONENT_BUILD'],
}],
2010-04-27 22:31:31 +04:00
['toolkit_views==1', {
2009-05-13 03:51:17 +04:00
'defines': ['TOOLKIT_VIEWS=1'],
}],
2011-10-19 18:51:33 +04:00
['ui_compositor_image_transport==1', {
2011-10-13 21:18:11 +04:00
'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'],
}],
2011-08-25 19:39:58 +04:00
['use_aura==1', {
'defines': ['USE_AURA=1'],
2011-08-24 23:03:35 +04:00
}],
2012-01-04 02:02:16 +04:00
['use_ash==1', {
'defines': ['USE_ASH=1'],
}],
2013-11-20 00:17:16 +04:00
['use_cairo==1', {
'defines': ['USE_CAIRO=1'],
}],
2013-08-08 01:02:31 +04:00
['use_cras==1', {
'defines': ['USE_CRAS=1'],
}],
2013-11-20 09:33:46 +04:00
['use_glib==1', {
'defines': ['USE_GLIB=1'],
}],
2013-05-03 23:19:15 +04:00
['use_ozone==1', {
'defines': ['USE_OZONE=1'],
}],
2012-11-21 02:36:07 +04:00
['use_default_render_theme==1', {
'defines': ['USE_DEFAULT_RENDER_THEME=1'],
}],
2012-08-30 21:36:44 +04:00
['use_libjpeg_turbo==1', {
'defines': ['USE_LIBJPEG_TURBO=1'],
}],
2013-04-29 22:13:12 +04:00
['use_x11==1', {
'defines': ['USE_X11=1'],
}],
2013-12-13 03:06:50 +04:00
['use_clipboard_aurax11==1', {
'defines': ['USE_CLIPBOARD_AURAX11=1'],
}],
2012-03-06 01:02:40 +04:00
['enable_one_click_signin==1', {
'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
}],
2010-01-09 04:16:57 +03:00
['chromeos==1', {
2009-07-09 03:45:29 +04:00
'defines': ['OS_CHROMEOS=1'],
2009-06-03 02:57:50 +04:00
}],
2013-09-15 04:50:00 +04:00
['use_xi2_mt!=0 and use_x11==1', {
2011-09-25 04:04:35 +04:00
'defines': ['USE_XI2_MT=<(use_xi2_mt)'],
}],
2013-02-22 15:17:25 +04:00
['image_loader_extension==1', {
'defines': ['IMAGE_LOADER_EXTENSION=1'],
}],
2011-02-02 02:35:25 +03:00
['profiling==1', {
'defines': ['ENABLE_PROFILING=1'],
}],
2010-06-12 03:08:17 +04:00
['remoting==1', {
'defines': ['ENABLE_REMOTING=1'],
2010-06-11 04:39:00 +04:00
}],
2012-02-09 22:19:32 +04:00
['enable_webrtc==1', {
'defines': ['ENABLE_WEBRTC=1'],
}],
2010-05-10 21:04:48 +04:00
['proprietary_codecs==1', {
'defines': ['USE_PROPRIETARY_CODECS'],
}],
2012-02-23 03:08:05 +04:00
['enable_viewport==1', {
'defines': ['ENABLE_VIEWPORT'],
}],
2013-05-23 14:44:35 +04:00
['enable_pepper_cdms==1', {
'defines': ['ENABLE_PEPPER_CDMS'],
}],
2011-07-14 20:01:19 +04:00
['configuration_policy==1', {
'defines': ['ENABLE_CONFIGURATION_POLICY'],
}],
2011-10-28 14:41:57 +04:00
['notifications==1', {
'defines': ['ENABLE_NOTIFICATIONS'],
}],
2012-04-24 06:43:24 +04:00
['enable_hidpi==1', {
'defines': ['ENABLE_HIDPI=1'],
}],
2013-10-30 20:33:30 +04:00
['native_discardable_memory==1', {
'defines': ['DISCARDABLE_MEMORY_ALWAYS_SUPPORTED_NATIVELY'],
}],
['native_memory_pressure_signals==1', {
'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'],
}],
2013-11-20 12:36:40 +04:00
['use_udev==1', {
'defines': ['USE_UDEV'],
}],
2009-10-02 23:59:54 +04:00
['fastbuild!=0', {
2013-04-24 15:42:31 +04:00
'xcode_settings': {
'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
},
2009-10-02 23:59:54 +04:00
'conditions': [
2014-03-31 17:30:18 +04:00
['clang==1 and asan==0 and msan==0 and tsan==0', {
2013-04-02 23:42:30 +04:00
# Clang creates chubby debug information, which makes linking very
# slow. For now, don't create debug information with clang. See
# http://crbug.com/70000
2012-11-06 03:54:43 +04:00
'conditions': [
['OS=="linux"', {
'variables': {
'debug_extra_cflags': '-g0',
},
}],
# Android builds symbols on release by default, disable them.
['OS=="android"', {
'variables': {
'debug_extra_cflags': '-g0',
'release_extra_cflags': '-g0',
},
}],
],
}, { # else clang!=1
'conditions': [
2013-04-02 23:42:30 +04:00
['OS=="win" and fastbuild==2', {
# Completely disable debug information.
'msvs_settings': {
'VCLinkerTool': {
'GenerateDebugInformation': 'false',
},
'VCCLCompilerTool': {
'DebugInformationFormat': '0',
},
},
}],
['OS=="win" and fastbuild==1', {
2012-11-06 03:54:43 +04:00
'msvs_settings': {
'VCLinkerTool': {
2013-01-28 14:45:31 +04:00
# This tells the linker to generate .pdbs, so that
# we can get meaningful stack traces.
'GenerateDebugInformation': 'true',
2012-11-06 03:54:43 +04:00
},
'VCCLCompilerTool': {
2013-01-28 14:45:31 +04:00
# No debug info to be generated by compiler.
2012-11-06 03:54:43 +04:00
'DebugInformationFormat': '0',
},
},
}],
2013-04-02 23:42:30 +04:00
['OS=="linux" and fastbuild==2', {
'variables': {
'debug_extra_cflags': '-g0',
},
}],
['OS=="linux" and fastbuild==1', {
2012-11-06 03:54:43 +04:00
'variables': {
'debug_extra_cflags': '-g1',
},
}],
2013-04-02 23:42:30 +04:00
['OS=="android" and fastbuild==2', {
'variables': {
'debug_extra_cflags': '-g0',
'release_extra_cflags': '-g0',
},
}],
['OS=="android" and fastbuild==1', {
2012-11-06 03:54:43 +04:00
'variables': {
'debug_extra_cflags': '-g1',
'release_extra_cflags': '-g1',
},
}],
],
}], # clang!=1
],
2009-10-02 23:59:54 +04:00
}], # fastbuild!=0
2011-09-21 00:59:01 +04:00
['dcheck_always_on!=0', {
'defines': ['DCHECK_ALWAYS_ON=1'],
}], # dcheck_always_on!=0
2013-07-10 01:47:01 +04:00
['tracing_like_official_build!=0', {
'defines': ['TRACING_IS_OFFICIAL_BUILD=1'],
}], # tracing_like_official_build!=0
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
['win_use_allocator_shim==0', {
'conditions': [
['OS=="win"', {
'defines': ['NO_TCMALLOC'],
}],
],
}],
2010-04-29 04:18:50 +04:00
['enable_eglimage==1', {
'defines': [
'ENABLE_EGLIMAGE=1',
],
}],
2014-05-07 12:57:46 +04:00
['asan==1', {
'defines': [
'ADDRESS_SANITIZER',
'MEMORY_TOOL_REPLACES_ALLOCATOR',
],
}],
2014-02-15 08:49:18 +04:00
['syzyasan==1', {
# SyzyAsan needs /PROFILE turned on to produce appropriate pdbs.
2012-11-22 01:18:54 +04:00
'msvs_settings': {
'VCLinkerTool': {
'Profile': 'true',
},
},
2013-06-14 10:36:39 +04:00
'defines': [
2014-03-27 19:08:04 +04:00
'SYZYASAN',
2013-06-14 10:36:39 +04:00
'MEMORY_TOOL_REPLACES_ALLOCATOR',
],
2014-02-15 08:49:18 +04:00
}],
2010-08-26 22:34:38 +04:00
['OS=="win"', {
'defines': [
'__STD_C',
'_CRT_SECURE_NO_DEPRECATE',
'_SCL_SECURE_NO_DEPRECATE',
2012-10-22 20:23:10 +04:00
# This define is required to pull in the new Win8 interfaces from
# system headers like ShObjIdl.h.
'NTDDI_VERSION=0x06020000',
2013-11-12 11:13:33 +04:00
# This is required for ATL to use XP-safe versions of its functions.
'_USING_V110_SDK71_',
2010-08-26 22:34:38 +04:00
],
'include_dirs': [
'<(DEPTH)/third_party/wtl/include',
],
2012-05-23 23:06:52 +04:00
'conditions': [
['win_z7!=0', {
'msvs_settings': {
2012-08-23 09:49:09 +04:00
# Generates debug info when win_z7=1
# even if fastbuild=1 (that makes GenerateDebugInformation false).
'VCLinkerTool': {
'GenerateDebugInformation': 'true',
},
2012-05-23 23:06:52 +04:00
'VCCLCompilerTool': {
'DebugInformationFormat': '1',
}
}
}],
], # win_z7!=0
2010-08-26 22:34:38 +04:00
}], # OS==win
2012-04-06 05:11:02 +04:00
['enable_task_manager==1', {
'defines': [
'ENABLE_TASK_MANAGER=1',
],
}],
2012-04-17 21:13:34 +04:00
['enable_extensions==1', {
'defines': [
'ENABLE_EXTENSIONS=1',
],
}],
2012-01-05 05:07:12 +04:00
['OS=="win" and branding=="Chrome"', {
'defines': ['ENABLE_SWIFTSHADER'],
}],
2011-12-23 15:59:35 +04:00
['enable_dart==1', {
'defines': ['WEBKIT_USING_DART=1'],
}],
2012-01-17 20:47:34 +04:00
['enable_plugin_installation==1', {
'defines': ['ENABLE_PLUGIN_INSTALLATION=1'],
}],
2012-12-05 09:24:54 +04:00
['enable_plugins==1', {
'defines': ['ENABLE_PLUGINS=1'],
}],
2012-04-05 22:34:53 +04:00
['enable_session_service==1', {
'defines': ['ENABLE_SESSION_SERVICE=1'],
}],
2012-03-16 00:50:38 +04:00
['enable_themes==1', {
'defines': ['ENABLE_THEMES=1'],
}],
2013-02-22 07:37:22 +04:00
['enable_autofill_dialog==1', {
'defines': ['ENABLE_AUTOFILL_DIALOG=1'],
}],
2012-04-06 02:53:00 +04:00
['enable_background==1', {
'defines': ['ENABLE_BACKGROUND=1'],
}],
2012-12-08 02:44:40 +04:00
['enable_google_now==1', {
'defines': ['ENABLE_GOOGLE_NOW=1'],
}],
Suppression the problems on the build bots: There were two reasons why that CL broke the build tree. One is the size bloating, which was solved by https://codereview.chromium.org/23460018. The other is compiling error on ARM, and this was also solved by updating CLD2 (https://chromiumcodereview.appspot.com/23606017/).
--
Use Finch to compare the performances of CLD1 and CLD2
Add a compile time constant CLD_VERSION, which indicates the version of CLD. If this is not define, Finch test to compare CLD1 and CLD2 is supposed to be used.
By this CL, each platform will have the below status:
Linux: Use both CLD1 and CLD2 (and use Finch).
Mac OS X: Use both CLD1 and CLD2 (and use Finch).
Windows: Use only CLD1 once because now CLD2 can't be compiled on Windows. After we can have CLD2 compiled on Windows, we will use CLD2 and Finch asap.
iOS: Still use only CLD1. (It's because it is hard to use both CLD1 and CLD2 on mobile platform because of the binary size impact.)
Android: Still use only CLD1. (The same reason as iOS)
So some platforms will have two CLD binaries, but this is temporal in the sense that we intend to use Finch only for Dev and Beta channel. Before releasing the stable Chromium version, we decide which version of CLD is adopted, make another CL to use only one CLD, and send a merge request. (Of course, we hope we will be able to adopt CLD2.)
BUG=240647
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=221380
Review URL: https://chromiumcodereview.appspot.com/22867032
git-svn-id: http://src.chromium.org/svn/trunk/src/build@221675 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-09-06 15:03:06 +04:00
['cld_version!=0', {
'defines': ['CLD_VERSION=<(cld_version)'],
}],
2014-03-27 20:16:03 +04:00
['cld2_dynamic!=0', {
'defines': ['CLD2_DYNAMIC_MODE=1'],
}],
2014-04-30 15:27:19 +04:00
['cld2_is_component!=0', {
'defines': ['CLD2_IS_COMPONENT=1'],
}],
2012-06-09 10:04:02 +04:00
['enable_printing==1', {
2013-08-12 21:16:05 +04:00
'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'],
}],
['enable_printing==2', {
2012-06-09 10:04:02 +04:00
'defines': ['ENABLE_PRINTING=1'],
}],
2013-07-31 11:48:53 +04:00
['enable_spellcheck==1', {
'defines': ['ENABLE_SPELLCHECK=1'],
}],
2012-06-15 01:28:32 +04:00
['enable_captive_portal_detection==1', {
'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
}],
2012-11-15 07:58:16 +04:00
['enable_app_list==1', {
'defines': ['ENABLE_APP_LIST=1'],
}],
['enable_settings_app==1', {
'defines': ['ENABLE_SETTINGS_APP=1'],
}],
2014-05-07 19:05:29 +04:00
['disable_file_support==1', {
'defines': ['DISABLE_FILE_SUPPORT=1'],
}],
2012-08-30 17:18:11 +04:00
['disable_ftp_support==1', {
'defines': ['DISABLE_FTP_SUPPORT=1'],
}],
2014-05-07 18:05:46 +04:00
['use_icu_alternatives_on_android==1', {
'defines': ['USE_ICU_ALTERNATIVES_ON_ANDROID=1'],
}],
2013-01-19 07:44:31 +04:00
['enable_managed_users==1', {
'defines': ['ENABLE_MANAGED_USERS=1'],
}],
2013-11-05 00:27:29 +04:00
['data_reduction_fallback_host != ""', {
'defines': [
'DATA_REDUCTION_FALLBACK_HOST="<(data_reduction_fallback_host)"'],
}],
2014-01-14 15:17:30 +04:00
['data_reduction_dev_host != ""', {
'defines': [
'DATA_REDUCTION_DEV_HOST="<(data_reduction_dev_host)"'],
}],
2013-02-21 21:52:29 +04:00
['spdy_proxy_auth_origin != ""', {
'defines': ['SPDY_PROXY_AUTH_ORIGIN="<(spdy_proxy_auth_origin)"'],
}],
['spdy_proxy_auth_property != ""', {
'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
}],
2013-05-28 03:18:25 +04:00
['spdy_proxy_auth_value != ""', {
'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'],
}],
2013-10-08 04:49:43 +04:00
['data_reduction_proxy_probe_url != ""', {
'defines': [
'DATA_REDUCTION_PROXY_PROBE_URL="<(data_reduction_proxy_probe_url)"'],
}],
2013-04-23 23:25:27 +04:00
['enable_mdns==1', {
'defines': ['ENABLE_MDNS=1'],
2013-10-02 02:05:23 +04:00
}],
2014-03-21 04:58:56 +04:00
['enable_service_discovery==1', {
'defines' : [ 'ENABLE_SERVICE_DISCOVERY=1' ],
}],
2014-02-14 20:40:34 +04:00
['enable_hangout_services_extension==1', {
'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'],
}],
2013-11-28 20:05:14 +04:00
['enable_ipc_fuzzer==1', {
'defines': ['ENABLE_IPC_FUZZER=1'],
}],
2014-02-21 20:08:20 +04:00
['video_hole==1', {
'defines': ['VIDEO_HOLE=1'],
}],
2010-02-10 23:43:18 +03:00
], # conditions for 'target_defaults'
'target_conditions': [
2014-03-28 20:20:32 +04:00
['<(use_openssl)==1', {
2014-03-12 13:34:10 +04:00
'defines': ['USE_OPENSSL=1'],
}],
2014-03-28 20:20:32 +04:00
['<(use_openssl_certs)==1', {
'defines': ['USE_OPENSSL_CERTS=1'],
}],
['>(nacl_untrusted_build)==1', {
'defines': [
'USE_OPENSSL=1',
'USE_OPENSSL_CERTS=1',
],
}],
2014-03-12 13:34:10 +04:00
['<(use_nss)==1 and >(nacl_untrusted_build)==0', {
'defines': ['USE_NSS=1'],
}],
2011-11-09 22:46:07 +04:00
['enable_wexit_time_destructors==1', {
'conditions': [
[ 'clang==1', {
'cflags': [
'-Wexit-time-destructors',
],
'xcode_settings': {
'WARNING_CFLAGS': [
'-Wexit-time-destructors',
],
},
}],
],
}],
2010-02-10 01:06:15 +03:00
['chromium_code==0', {
2010-02-10 20:43:28 +03:00
'conditions': [
2012-06-30 02:12:20 +04:00
[ 'os_posix==1 and OS!="mac" and OS!="ios"', {
2011-02-10 01:32:33 +03:00
# We don't want to get warnings from third-party code,
# so remove any existing warning-enabling flags like -Wall.
2010-02-10 20:43:28 +03:00
'cflags!': [
'-Wall',
'-Wextra',
],
2011-10-25 02:05:27 +04:00
'cflags_cc': [
2011-02-09 01:19:00 +03:00
# Don't warn about hash_map in third-party code.
'-Wno-deprecated',
2011-10-25 02:05:27 +04:00
],
'cflags': [
2011-02-10 01:32:33 +03:00
# Don't warn about printf format problems.
# This is off by default in gcc but on in Ubuntu's gcc(!).
2011-02-11 01:38:22 +03:00
'-Wno-format',
2011-02-09 01:19:00 +03:00
],
2011-07-26 03:59:18 +04:00
'cflags_cc!': [
2013-12-06 12:06:20 +04:00
# Necessary because llvm.org/PR10448 is WONTFIX (crbug.com/90453).
2011-07-26 03:59:18 +04:00
'-Wsign-compare',
]
2010-02-10 20:43:28 +03:00
}],
2012-08-18 08:24:32 +04:00
# TODO: Fix all warnings on chromeos too.
[ 'os_posix==1 and OS!="mac" and OS!="ios" and (clang!=1 or chromeos==1)', {
'cflags!': [
'-Werror',
],
}],
2012-01-13 10:28:03 +04:00
[ 'os_posix==1 and os_bsd!=1 and OS!="mac" and OS!="android"', {
2011-07-27 14:32:11 +04:00
'cflags': [
# Don't warn about ignoring the return value from e.g. close().
# This is off by default in some gccs but on by default in others.
2012-01-13 10:28:03 +04:00
# BSD systems do not support this option, since they are usually
# using gcc 4.2.1, which does not have this flag yet.
2011-07-27 14:32:11 +04:00
'-Wno-unused-result',
],
}],
2010-02-10 20:43:28 +03:00
[ 'OS=="win"', {
'defines': [
'_CRT_SECURE_NO_DEPRECATE',
'_CRT_NONSTDC_NO_WARNINGS',
'_CRT_NONSTDC_NO_DEPRECATE',
'_SCL_SECURE_NO_DEPRECATE',
],
'msvs_disabled_warnings': [4800],
'msvs_settings': {
'VCCLCompilerTool': {
2011-05-03 06:04:11 +04:00
'WarningLevel': '3',
2012-08-25 00:58:24 +04:00
'WarnAsError': '<(win_third_party_warn_as_error)',
2010-02-10 20:43:28 +03:00
'Detect64BitPortabilityProblems': 'false',
},
},
2012-08-25 00:58:24 +04:00
'conditions': [
['buildtype=="Official"', {
'msvs_settings': {
'VCCLCompilerTool': { 'WarnAsError': 'false' },
}
}],
2014-01-24 17:26:35 +04:00
['clang==1', {
'msvs_settings': {
'VCCLCompilerTool': { 'WarnAsError': 'false' },
}
}],
2012-08-25 00:58:24 +04:00
],
2010-02-10 20:43:28 +03:00
}],
2012-11-22 21:24:07 +04:00
# TODO(darin): Unfortunately, some third_party code depends on base.
2011-07-17 23:39:42 +04:00
[ 'OS=="win" and component=="shared_library"', {
'msvs_disabled_warnings': [
4251, # class 'std::xx' needs to have dll-interface.
],
}],
2012-06-30 02:12:20 +04:00
[ 'OS=="mac" or OS=="ios"', {
2010-02-10 20:43:28 +03:00
'xcode_settings': {
2010-06-15 15:51:06 +04:00
'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
2010-02-10 20:43:28 +03:00
},
2012-05-08 23:45:49 +04:00
'conditions': [
['buildtype=="Official"', {
'xcode_settings': {
'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror
},
}],
],
2010-02-10 20:43:28 +03:00
}],
2012-06-30 02:12:20 +04:00
[ 'OS=="ios"', {
'xcode_settings': {
2012-07-11 19:11:22 +04:00
# TODO(ios): Fix remaining warnings in third-party code, then
# remove this; the Mac cleanup didn't get everything that's
# flagged in an iOS build.
'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',
2012-06-30 02:12:20 +04:00
'RUN_CLANG_STATIC_ANALYZER': 'NO',
2013-11-12 21:01:17 +04:00
# Several internal ios directories generate numerous warnings for
# -Wobjc-missing-property-synthesis.
'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
2012-06-30 02:12:20 +04:00
},
}],
2010-02-10 01:06:15 +03:00
],
}, {
2012-01-27 08:55:13 +04:00
'includes': [
# Rules for excluding e.g. foo_win.cc from the build on non-Windows.
'filename_rules.gypi',
],
2012-11-08 04:09:31 +04:00
# In Chromium code, we define __STDC_foo_MACROS in order to get the
2010-02-10 01:06:15 +03:00
# C99 macros on Mac and Linux.
'defines': [
2012-11-08 04:09:31 +04:00
'__STDC_CONSTANT_MACROS',
2010-02-10 01:06:15 +03:00
'__STDC_FORMAT_MACROS',
],
'conditions': [
['OS=="win"', {
2010-05-27 19:38:07 +04:00
# turn on warnings for signed/unsigned mismatch on chromium code.
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': ['/we4389'],
},
},
2010-02-10 01:06:15 +03:00
}],
2011-07-14 00:41:28 +04:00
['OS=="win" and component=="shared_library"', {
'msvs_disabled_warnings': [
4251, # class 'std::xx' needs to have dll-interface.
],
}],
2010-02-10 01:06:15 +03:00
],
}],
2010-02-10 23:43:18 +03:00
], # target_conditions for 'target_defaults'
2009-02-26 00:26:55 +03:00
'default_configuration': 'Debug',
'configurations': {
2009-12-22 04:52:50 +03:00
# VCLinkerTool LinkIncremental values below:
# 0 == default
# 1 == /INCREMENTAL:NO
# 2 == /INCREMENTAL
# Debug links incremental, Release does not.
#
2010-11-03 20:26:23 +03:00
# Abstract base configurations to cover common attributes.
2009-12-22 04:52:50 +03:00
#
'Common_Base': {
2009-10-30 00:24:56 +03:00
'abstract': 1,
'msvs_configuration_attributes': {
2011-09-28 04:02:51 +04:00
'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(ConfigurationName)',
2009-10-30 00:24:56 +03:00
'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
'CharacterSet': '1',
},
2013-02-15 17:48:40 +04:00
# Add the default import libs.
'msvs_settings':{
'VCLinkerTool': {
'AdditionalDependencies': [
'kernel32.lib',
'gdi32.lib',
'winspool.lib',
'comdlg32.lib',
'advapi32.lib',
'shell32.lib',
'ole32.lib',
'oleaut32.lib',
'user32.lib',
'uuid.lib',
'odbc32.lib',
'odbccp32.lib',
2013-02-26 02:10:39 +04:00
'delayimp.lib',
2013-12-04 08:02:03 +04:00
'credui.lib',
'netapi32.lib',
2013-02-15 17:48:40 +04:00
],
},
},
2009-12-22 04:52:50 +03:00
},
'x86_Base': {
'abstract': 1,
2009-12-05 01:46:50 +03:00
'msvs_settings': {
'VCLinkerTool': {
2014-02-06 13:49:21 +04:00
'MinimumRequiredVersion': '5.01', # XP.
2009-12-05 01:46:50 +03:00
'TargetMachine': '1',
},
2013-11-13 02:44:39 +04:00
'VCLibrarianTool': {
'TargetMachine': '1',
},
2009-12-05 01:46:50 +03:00
},
2009-11-02 00:17:34 +03:00
'msvs_configuration_platform': 'Win32',
2009-10-30 00:24:56 +03:00
},
2009-12-22 04:52:50 +03:00
'x64_Base': {
'abstract': 1,
'msvs_configuration_platform': 'x64',
'msvs_settings': {
'VCLinkerTool': {
'TargetMachine': '17', # x86 - 64
'AdditionalLibraryDirectories!':
2012-07-03 01:48:05 +04:00
['<(windows_sdk_path)/Lib/win8/um/x86'],
2009-12-22 04:52:50 +03:00
'AdditionalLibraryDirectories':
2012-07-03 01:48:05 +04:00
['<(windows_sdk_path)/Lib/win8/um/x64'],
2013-03-05 00:58:36 +04:00
# Doesn't exist x64 SDK. Should use oleaut32 in any case.
'IgnoreDefaultLibraryNames': [ 'olepro32.lib' ],
2009-12-22 04:52:50 +03:00
},
2010-03-25 01:06:35 +03:00
'VCLibrarianTool': {
2009-12-22 04:52:50 +03:00
'AdditionalLibraryDirectories!':
2012-07-03 01:48:05 +04:00
['<(windows_sdk_path)/Lib/win8/um/x86'],
2009-12-22 04:52:50 +03:00
'AdditionalLibraryDirectories':
2012-07-03 01:48:05 +04:00
['<(windows_sdk_path)/Lib/win8/um/x64'],
2013-11-13 02:44:39 +04:00
'TargetMachine': '17', # x64
2009-12-22 04:52:50 +03:00
},
},
},
'Debug_Base': {
'abstract': 1,
2011-04-05 11:36:58 +04:00
'defines': [
'DYNAMIC_ANNOTATIONS_ENABLED=1',
'WTF_USE_DYNAMIC_ANNOTATIONS=1',
],
2009-08-21 01:19:26 +04:00
'xcode_settings': {
2009-08-29 03:23:29 +04:00
'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)',
2011-07-01 20:23:49 +04:00
'OTHER_CFLAGS': [
'<@(debug_extra_cflags)',
],
2009-08-21 01:19:26 +04:00
},
2009-10-30 00:24:56 +03:00
'msvs_settings': {
'VCCLCompilerTool': {
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
'Optimization': '<(win_debug_Optimization)',
2009-10-30 00:24:56 +03:00
'PreprocessorDefinitions': ['_DEBUG'],
2010-05-07 11:41:21 +04:00
'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)',
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
'RuntimeLibrary': '<(win_debug_RuntimeLibrary)',
2010-05-07 17:19:15 +04:00
'conditions': [
# According to MSVS, InlineFunctionExpansion=0 means
# "default inlining", not "/Ob0".
# Thus, we have to handle InlineFunctionExpansion==0 separately.
['win_debug_InlineFunctionExpansion==0', {
'AdditionalOptions': ['/Ob0'],
}],
['win_debug_InlineFunctionExpansion!=""', {
'InlineFunctionExpansion':
'<(win_debug_InlineFunctionExpansion)',
}],
2010-11-08 19:00:31 +03:00
['win_debug_disable_iterator_debugging==1', {
'PreprocessorDefinitions': ['_HAS_ITERATOR_DEBUGGING=0'],
}],
2011-12-17 06:16:24 +04:00
# if win_debug_OmitFramePointers is blank, leave as default
['win_debug_OmitFramePointers==1', {
'OmitFramePointers': 'true',
}],
['win_debug_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-'],
}],
2010-05-07 17:19:15 +04:00
],
2011-12-17 06:16:24 +04:00
'AdditionalOptions': [ '<@(win_debug_extra_cflags)', ],
2009-10-30 00:24:56 +03:00
},
'VCLinkerTool': {
'LinkIncremental': '<(msvs_debug_link_incremental)',
2012-01-13 06:43:33 +04:00
# ASLR makes debugging with windbg difficult because Chrome.exe and
# Chrome.dll share the same base name. As result, windbg will
# name the Chrome.dll module like chrome_<base address>, where
# <base address> 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,
2009-10-30 00:24:56 +03:00
},
'VCResourceCompilerTool': {
'PreprocessorDefinitions': ['_DEBUG'],
},
},
2009-02-26 00:26:55 +03:00
'conditions': [
2012-09-14 08:42:55 +04:00
['OS=="linux" or OS=="android"', {
2012-06-01 03:07:54 +04:00
'target_conditions': [
['_toolset=="target"', {
'cflags': [
'<@(debug_extra_cflags)',
],
}],
2009-10-30 00:24:56 +03:00
],
2009-02-26 00:26:55 +03:00
}],
2013-12-14 02:10:27 +04:00
['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', {
2013-12-10 22:52:22 +04:00
# 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',],
}],
2014-03-06 09:41:36 +04:00
['release_valgrind_build==0', {
2011-07-02 01:33:35 +04:00
'xcode_settings': {
'OTHER_CFLAGS': [
'-fstack-protector-all', # Implies -fstack-protector
],
},
}],
2009-02-26 00:26:55 +03:00
],
},
2009-12-22 04:52:50 +03:00
'Release_Base': {
'abstract': 1,
2009-02-26 00:26:55 +03:00
'defines': [
'NDEBUG',
],
2009-08-21 01:19:26 +04:00
'xcode_settings': {
'DEAD_CODE_STRIPPING': 'YES', # -Wl,-dead_strip
'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)',
2009-09-11 23:37:00 +04:00
'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ],
2009-08-21 01:19:26 +04:00
},
2009-10-30 00:24:56 +03:00
'msvs_settings': {
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
'VCCLCompilerTool': {
'RuntimeLibrary': '<(win_release_RuntimeLibrary)',
2010-05-07 17:19:15 +04:00
'conditions': [
2011-12-21 01:37:37 +04:00
# In official builds, each target will self-select
# an optimization level.
['buildtype!="Official"', {
'Optimization': '<(win_release_Optimization)',
},
],
2010-05-07 17:19:15 +04:00
# 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)',
}],
2011-10-11 19:47:33 +04:00
2011-12-17 06:16:24 +04:00
# if win_release_OmitFramePointers is blank, leave as default
2011-10-11 19:47:33 +04:00
['win_release_OmitFramePointers==1', {
'OmitFramePointers': 'true',
}],
['win_release_OmitFramePointers==0', {
'OmitFramePointers': 'false',
2011-12-17 06:16:24 +04:00
# 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-'],
2011-10-11 19:47:33 +04:00
}],
2010-05-07 17:19:15 +04:00
],
2011-12-17 06:16:24 +04:00
'AdditionalOptions': [ '<@(win_release_extra_cflags)', ],
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
},
2009-10-30 00:24:56 +03:00
'VCLinkerTool': {
2011-08-09 00:56:34 +04:00
# LinkIncremental is a tri-state boolean, where 0 means default
# (i.e., inherit from parent solution), 1 means false, and
# 2 means true.
2009-10-30 00:24:56 +03:00
'LinkIncremental': '1',
2011-08-09 00:56:34 +04:00
# 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',
2009-10-30 00:24:56 +03:00
},
},
2009-02-26 00:26:55 +03:00
'conditions': [
2012-05-24 02:15:16 +04:00
['msvs_use_common_release', {
'includes': ['release.gypi'],
}],
2012-11-01 14:36:16 +04:00
['release_valgrind_build==0 and tsan==0', {
2011-04-05 11:36:58 +04:00
'defines': [
'NVALGRIND',
'DYNAMIC_ANNOTATIONS_ENABLED=0',
],
2010-05-14 12:24:42 +04:00
}, {
2011-04-05 11:36:58 +04:00
'defines': [
2013-06-14 10:36:39 +04:00
'MEMORY_TOOL_REPLACES_ALLOCATOR',
2011-04-05 11:36:58 +04:00
'DYNAMIC_ANNOTATIONS_ENABLED=1',
'WTF_USE_DYNAMIC_ANNOTATIONS=1',
],
2009-09-18 18:26:56 +04:00
}],
Make no-tcmalloc (really, non-base/allocator) builds work again,
(i.e. this is a plain vanilla build used when layers like base/allocator
are getting in the way of debugging)
and make sure they use msvcrt rather than libcmt
(libcmt is used to help shim malloc/free, but it gets
in the way of valgrind doing the same thing).
Sadly, this is now a gyp-time operation rather than a Configuration
option.
Had to remove hardcoded C prototype for _set_new_mode,
as that caused link errors.
Also add variables win_{release,debug}_{Optimization,RuntimeLibrary}
to let the valgrind build override those settings.
Fix calling convention on _set_new_mode to match the
one in <new.h>
BUG=none
TEST=build with ~/.gyp/include.gypi set as described in comment in common.gypi, gclient runhooks, do release build, verify all exe's and dll's linked against msvcrt dll
Review URL: http://codereview.chromium.org/455037
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33719 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-12-04 00:07:47 +03:00
['win_use_allocator_shim==0', {
'defines': ['NO_TCMALLOC'],
}],
2014-02-19 02:54:44 +04:00
# _FORTIFY_SOURCE isn't really supported by Clang now, see
# http://llvm.org/bugs/show_bug.cgi?id=16821.
# TODO(glider): once the bug is fixed, disable source fortification
# under the sanitizer tools only.
['os_posix==1 and (OS!="linux" or clang!=1)', {
2013-11-01 19:16:30 +04:00
'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',
],
}],
2012-12-11 05:54:58 +04:00
],
}],
2012-11-06 03:54:43 +04:00
['OS=="linux" or OS=="android"', {
2012-06-01 03:07:54 +04:00
'target_conditions': [
['_toolset=="target"', {
'cflags': [
'<@(release_extra_cflags)',
],
}],
2009-10-30 00:24:56 +03:00
],
}],
2013-05-23 16:57:41 +04:00
['OS=="ios"', {
'defines': [
'NS_BLOCK_ASSERTIONS=1',
],
}],
2009-02-26 00:26:55 +03:00
],
},
2009-12-22 04:52:50 +03:00
#
# Concrete configurations
#
'Debug': {
'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'],
},
'Release': {
'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
},
2009-08-05 02:50:13 +04:00
'conditions': [
2014-02-26 18:32:58 +04:00
[ 'OS=="ios"', {
'Profile': {
'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
'target_conditions': [
[ '_type=="executable"', {
# 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.
'xcode_settings': {
'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
'DEPLOYMENT_POSTPROCESSING': 'YES',
'STRIP_INSTALLED_PRODUCT': 'YES',
},
}],
],
},
}],
2009-08-05 02:50:13 +04:00
[ 'OS=="win"', {
# TODO(bradnelson): add a gyp mechanism to make this more graceful.
2009-12-05 01:46:50 +03:00
'Debug_x64': {
2009-12-22 04:52:50 +03:00
'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'],
2009-11-02 02:45:30 +03:00
},
'Release_x64': {
2009-12-22 04:52:50 +03:00
'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'],
2009-11-02 02:45:30 +03:00
},
2009-08-05 02:50:13 +04:00
}],
],
2009-02-26 00:26:55 +03:00
},
},
'conditions': [
2014-04-07 12:17:25 +04:00
['os_posix==1', {
2012-11-21 02:35:25 +04:00
'target_defaults': {
'ldflags': [
'-Wl,-z,now',
'-Wl,-z,relro',
],
},
}],
2014-04-07 12:17:25 +04:00
# TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580
['os_posix==1 and disable_fatal_linker_warnings==0 and (chromeos==0 or target_arch!="arm")', {
'target_defaults': {
'ldflags': [
'-Wl,--fatal-warnings',
],
},
}],
2013-02-01 09:47:17 +04:00
['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',
],
},
}],
2012-06-30 02:12:20 +04:00
['os_posix==1 and OS!="mac" and OS!="ios"', {
2009-03-21 02:13:26 +03:00
'target_defaults': {
2009-04-28 04:43:27 +04:00
# Enable -Werror by default, but put it in a variable so it can
# be disabled in ~/.gyp/include.gypi on the valgrind builders.
'variables': {
2012-01-25 22:32:31 +04:00
'werror%': '-Werror',
2012-06-30 02:12:20 +04:00
'libraries_for_target%': '',
2009-04-28 04:43:27 +04:00
},
2012-01-25 21:51:36 +04:00
'defines': [
'_FILE_OFFSET_BITS=64',
],
2009-03-21 02:13:26 +03:00
'cflags': [
2009-08-13 16:53:16 +04:00
'<(werror)', # See note above about the werror variable.
'-pthread',
'-fno-exceptions',
2012-01-24 08:37:29 +04:00
'-fno-strict-aliasing', # See http://crbug.com/32204
2009-08-13 16:53:16 +04:00
'-Wall',
2010-03-26 03:48:05 +03:00
# TODO(evan): turn this back on once all the builds work.
# '-Wextra',
2010-02-06 01:23:20 +03:00
# 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',
2010-01-21 23:23:12 +03:00
# Don't export any symbols (for example, to plugins we dlopen()).
# Note: this is *required* to make some plugins work.
'-fvisibility=hidden',
2010-09-16 03:39:35 +04:00
'-pipe',
2009-07-29 04:52:24 +04:00
],
'cflags_cc': [
2009-10-28 22:12:22 +03:00
'-fno-rtti',
2009-07-29 04:52:24 +04:00
'-fno-threadsafe-statics',
2009-11-17 21:39:36 +03:00
# Make inline functions have hidden visiblity by default.
# Surprisingly, not covered by -fvisibility=hidden.
'-fvisibility-inlines-hidden',
2011-07-25 08:03:17 +04:00
# GCC turns on -Wsign-compare for C++ under -Wall, but clang doesn't,
2013-12-06 12:06:20 +04:00
# so we specify it explicitly. (llvm.org/PR10448, crbug.com/90453)
2011-07-25 08:03:17 +04:00
'-Wsign-compare',
2009-03-21 02:13:26 +03:00
],
2009-04-03 08:07:38 +04:00
'ldflags': [
2010-03-31 03:53:10 +04:00
'-pthread', '-Wl,-z,noexecstack',
2009-03-21 02:13:26 +03:00
],
2012-06-30 02:12:20 +04:00
'libraries' : [
'<(libraries_for_target)',
],
2009-04-02 19:34:09 +04:00
'configurations': {
2009-12-22 04:52:50 +03:00
'Debug_Base': {
Add a new option, debug_optimize, that lets you set the
optimization level used for debug builds on linux.
They still default to -O0, but you can set them to -O1 by
doing 'gyp -Ddebug_optimize=1'.
This cuts valgrind runtime without screwing up stack dumps too badly.
On the buildbot, the easiest way to use this is to
create the file ~/.gyp/include.gypi by hand, containing the lines
# Override for valgrind buildbot
{
'variables': {
'debug_optimize': '1',
},
}
From then on, any "gclient sync" run, when it runs gyp after finishing,
will cause debug builds to use -O1. This is a bit obscure, but
it's a heck of a lot easier than threading some flag value
through the buildbot scripts or adding a new build mode.
Review URL: http://codereview.chromium.org/67199
git-svn-id: http://src.chromium.org/svn/trunk/src/build@14046 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-04-20 23:11:31 +04:00
'variables': {
'debug_optimize%': '0',
},
2009-04-02 19:34:09 +04:00
'defines': [
'_DEBUG',
],
'cflags': [
2012-08-24 04:49:25 +04:00
'-O>(debug_optimize)',
2014-03-19 17:53:16 +04:00
'-g',
2009-04-02 19:34:09 +04:00
],
2011-09-21 00:35:01 +04:00
'conditions' : [
2013-04-12 00:38:34 +04:00
['OS=="android"', {
'ldflags': [
2013-07-03 08:32:49 +04:00
# Warn in case of text relocations.
'-Wl,--warn-shared-textrel',
2013-04-12 00:38:34 +04:00
],
}],
2012-08-21 08:39:00 +04:00
['OS=="android" and android_full_debug==0', {
2012-08-15 02:42:55 +04:00
# Some configurations are copied from Release_Base to reduce
# the binary size.
'variables': {
'debug_optimize%': 's',
},
2011-09-21 00:35:01 +04:00
'cflags': [
2012-08-15 02:42:55 +04:00
'-fomit-frame-pointer',
'-fdata-sections',
'-ffunction-sections',
],
'ldflags': [
'-Wl,-O1',
'-Wl,--as-needed',
2011-09-21 00:35:01 +04:00
],
}],
2013-03-10 07:07:45 +04:00
['OS=="linux" and target_arch=="ia32"', {
'ldflags': [
'-Wl,--no-as-needed',
],
}],
2014-01-17 10:02:51 +04:00
['debug_unwind_tables==1', {
'cflags': ['-funwind-tables'],
}, {
'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
}],
2014-05-01 03:42:32 +04:00
# TODO(mostynb): shuffle clang/gcc_version/binutils_version
# definitions in to the right scope to use them when setting
# linux_use_debug_fission, so it can be used here alone.
['linux_use_debug_fission==1 and linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
2014-03-17 18:11:21 +04:00
'cflags': ['-gsplit-dwarf'],
'ldflags': ['-Wl,--gdb-index'],
}],
2011-09-21 00:35:01 +04:00
],
2009-04-28 04:43:27 +04:00
},
2009-12-22 04:52:50 +03:00
'Release_Base': {
2009-07-21 15:41:01 +04:00
'variables': {
'release_optimize%': '2',
2010-05-15 05:02:51 +04:00
# 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,
2011-05-10 23:49:12 +04:00
# TODO(bradnelson): reexamine how this is done if we change the
# expansion of configurations
'release_valgrind_build%': 0,
2009-07-21 15:41:01 +04:00
},
2009-04-02 19:34:09 +04:00
'cflags': [
2012-08-02 23:41:18 +04:00
'-O<(release_optimize)',
2009-04-08 22:29:53 +04:00
# 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',
2009-04-02 19:34:09 +04:00
],
2010-08-07 00:04:18 +04:00
'ldflags': [
# Specifically tell the linker to perform optimizations.
# See http://lwn.net/Articles/192624/ .
'-Wl,-O1',
2010-08-07 02:55:22 +04:00
'-Wl,--as-needed',
2010-08-07 00:04:18 +04:00
],
2010-05-15 05:02:51 +04:00
'conditions' : [
['no_gc_sections==0', {
'ldflags': [
'-Wl,--gc-sections',
],
}],
2011-09-21 00:35:01 +04:00
['OS=="android"', {
2012-08-02 15:03:58 +04:00
'variables': {
'release_optimize%': 's',
},
2011-09-21 00:35:01 +04:00
'cflags': [
'-fomit-frame-pointer',
],
2013-07-03 08:32:49 +04:00
'ldflags': [
# Warn in case of text relocations.
'-Wl,--warn-shared-textrel',
],
2011-09-21 00:35:01 +04:00
}],
2010-10-13 13:15:20 +04:00
['clang==1', {
'cflags!': [
'-fno-ident',
],
}],
2011-02-02 02:35:25 +03:00
['profiling==1', {
'cflags': [
'-fno-omit-frame-pointer',
'-g',
],
2013-06-23 18:17:58 +04:00
'conditions' : [
['profiling_full_stack_frames==1', {
'cflags': [
'-fno-inline',
'-fno-optimize-sibling-calls',
],
}],
],
2011-02-02 02:35:25 +03:00
}],
2014-01-17 10:02:51 +04:00
['release_unwind_tables==1', {
'cflags': ['-funwind-tables'],
}, {
'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
2014-01-11 07:12:05 +04:00
}],
2012-02-09 07:49:00 +04:00
],
2009-04-02 19:34:09 +04:00
},
},
2009-05-07 02:38:23 +04:00
'conditions': [
2011-09-14 06:36:21 +04:00
['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',
2009-05-29 04:39:06 +04:00
],
2011-09-14 06:36:21 +04:00
# 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.
2014-03-12 04:31:30 +04:00
#
# Refer to http://crbug.com/348761 for rationale behind SSE2
# being a minimum requirement for 32-bit Linux builds and
# http://crbug.com/313032 for an example where this has "bit"
# us in the past.
'cflags': [
'-msse2',
'-mfpmath=sse',
'-mmmx', # Allows mmintrin.h for MMX intrinsics.
'-m32',
],
'ldflags': [
'-m32',
],
2011-09-14 06:36:21 +04:00
'conditions': [
2013-03-29 10:36:21 +04:00
# Use gold linker for Android ia32 target.
['OS=="android"', {
'ldflags': [
'-fuse-ld=gold',
],
}],
2011-09-14 06:36:21 +04:00
# 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.
2012-05-10 07:22:28 +04:00
# For android build, use NDK headers instead of host headers
['host_arch!="ia32" and OS!="android"', {
2011-09-14 06:36:21 +04:00
'include_dirs+': [
'/usr/include32',
],
}],
],
2010-07-08 21:51:33 +04:00
}],
2009-05-29 04:39:06 +04:00
],
2009-05-07 02:38:23 +04:00
}],
2014-03-18 21:43:48 +04:00
['target_arch=="x64"', {
'target_conditions': [
['_toolset=="target"', {
'conditions': [
# Use gold linker for Android x64 target.
['OS=="android"', {
'ldflags': [
'-fuse-ld=gold',
],
}],
],
'cflags': [
'-m64',
'-march=x86-64',
],
'ldflags': [
'-m64',
],
}],
],
}],
2009-08-10 22:58:07 +04:00
['target_arch=="arm"', {
2009-12-04 09:21:29 +03:00
'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': [
2013-04-26 16:06:54 +04:00
['arm_arch!=""', {
2009-12-04 09:21:29 +03:00
'cflags': [
2013-04-26 16:06:54 +04:00
'-march=<(arm_arch)',
],
2009-12-04 09:21:29 +03:00
}],
2013-04-26 16:06:54 +04:00
['arm_tune!=""', {
2009-11-13 22:30:25 +03:00
'cflags': [
2013-04-26 16:06:54 +04:00
'-mtune=<(arm_tune)',
2009-11-13 22:30:25 +03:00
],
2013-04-26 16:06:54 +04:00
}],
['arm_fpu!=""', {
'cflags': [
'-mfpu=<(arm_fpu)',
],
}],
['arm_float_abi!=""', {
'cflags': [
'-mfloat-abi=<(arm_float_abi)',
2010-02-27 00:53:43 +03:00
],
2009-11-13 22:30:25 +03:00
}],
2013-04-26 16:06:54 +04:00
['arm_thumb==1', {
'cflags': [
'-mthumb',
]
}],
2011-09-21 00:35:01 +04:00
['OS=="android"', {
2012-03-17 02:03:53 +04:00
# 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
2013-04-24 05:35:43 +04:00
# webkit_unit_tests' WTF.Checked_int8_t test.
2012-03-17 02:03:53 +04:00
'-fno-tree-sra',
'-Wno-psabi',
],
2012-07-18 00:45:48 +04:00
# 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',
2012-08-21 00:09:48 +04:00
'-fuse-ld=gold',
2012-07-18 00:45:48 +04:00
],
2011-09-21 00:35:01 +04:00
'conditions': [
2013-04-26 16:06:54 +04:00
['arm_thumb==1', {
2012-12-11 23:49:22 +04:00
'cflags': [ '-mthumb-interwork' ],
2011-09-21 00:35:01 +04:00
}],
2012-11-30 02:00:38 +04:00
['profiling==1', {
'cflags': [
2014-05-16 20:56:47 +04:00
# Thumb code with frame pointer makes chrome crash
# early.
'-marm',
'-mapcs-frame', # Required by -fno-omit-frame-pointer.
# The perf report sometimes incorrectly attributes
# code from tail calls.
'-fno-optimize-sibling-calls',
],
'cflags!': [
'-fomit-frame-pointer',
2012-11-30 02:00:38 +04:00
],
}],
2012-08-09 14:44:07 +04:00
['clang==1', {
'cflags!': [
# Clang does not support the following options.
'-mthumb-interwork',
'-finline-limit=64',
'-fno-tree-sra',
'-Wno-psabi',
],
2014-01-13 22:34:22 +04:00
'cflags': [
# TODO(hans) Enable integrated-as (crbug.com/124610).
'-no-integrated-as',
2014-01-24 03:16:35 +04:00
'-B<(android_toolchain)', # Else /usr/bin/as gets picked up.
2014-01-13 22:34:22 +04:00
],
2013-10-12 10:02:42 +04:00
'ldflags!': [
# Clang does not support the following options.
'-fuse-ld=gold',
],
2014-01-31 04:04:22 +04:00
'ldflags': [
# As long as -fuse-ld=gold doesn't work, add a dummy directory
# with an 'ld' that redirects to gold, so that clang uses gold.
2014-05-13 23:32:48 +04:00
'-B<!(cd <(DEPTH) && pwd -P)/build/android/arm-linux-androideabi-gold',
2014-01-31 04:04:22 +04:00
],
2012-08-09 14:44:07 +04:00
}],
2014-01-23 15:07:53 +04:00
['asan==1', {
'cflags': [
'-marm', # Required for frame pointer based stack traces.
],
}],
2011-09-21 00:35:01 +04:00
],
}],
2009-08-10 22:58:07 +04:00
],
}],
],
}],
2014-03-20 22:35:49 +04:00
['target_arch=="arm64"', {
'target_conditions': [
['_toolset=="target"', {
'conditions': [
['OS=="android"', {
'cflags!': [
'-fstack-protector', # stack protector is always enabled on arm64.
],
}],
],
}],
],
}],
2013-04-27 08:10:26 +04:00
['target_arch=="mipsel"', {
'target_conditions': [
['_toolset=="target"', {
'conditions': [
2013-06-27 16:58:34 +04:00
['android_webview_build==0 and mips_arch_variant=="mips32r2"', {
2013-04-27 08:10:26 +04:00
'cflags': ['-mips32r2', '-Wa,-mips32r2'],
2013-06-27 16:58:34 +04:00
}],
['android_webview_build==0 and mips_arch_variant!="mips32r2"', {
2013-04-27 08:10:26 +04:00
'cflags': ['-mips32', '-Wa,-mips32'],
}],
],
'cflags': [
'-EL',
'-mhard-float',
],
'ldflags': [
'-EL',
'-Wl,--no-keep-memory'
],
'cflags_cc': [
'-Wno-uninitialized',
],
}],
],
}],
2010-08-12 06:11:08 +04:00
['linux_fpic==1', {
2010-01-26 02:10:58 +03:00
'cflags': [
'-fPIC',
],
2011-12-14 23:04:35 +04:00
'ldflags': [
'-fPIC',
],
2010-01-26 02:10:58 +03:00
}],
2009-09-04 05:53:01 +04:00
['sysroot!=""', {
2009-10-28 23:13:57 +03:00
'target_conditions': [
['_toolset=="target"', {
'cflags': [
'--sysroot=<(sysroot)',
],
'ldflags': [
'--sysroot=<(sysroot)',
2013-03-22 09:26:15 +04:00
'<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))',
2009-10-28 23:13:57 +03:00
],
}]]
2009-09-04 05:53:01 +04:00
}],
2010-09-18 04:09:15 +04:00
['clang==1', {
2011-08-10 07:07:12 +04:00
'cflags': [
'-Wheader-hygiene',
2013-05-01 01:40:07 +04:00
2013-04-19 08:52:53 +04:00
# Don't die on dtoa code that uses a char as an array index.
'-Wno-char-subscripts',
2013-05-01 01:40:07 +04:00
2013-11-12 09:05:41 +04:00
# TODO(thakis): This used to be implied by -Wno-unused-function,
# which we no longer use. Check if it makes sense to remove
# this as well. http://crbug.com/316352
'-Wno-unneeded-internal-declaration',
2012-01-29 13:02:10 +04:00
# Warns on switches on enums that cover all enum values but
# also contain a default: branch. Chrome is full of that.
'-Wno-covered-switch-default',
enable -Wstring-conversion when compiling with clang
Summary of try run with flag enabled as warning:
On linux_clang, there's false positives from a bunch of assert usage that does !"string" or "string" for a true or false value. It's only in third_party (Mesa, skia, libjingle, etc.) so it probably wouldn't be too hard to disable the warnings in those subtrees.
It diagnoses 4 useful locations:
1.
../../base/debug/trace_event_unittest.cc:70:41: warning: implicit conversion turns string literal into bool: 'const char [2]' to 'bool' [-Wstring-conversion]
TraceLog::GetInstance()->SetEnabled("*");
~~~~~~~~ ^~~
2.
../../sync/syncable/entry_kernel.cc:77:38: warning: implicit conversion turns string literal into bool: 'const char [5]' to 'bool' [-Wstring-conversion]
value->SetBoolean("encrypted", "true");
~~~~~ ^~~~~~
3.
../../chrome/browser/webdata/web_data_service.cc:334:17: warning: implicit conversion turns string literal into bool: 'const char [44]' to 'bool' [-Wstring-conversion]
DLOG_ASSERT("WebDataService dtor called without Shutdown");
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../base/logging.h:595:43: note: expanded from macro 'DLOG_ASSERT'
4.
../../chrome/browser/renderer_host/web_cache_manager_unittest.cc:259:20: warning: implicit conversion turns string literal into bool: 'const char [29]' to 'bool' [-Wstring-conversion]
EXPECT_FALSE("Unexpected entry in strategy");
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Finding #1 is what made me look into this, #3 and #4 are not doing what they're supposed to, and #2 is kind of funny so not all is lost.
So, 3 bugs and 1 very-close-to-a-bug: seems worth enabling.
R=thakis@chromium.org
TBR=darin@chromium.org, dhollowa@chromium.org, brettw@chromium.org, zea@chromium.org
BUG=177306
Review URL: https://chromiumcodereview.appspot.com/12258039
git-svn-id: http://src.chromium.org/svn/trunk/src/build@183998 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-02-22 07:37:51 +04:00
# Warns when a const char[] is converted to bool.
'-Wstring-conversion',
2013-07-17 02:37:18 +04:00
# C++11-related flags:
2013-05-01 01:40:07 +04:00
# This warns on using ints as initializers for floats in
# initializer lists (e.g. |int a = f(); CGSize s = { a, a };|),
# which happens in several places in chrome code. Not sure if
# this is worth fixing.
'-Wno-c++11-narrowing',
2013-07-25 04:55:50 +04:00
# TODO(thakis): Remove, http://crbug.com/263960
2013-05-01 01:40:07 +04:00
'-Wno-reserved-user-defined-literal',
2013-07-02 19:13:24 +04:00
# Clang considers the `register` keyword as deprecated, but e.g.
# code generated by flex (used in angle) contains that keyword.
# http://crbug.com/255186
'-Wno-deprecated-register',
2014-03-26 04:14:35 +04:00
# TODO(thakis): Remove, http://crbug.com/341352
'-Wno-absolute-value',
2013-05-01 01:40:07 +04:00
],
2013-07-17 02:37:18 +04:00
'cflags!': [
# Clang doesn't seem to know know this flag.
'-mfpmath=sse',
],
2013-05-01 01:40:07 +04:00
'cflags_cc': [
# See the comment in the Mac section for what it takes to move
# this to -std=c++11.
'-std=gnu++11',
],
}],
2013-05-31 01:13:44 +04:00
['clang==1 and OS=="android"', {
2013-07-17 02:37:18 +04:00
# Android uses stlport, whose include/new defines
# `void operator delete[](void* ptr) throw();`, which
# clang's -Wimplicit-exception-spec-mismatch warns about for some
# reason -- http://llvm.org/PR16638. TODO(thakis): Include stlport
# via -isystem instead.
'cflags_cc': [
'-Wno-implicit-exception-spec-mismatch',
2013-05-01 01:40:07 +04:00
],
}],
2011-02-11 19:43:46 +03:00
['clang==1 and clang_use_chrome_plugins==1', {
2011-08-11 04:16:26 +04:00
'cflags': [
2012-05-19 10:36:31 +04:00
'<@(clang_chrome_plugins_flags)',
2011-08-11 04:16:26 +04:00
],
2011-02-11 19:43:46 +03:00
}],
2011-12-02 07:41:53 +04:00
['clang==1 and clang_load!=""', {
2011-08-11 04:16:26 +04:00
'cflags': [
'-Xclang', '-load', '-Xclang', '<(clang_load)',
2011-12-02 07:41:53 +04:00
],
}],
['clang==1 and clang_add_plugin!=""', {
'cflags': [
2011-08-11 04:16:26 +04:00
'-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
],
2011-01-28 05:57:59 +03:00
}],
2013-04-23 02:51:34 +04:00
['clang==1 and target_arch=="ia32"', {
'cflags': [
# Else building libyuv gives clang's register allocator issues,
# see llvm.org/PR15798 / crbug.com/233709
'-momit-leaf-frame-pointer',
],
}],
2012-01-19 07:15:48 +04:00
['clang==1 and "<(GENERATOR)"=="ninja"', {
'cflags': [
# See http://crbug.com/110262
'-fcolor-diagnostics',
],
}],
2013-06-13 19:49:55 +04:00
# Common options for AddressSanitizer, LeakSanitizer,
# ThreadSanitizer and MemorySanitizer.
['asan==1 or lsan==1 or tsan==1 or msan==1', {
2013-04-19 17:00:54 +04:00
'target_conditions': [
['_toolset=="target"', {
'cflags': [
'-fno-omit-frame-pointer',
'-gline-tables-only',
],
2014-01-22 13:27:52 +04:00
'cflags!': [
'-fomit-frame-pointer',
],
2013-04-23 02:51:34 +04:00
'ldflags!': [
# Functions interposed by the sanitizers can make ld think
# that some libraries aren't needed when they actually are,
# http://crbug.com/234010. As workaround, disable --as-needed.
'-Wl,--as-needed',
],
2013-06-14 10:36:39 +04:00
'defines': [
'MEMORY_TOOL_REPLACES_ALLOCATOR',
],
2014-03-26 16:52:33 +04:00
}],
],
2014-04-15 22:39:20 +04:00
# TODO(glider): enable the default options on other systems.
'conditions': [
2014-04-28 16:11:15 +04:00
['use_sanitizer_options==1 and OS=="linux" and (chromeos==0 or target_arch!="ia32")', {
2014-04-15 22:39:20 +04:00
'dependencies': [
'<(DEPTH)/base/base.gyp:sanitizer_options',
],
}],
],
2013-04-19 17:00:54 +04:00
}],
2011-08-15 18:33:06 +04:00
['asan==1', {
2012-05-16 18:08:42 +04:00
'target_conditions': [
['_toolset=="target"', {
2012-07-26 00:06:45 +04:00
'cflags': [
2012-11-28 01:04:56 +04:00
'-fsanitize=address',
'-w', # http://crbug.com/162783
2012-07-26 00:06:45 +04:00
],
'ldflags': [
2012-11-28 01:04:56 +04:00
'-fsanitize=address',
2012-07-26 00:06:45 +04:00
],
2012-05-16 18:08:42 +04:00
}],
2011-11-25 14:34:35 +04:00
],
2014-03-21 22:51:17 +04:00
'conditions': [
['OS=="mac"', {
'cflags': [
'-mllvm -asan-globals=0', # http://crbug.com/352073
],
}],
],
2011-08-15 18:33:06 +04:00
}],
2014-01-18 01:01:36 +04:00
['asan_coverage!=0', {
2014-01-16 07:25:03 +04:00
'target_conditions': [
['_toolset=="target"', {
'cflags': [
2014-01-18 01:01:36 +04:00
'-mllvm -asan-coverage=<(asan_coverage)',
2014-01-16 07:25:03 +04:00
],
}],
],
}],
2013-06-13 19:49:55 +04:00
['lsan==1', {
'target_conditions': [
['_toolset=="target"', {
'cflags': [
'-fsanitize=leak',
],
'ldflags': [
'-fsanitize=leak',
],
'defines': [
'LEAK_SANITIZER',
2013-09-06 09:40:52 +04:00
'WTF_USE_LEAK_SANITIZER=1',
2013-06-13 19:49:55 +04:00
],
}],
],
}],
2012-07-04 11:51:12 +04:00
['tsan==1', {
'target_conditions': [
['_toolset=="target"', {
2012-07-26 00:06:45 +04:00
'cflags': [
2012-11-09 15:28:20 +04:00
'-fsanitize=thread',
2013-01-23 14:38:29 +04:00
'-fPIC',
2014-04-26 04:49:32 +04:00
'-fsanitize-blacklist=<(tsan_blacklist)',
2012-07-26 00:06:45 +04:00
],
'ldflags': [
2012-11-09 15:28:20 +04:00
'-fsanitize=thread',
2012-07-26 00:06:45 +04:00
],
'defines': [
'THREAD_SANITIZER',
'DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1',
2012-11-01 14:36:16 +04:00
'WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1',
2012-07-26 00:06:45 +04:00
],
'target_conditions': [
['_type=="executable"', {
'ldflags': [
2012-07-04 11:51:12 +04:00
'-pie',
2012-07-26 00:06:45 +04:00
],
}],
],
2012-07-04 11:51:12 +04:00
}],
],
}],
2013-02-27 00:06:59 +04:00
['msan==1', {
'target_conditions': [
['_toolset=="target"', {
'cflags': [
'-fsanitize=memory',
'-fsanitize-memory-track-origins',
'-fPIC',
2014-01-18 00:24:53 +04:00
'-fsanitize-blacklist=<(msan_blacklist)',
2013-02-27 00:06:59 +04:00
],
'ldflags': [
'-fsanitize=memory',
],
'defines': [
'MEMORY_SANITIZER',
],
'target_conditions': [
['_type=="executable"', {
'ldflags': [
'-pie',
],
}],
],
}],
],
}],
2013-11-12 17:41:30 +04:00
['use_instrumented_libraries==1', {
'dependencies': [
'<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:instrumented_libraries',
],
}],
2013-12-20 17:07:28 +04:00
['use_custom_libcxx==1', {
'dependencies': [
2014-05-05 17:30:42 +04:00
'<(DEPTH)/third_party/libc++/libc++.gyp:libcxx_proxy',
2013-12-20 17:07:28 +04:00
],
}],
2012-12-05 00:14:04 +04:00
['order_profiling!=0 and (chromeos==1 or OS=="linux" or OS=="android")', {
2012-05-16 14:04:44 +04:00
'target_conditions' : [
['_toolset=="target"', {
'cflags': [
'-finstrument-functions',
2012-10-05 13:31:45 +04:00
# Allow mmx intrinsics to inline, so that the
2013-07-17 01:04:24 +04:00
#0 compiler can expand the intrinsics.
2012-10-05 13:31:45 +04:00
'-finstrument-functions-exclude-file-list=mmintrin.h',
2012-05-16 14:04:44 +04:00
],
}],
2013-07-17 01:04:24 +04:00
['_toolset=="target" and OS=="android"', {
'cflags': [
# Avoids errors with current NDK:
# "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"
'-finstrument-functions-exclude-file-list=arm_neon.h',
],
}],
2012-05-16 14:04:44 +04:00
],
}],
2013-01-15 20:13:10 +04:00
['linux_dump_symbols==1', {
'cflags': [ '-g' ],
2012-11-15 04:29:25 +04:00
'conditions': [
2014-04-29 05:22:10 +04:00
['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0', {
2012-11-15 04:29:25 +04:00
'target_conditions': [
['_toolset=="target"', {
'ldflags': [
2014-04-29 05:22:10 +04:00
# Attempt to use less memory to prevent the linker from
# running out of address space. Considering installing a
# 64-bit kernel and switching to a 64-bit linker.
2013-03-01 04:11:23 +04:00
'-Wl,--no-keep-memory',
2012-11-15 04:29:25 +04:00
],
}],
],
}],
],
2009-08-26 04:14:27 +04:00
}],
2014-05-07 22:45:59 +04:00
['use_allocator!="tcmalloc"', {
2010-02-26 03:31:08 +03:00
'defines': ['NO_TCMALLOC'],
2009-11-11 22:24:24 +03:00
}],
2012-02-09 07:49:00 +04:00
['linux_use_gold_flags==1', {
2013-07-21 18:03:33 +04:00
'target_conditions': [
['_toolset=="target"', {
'ldflags': [
# Experimentation found that using four linking threads
# saved ~20% of link time.
# https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/281527606915bb36
# Only apply this to the target linker, since the host
# linker might not be gold, but isn't used much anyway.
2014-01-15 03:40:55 +04:00
# TODO(raymes): Disable threading because gold is frequently
# crashing on the bots: crbug.com/161942.
# '-Wl,--threads',
# '-Wl,--thread-count=4',
2013-07-21 18:03:33 +04:00
],
}],
2012-12-08 07:36:32 +04:00
],
2012-02-09 07:49:00 +04:00
'conditions': [
['release_valgrind_build==0', {
'target_conditions': [
['_toolset=="target"', {
'ldflags': [
2014-01-16 16:19:49 +04:00
# There seems to be a conflict of --icf and -pie
# in gold which can generate crashy binaries. As
2014-05-15 04:33:41 +04:00
# a security measure, -pie takes precedence for
2014-01-16 16:19:49 +04:00
# now.
#'-Wl,--icf=safe',
'-Wl,--icf=none',
2012-02-09 07:49:00 +04:00
],
}],
],
}],
2014-04-11 12:05:11 +04:00
# Newer gcc's support -fuse-ld, use the flag to force gold
# selection.
# gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
# TODO(mithro): Watch for clang support at following thread:
# http://clang-developers.42468.n3.nabble.com/Adding-fuse-ld-support-to-clang-td4032180.html
['gcc_version>=48', {
2014-04-23 12:20:16 +04:00
'target_conditions': [
['_toolset=="target"', {
'ldflags': [
'-fuse-ld=gold',
],
}],
2014-04-11 12:05:11 +04:00
],
2014-04-23 12:20:16 +04:00
}],
['host_gcc_version>=48', {
'target_conditions': [
['_toolset=="host"', {
'ldflags': [
'-fuse-ld=gold',
],
}],
2014-04-11 12:05:11 +04:00
],
2014-04-23 12:20:16 +04:00
}],
2012-02-09 07:49:00 +04:00
],
}],
2014-04-16 13:50:23 +04:00
['linux_use_bundled_binutils==1', {
2014-04-10 00:20:45 +04:00
'cflags': [
'-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
],
2014-04-16 13:50:23 +04:00
}],
['linux_use_bundled_gold==1', {
# Put our binutils, which contains gold in the search path. We pass
# the path to gold to the compiler. gyp leaves unspecified what the
# cwd is when running the compiler, so the normal gyp path-munging
# fails us. This hack gets the right path.
2012-02-04 02:44:59 +04:00
'ldflags': [
2014-04-10 00:20:45 +04:00
'-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)',
2012-02-04 02:44:59 +04:00
],
}],
2014-04-24 12:24:51 +04:00
# Some binutils 2.23 releases may or may not have new dtags enabled,
# but they are all compatible with --disable-new-dtags,
# because the new dynamic tags are not created by default.
['binutils_version>=223', {
2014-04-16 13:50:23 +04:00
# Newer binutils don't set DT_RPATH unless you disable "new" dtags
# and the new DT_RUNPATH doesn't work without --no-as-needed flag.
# FIXME(mithro): Figure out the --as-needed/--no-as-needed flags
# inside this file to allow usage of --no-as-needed and removal of
# this flag.
2014-04-10 00:20:45 +04:00
'ldflags': [
'-Wl,--disable-new-dtags',
],
}]
2009-05-07 02:38:23 +04:00
],
2009-03-21 02:13:26 +03:00
},
}],
2009-12-11 23:04:06 +03:00
# FreeBSD-specific options; note that most FreeBSD options are set above,
# with Linux.
['OS=="freebsd"', {
'target_defaults': {
'ldflags': [
'-Wl,--no-keep-memory',
],
},
}],
2011-09-21 00:35:01 +04:00
# Android-specific options; note that most are set above with Linux.
['OS=="android"', {
'variables': {
2012-12-11 14:36:17 +04:00
# This is a unique identifier for a given build. It's used for
# identifying various build artifacts corresponding to a particular
# build of chrome (e.g. where to find archived symbols).
'chrome_build_id%': '',
2011-09-21 00:35:01 +04:00
'conditions': [
# Use shared stlport library when system one used.
# Figure this out early since it needs symbols from libgcc.a, so it
# has to be before that in the set of libraries.
['use_system_stlport==1', {
'android_stlport_library': 'stlport',
}, {
2012-11-20 01:19:04 +04:00
'conditions': [
['component=="shared_library"', {
'android_stlport_library': 'stlport_shared',
}, {
'android_stlport_library': 'stlport_static',
}],
],
2011-09-21 00:35:01 +04:00
}],
],
# Placing this variable here prevents from forking libvpx, used
# by remoting. Remoting is off, so it needn't built,
# so forking it's deps seems like overkill.
# But this variable need defined to properly run gyp.
# A proper solution is to have an OS==android conditional
# in third_party/libvpx/libvpx.gyp to define it.
'libvpx_path': 'lib/linux/arm',
},
'target_defaults': {
'variables': {
'release_extra_cflags%': '',
2013-04-04 13:15:59 +04:00
'conditions': [
# If we're using the components build, append "cr" to all shared
# libraries to avoid naming collisions with android system library
# versions with the same name (e.g. skia, icu).
['component=="shared_library"', {
'android_product_extension': 'cr.so',
}, {
'android_product_extension': 'so',
} ],
],
2012-08-15 02:42:55 +04:00
},
2011-09-21 00:35:01 +04:00
'target_conditions': [
2013-04-04 13:15:59 +04:00
['_type=="shared_library"', {
'product_extension': '<(android_product_extension)',
}],
2011-09-21 00:35:01 +04:00
# Settings for building device targets using Android's toolchain.
# These are based on the setup.mk file from the Android NDK.
#
# The NDK Android executable link step looks as follows:
# $LDFLAGS
# $(TARGET_CRTBEGIN_DYNAMIC_O) <-- crtbegin.o
# $(PRIVATE_OBJECTS) <-- The .o that we built
# $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
# $(TARGET_LIBGCC) <-- libgcc.a
# $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
# $(PRIVATE_LDLIBS) <-- System .so
# $(TARGET_CRTEND_O) <-- crtend.o
#
# For now the above are approximated for executables by adding
# crtbegin.o to the end of the ldflags and 'crtend.o' to the end
# of 'libraries'.
#
# The NDK Android shared library link step looks as follows:
# $LDFLAGS
# $(PRIVATE_OBJECTS) <-- The .o that we built
# -l,--whole-archive
# $(PRIVATE_WHOLE_STATIC_LIBRARIES)
# -l,--no-whole-archive
# $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built
# $(TARGET_LIBGCC) <-- libgcc.a
# $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built
# $(PRIVATE_LDLIBS) <-- System .so
#
2012-07-18 00:45:48 +04:00
# For now, assume that whole static libraries are not needed.
2011-09-21 00:35:01 +04:00
#
# For both executables and shared libraries, add the proper
# libgcc.a to the start of libraries which puts it in the
# proper spot after .o and .a files get linked in.
#
# TODO: The proper thing to do longer-tem would be proper gyp
# support for a custom link command line.
['_toolset=="target"', {
'cflags!': [
'-pthread', # Not supported by Android toolchain.
],
'cflags': [
'-ffunction-sections',
'-funwind-tables',
'-g',
'-fstack-protector',
'-fno-short-enums',
'-finline-limit=64',
'-Wa,--noexecstack',
'<@(release_extra_cflags)',
],
'defines': [
'ANDROID',
'__GNU_SOURCE=1', # Necessary for clone()
'USE_STLPORT=1',
'_STLP_USE_PTR_SPECIALIZATIONS=1',
2012-12-11 14:36:17 +04:00
'CHROME_BUILD_ID="<(chrome_build_id)"',
2011-09-21 00:35:01 +04:00
],
'ldflags!': [
'-pthread', # Not supported by Android toolchain.
],
'ldflags': [
'-nostdlib',
'-Wl,--no-undefined',
# Don't export symbols from statically linked libraries.
'-Wl,--exclude-libs=ALL',
],
2011-11-22 11:53:01 +04:00
'libraries': [
'-l<(android_stlport_library)',
# Manually link the libgcc.a that the cross compiler uses.
2012-08-16 17:52:04 +04:00
'<!(<(android_toolchain)/*-gcc -print-libgcc-file-name)',
2011-11-22 11:53:01 +04:00
'-lc',
'-ldl',
'-lm',
2011-09-21 00:35:01 +04:00
],
'conditions': [
2012-11-20 01:19:04 +04:00
['component=="shared_library"', {
2012-11-21 20:27:47 +04:00
'ldflags!': [
'-Wl,--exclude-libs=ALL',
],
2012-11-20 01:19:04 +04:00
}],
2012-08-09 14:44:07 +04:00
['clang==1', {
'cflags': [
# Work around incompatibilities between bionic and clang
# headers.
'-D__compiler_offsetof=__builtin_offsetof',
'-Dnan=__builtin_nan',
],
'conditions': [
['target_arch=="arm"', {
'cflags': [
'-target arm-linux-androideabi',
],
'ldflags': [
'-target arm-linux-androideabi',
],
}],
['target_arch=="ia32"', {
'cflags': [
'-target x86-linux-androideabi',
],
'ldflags': [
'-target x86-linux-androideabi',
],
}],
2014-03-18 21:43:48 +04:00
# Place holder for x64 support, not tested.
# TODO: Enable clang support for Android x64. http://crbug.com/346626
['target_arch=="x64"', {
'cflags': [
'-target x86_64-linux-androideabi',
],
'ldflags': [
'-target x86_64-linux-androideabi',
],
}],
2012-08-09 14:44:07 +04:00
],
}],
2012-11-07 16:11:25 +04:00
['asan==1', {
'cflags': [
# Android build relies on -Wl,--gc-sections removing
# unreachable code. ASan instrumentation for globals inhibits
# this and results in a library with unresolvable relocations.
# TODO(eugenis): find a way to reenable this.
'-mllvm -asan-globals=0',
],
}],
2014-03-08 02:36:32 +04:00
['enable_resource_whitelist_generation==1', {
'cflags': [
'-Wunknown-pragmas -Wno-error=unknown-pragmas',
],
}],
2013-03-12 14:22:36 +04:00
['android_webview_build==0', {
2012-06-27 20:10:46 +04:00
'defines': [
2012-07-25 20:17:57 +04:00
# The NDK has these things, but doesn't define the constants
# to say that it does. Define them here instead.
'HAVE_SYS_UIO_H',
],
'cflags': [
'--sysroot=<(android_ndk_sysroot)',
2012-06-27 20:10:46 +04:00
],
2011-09-21 00:35:01 +04:00
'ldflags': [
2011-12-13 20:00:52 +04:00
'--sysroot=<(android_ndk_sysroot)',
2011-09-21 00:35:01 +04:00
],
}],
2013-03-12 14:22:36 +04:00
['android_webview_build==1', {
2012-10-04 23:16:08 +04:00
'include_dirs': [
# OpenAL headers from the Android tree.
'<(android_src)/frameworks/wilhelm/include',
],
'cflags': [
2012-11-21 16:40:45 +04:00
# Android predefines this as 1; undefine it here so Chromium
# can redefine it later to be 2 for chromium code and unset
# for third party code. This works because cflags are added
# before defines.
'-U_FORTIFY_SOURCE',
2013-01-04 04:48:55 +04:00
# Disable any additional warnings enabled by the Android build system but which
# chromium does not build cleanly with (when treating warning as errors).
2012-10-04 23:16:08 +04:00
# Things that are part of -Wextra:
2013-01-04 04:48:55 +04:00
'-Wno-extra', # Enabled by -Wextra, but no specific flag
'-Wno-ignored-qualifiers',
'-Wno-type-limits',
2014-02-12 20:06:56 +04:00
'-Wno-unused-but-set-variable',
2012-10-04 23:16:08 +04:00
],
'cflags_cc': [
2013-03-11 17:59:16 +04:00
# Other things unrelated to -Wextra:
'-Wno-non-virtual-dtor',
'-Wno-sign-promo',
2012-10-04 23:16:08 +04:00
],
}],
2013-11-01 19:16:30 +04:00
['android_webview_build==1', {
'target_conditions': [
['chromium_code==0', {
'cflags': [
# There is a class of warning which:
# 1) Android always enables and also treats as errors
# 2) Chromium ignores in third party code
# So we re-enable those warnings when building Android.
'-Wno-address',
'-Wno-format-security',
'-Wno-return-type',
'-Wno-sequence-point',
],
'cflags_cc': [
'-Wno-non-virtual-dtor',
],
}],
2012-10-04 23:16:08 +04:00
],
}],
2012-05-03 13:17:45 +04:00
['target_arch == "arm"', {
'ldflags': [
# Enable identical code folding to reduce size.
'-Wl,--icf=safe',
],
}],
2011-09-21 00:35:01 +04:00
# NOTE: The stlport header include paths below are specified in
# cflags rather than include_dirs because they need to come
# after include_dirs. Think of them like system headers, but
# don't use '-isystem' because the arm-linux-androideabi-4.4.3
# toolchain (circa Gingerbread) will exhibit strange errors.
# The include ordering here is important; change with caution.
2012-07-11 04:00:51 +04:00
['use_system_stlport==1', {
'cflags': [
# For libstdc++/include, which is used by stlport.
'-I<(android_src)/bionic',
'-I<(android_src)/external/stlport/stlport',
],
}, { # else: use_system_stlport!=1
2011-09-21 00:35:01 +04:00
'cflags': [
2013-04-03 22:20:22 +04:00
'-I<(android_stlport_include)',
2011-09-21 00:35:01 +04:00
],
2013-04-03 22:20:22 +04:00
'ldflags': [
'-L<(android_stlport_libs_dir)',
2011-09-21 00:35:01 +04:00
],
}],
['target_arch=="ia32"', {
# The x86 toolchain currently has problems with stack-protector.
'cflags!': [
'-fstack-protector',
],
'cflags': [
'-fno-stack-protector',
],
}],
],
'target_conditions': [
['_type=="executable"', {
2014-05-14 19:15:19 +04:00
# Force android tools to export the "main" symbol so they can be
# loaded on ICS using the run_pie wrapper. See crbug.com/373219.
# TODO(primiano): remove -fvisibility and -rdynamic flags below
# when ICS support will be dropped.
'cflags': [
'-fPIE',
'-fvisibility=default',
],
2011-09-21 00:35:01 +04:00
'ldflags': [
'-Bdynamic',
'-Wl,--gc-sections',
'-Wl,-z,nocopyreloc',
2014-05-14 19:15:19 +04:00
'-pie',
'-rdynamic',
2011-09-21 00:35:01 +04:00
# crtbegin_dynamic.o should be the last item in ldflags.
'<(android_ndk_lib)/crtbegin_dynamic.o',
],
'libraries': [
# crtend_android.o needs to be the last item in libraries.
# Do not add any libraries after this!
'<(android_ndk_lib)/crtend_android.o',
],
}],
2012-07-25 20:17:57 +04:00
['_type=="shared_library" or _type=="loadable_module"', {
2011-09-21 00:35:01 +04:00
'ldflags': [
'-Wl,-shared,-Bsymbolic',
2012-04-25 07:18:46 +04:00
],
2013-04-30 22:00:23 +04:00
'conditions': [
['android_webview_build==0', {
'ldflags': [
# crtbegin_so.o should be the last item in ldflags.
'<(android_ndk_lib)/crtbegin_so.o',
],
'libraries': [
# crtend_so.o needs to be the last item in libraries.
# Do not add any libraries after this!
'<(android_ndk_lib)/crtend_so.o',
],
}],
2011-09-21 00:35:01 +04:00
],
}],
],
}],
# Settings for building host targets using the system toolchain.
['_toolset=="host"', {
2012-02-16 15:42:12 +04:00
'cflags!': [
# Due to issues in Clang build system, using ASan on 32-bit
# binaries on x86_64 host is problematic.
# TODO(eugenis): re-enable.
2012-11-28 01:04:56 +04:00
'-fsanitize=address',
'-w', # http://crbug.com/162783
2012-02-16 15:42:12 +04:00
],
2011-09-21 00:35:01 +04:00
'ldflags!': [
2012-11-28 03:41:44 +04:00
'-fsanitize=address',
2011-09-21 00:35:01 +04:00
'-Wl,-z,noexecstack',
'-Wl,--gc-sections',
'-Wl,-O1',
'-Wl,--as-needed',
2013-09-03 03:17:22 +04:00
'-Wl,--warn-shared-textrel',
'-Wl,--fatal-warnings',
2011-09-21 00:35:01 +04:00
],
}],
2013-03-13 15:13:39 +04:00
# Settings for building host targets on mac.
['_toolset=="host" and host_os=="mac"', {
'ldflags!': [
'-Wl,-z,now',
'-Wl,-z,relro',
],
}],
2011-09-21 00:35:01 +04:00
],
},
}],
2010-04-01 04:35:15 +04:00
['OS=="solaris"', {
'cflags!': ['-fvisibility=hidden'],
'cflags_cc!': ['-fvisibility-inlines-hidden'],
}],
2012-06-30 02:12:20 +04:00
['OS=="mac" or OS=="ios"', {
2009-02-26 00:26:55 +03:00
'target_defaults': {
2009-03-19 22:26:42 +03:00
'mac_bundle': 0,
2009-02-26 00:26:55 +03:00
'xcode_settings': {
'ALWAYS_SEARCH_USER_PATHS': 'NO',
2012-10-19 04:24:24 +04:00
# Don't link in libarclite_macosx.a, see http://crbug.com/156530.
'CLANG_LINK_OBJC_RUNTIME': 'NO', # -fno-objc-link-runtime
2013-09-13 06:22:31 +04:00
'COPY_PHASE_STRIP': 'NO',
2009-08-13 22:11:04 +04:00
'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
2009-09-16 21:31:25 +04:00
# GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden
'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
2009-08-13 22:11:04 +04:00
'GCC_OBJC_CALL_CXX_CDTORS': 'YES', # -fobjc-call-cxx-cdtors
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror
2009-02-26 00:26:55 +03:00
'GCC_VERSION': '4.2',
2009-08-13 22:11:04 +04:00
'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
2009-02-26 00:26:55 +03:00
'USE_HEADERMAP': 'NO',
2010-06-21 19:19:04 +04:00
'WARNING_CFLAGS': [
'-Wall',
'-Wendif-labels',
'-Wextra',
# Don't warn about unused function parameters.
'-Wno-unused-parameter',
# Don't warn about the "struct foo f = {0};" initialization
# pattern.
'-Wno-missing-field-initializers',
],
2009-03-12 22:09:24 +03:00
'conditions': [
['chromium_mac_pch', {'GCC_PRECOMPILE_PREFIX_HEADER': 'YES'},
2009-09-16 02:42:59 +04:00
{'GCC_PRECOMPILE_PREFIX_HEADER': 'NO'}
],
2012-10-29 14:57:31 +04:00
# Note that the prebuilt Clang binaries should not be used for iOS
# development except for ASan builds.
2010-09-22 04:09:28 +04:00
['clang==1', {
2013-09-01 05:37:02 +04:00
# gnu++11 instead of c++11 is needed because some code uses
# typeof() (a GNU extension).
# TODO(thakis): Eventually switch this to c++11 instead of
# gnu++11 (once typeof can be removed, which is blocked on c++11
# being available everywhere).
'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++11', # -std=gnu++11
2012-11-16 20:58:44 +04:00
# Warn if automatic synthesis is triggered with
# the -Wobjc-missing-property-synthesis flag.
2012-11-15 04:25:53 +04:00
'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'YES',
2011-09-07 01:53:30 +04:00
'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
2010-09-22 04:09:28 +04:00
'WARNING_CFLAGS': [
2011-04-05 23:49:07 +04:00
'-Wheader-hygiene',
2012-12-04 20:01:52 +04:00
# This warns on using ints as initializers for floats in
# initializer lists (e.g. |int a = f(); CGSize s = { a, a };|),
# which happens in several places in chrome code. Not sure if
# this is worth fixing.
'-Wno-c++11-narrowing',
2010-09-22 04:09:28 +04:00
# 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',
2013-05-01 01:40:07 +04:00
2013-11-09 08:18:21 +04:00
# TODO(thakis): This used to be implied by -Wno-unused-function,
# which we no longer use. Check if it makes sense to remove
# this as well. http://crbug.com/316352
'-Wno-unneeded-internal-declaration',
2012-01-29 13:02:10 +04:00
# Warns on switches on enums that cover all enum values but
# also contain a default: branch. Chrome is full of that.
'-Wno-covered-switch-default',
enable -Wstring-conversion when compiling with clang
Summary of try run with flag enabled as warning:
On linux_clang, there's false positives from a bunch of assert usage that does !"string" or "string" for a true or false value. It's only in third_party (Mesa, skia, libjingle, etc.) so it probably wouldn't be too hard to disable the warnings in those subtrees.
It diagnoses 4 useful locations:
1.
../../base/debug/trace_event_unittest.cc:70:41: warning: implicit conversion turns string literal into bool: 'const char [2]' to 'bool' [-Wstring-conversion]
TraceLog::GetInstance()->SetEnabled("*");
~~~~~~~~ ^~~
2.
../../sync/syncable/entry_kernel.cc:77:38: warning: implicit conversion turns string literal into bool: 'const char [5]' to 'bool' [-Wstring-conversion]
value->SetBoolean("encrypted", "true");
~~~~~ ^~~~~~
3.
../../chrome/browser/webdata/web_data_service.cc:334:17: warning: implicit conversion turns string literal into bool: 'const char [44]' to 'bool' [-Wstring-conversion]
DLOG_ASSERT("WebDataService dtor called without Shutdown");
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../base/logging.h:595:43: note: expanded from macro 'DLOG_ASSERT'
4.
../../chrome/browser/renderer_host/web_cache_manager_unittest.cc:259:20: warning: implicit conversion turns string literal into bool: 'const char [29]' to 'bool' [-Wstring-conversion]
EXPECT_FALSE("Unexpected entry in strategy");
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Finding #1 is what made me look into this, #3 and #4 are not doing what they're supposed to, and #2 is kind of funny so not all is lost.
So, 3 bugs and 1 very-close-to-a-bug: seems worth enabling.
R=thakis@chromium.org
TBR=darin@chromium.org, dhollowa@chromium.org, brettw@chromium.org, zea@chromium.org
BUG=177306
Review URL: https://chromiumcodereview.appspot.com/12258039
git-svn-id: http://src.chromium.org/svn/trunk/src/build@183998 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-02-22 07:37:51 +04:00
# Warns when a const char[] is converted to bool.
'-Wstring-conversion',
2014-03-14 00:46:01 +04:00
# Clang considers the `register` keyword as deprecated, but
# e.g. code generated by flex (used in angle) contains that
# keyword. http://crbug.com/255186
'-Wno-deprecated-register',
2014-03-26 04:14:35 +04:00
# TODO(thakis): Remove, http://crbug.com/341352
'-Wno-absolute-value',
2014-04-02 07:37:33 +04:00
# This warns on selectors from Cocoa headers (-length, -set).
# cfe-dev is currently discussing the merits of this warning.
# TODO(thakis): Reevaluate what to do with this, based one
# cfe-dev discussion.
'-Wno-selector-type-mismatch',
2014-02-13 22:17:35 +04:00
],
2013-07-02 19:13:24 +04:00
2014-02-13 22:17:35 +04:00
'conditions': [
['clang_xcode==0', {
'CC': '$(SOURCE_ROOT)/<(clang_dir)/clang',
'LDPLUSPLUS': '$(SOURCE_ROOT)/<(clang_dir)/clang++',
}],
2010-09-22 04:09:28 +04:00
],
}],
2014-02-13 22:17:35 +04:00
['clang==1 and clang_xcode==0 and clang_use_chrome_plugins==1', {
2011-02-11 19:43:46 +03:00
'OTHER_CFLAGS': [
2012-05-19 10:36:31 +04:00
'<@(clang_chrome_plugins_flags)',
2011-02-11 19:43:46 +03:00
],
}],
2014-02-13 22:17:35 +04:00
['clang==1 and clang_xcode==0 and clang_load!=""', {
2011-01-28 05:57:59 +03:00
'OTHER_CFLAGS': [
'-Xclang', '-load', '-Xclang', '<(clang_load)',
2011-12-02 07:41:53 +04:00
],
}],
2014-02-13 22:17:35 +04:00
['clang==1 and clang_xcode==0 and clang_add_plugin!=""', {
2011-12-02 07:41:53 +04:00
'OTHER_CFLAGS': [
2011-01-28 05:57:59 +03:00
'-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
],
}],
2012-01-19 07:15:48 +04:00
['clang==1 and "<(GENERATOR)"=="ninja"', {
'OTHER_CFLAGS': [
# See http://crbug.com/110262
'-fcolor-diagnostics',
],
}],
2014-04-03 05:49:49 +04:00
['OS=="ios" and target_subarch!="arm32" and \
2014-04-10 00:53:00 +04:00
"<(GENERATOR)"=="xcode"', {
2014-04-03 05:49:49 +04:00
'OTHER_CFLAGS': [
# TODO(ios): when building Chrome for iOS on 64-bit platform
# with Xcode, the -Wshorted-64-to-32 warning is automatically
# enabled. This cause failures when compiling protobuf code,
# so disable the warning. http://crbug.com/359107
'-Wno-shorten-64-to-32',
],
}],
2009-03-12 22:09:24 +03:00
],
2009-02-26 00:26:55 +03:00
},
2011-09-07 01:53:30 +04:00
'conditions': [
['clang==1', {
'variables': {
'clang_dir': '../third_party/llvm-build/Release+Asserts/bin',
},
}],
2011-11-25 14:34:35 +04:00
['asan==1', {
'xcode_settings': {
'OTHER_CFLAGS': [
2012-11-28 01:04:56 +04:00
'-fsanitize=address',
2014-03-13 14:55:07 +04:00
'-mllvm -asan-globals=0', # http://crbug.com/352073
2012-11-28 01:04:56 +04:00
'-w', # http://crbug.com/162783
2014-05-16 15:39:55 +04:00
'-gline-tables-only',
2011-11-25 14:34:35 +04:00
],
},
}],
2014-01-18 01:01:36 +04:00
['asan_coverage!=0', {
2014-01-16 07:25:03 +04:00
'target_conditions': [
['_toolset=="target"', {
'cflags': [
2014-01-18 01:01:36 +04:00
'-mllvm -asan-coverage=<(asan_coverage)',
2014-01-16 07:25:03 +04:00
],
}],
],
}],
2011-09-07 01:53:30 +04:00
],
2009-02-26 00:26:55 +03:00
'target_conditions': [
['_type!="static_library"', {
2009-04-16 19:30:46 +04:00
'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
2012-08-24 23:05:08 +04:00
'conditions': [
['asan==1', {
'xcode_settings': {
'OTHER_LDFLAGS': [
2012-11-28 03:41:44 +04:00
'-fsanitize=address',
2012-08-24 23:05:08 +04:00
],
},
}],
2013-12-29 01:27:44 +04:00
['mac_write_linker_maps==1', {
'xcode_settings': {
'OTHER_LDFLAGS': [
'-Wl,-map,>(_target_name).map',
],
},
}],
2012-08-24 23:05:08 +04:00
],
2009-04-16 19:30:46 +04:00
}],
['_mac_bundle', {
'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
2013-03-12 15:56:31 +04:00
'target_conditions': [
['_type=="executable"', {
'conditions': [
['asan==1', {
'postbuilds': [
{
'variables': {
# Define copy_asan_dylib_path in a variable ending in
# _path so that gyp understands it's a path and
# performs proper relativization during dict merging.
'copy_asan_dylib_path':
'mac/copy_asan_runtime_dylib.sh',
},
'postbuild_name': 'Copy ASan runtime dylib',
'action': [
'<(copy_asan_dylib_path)',
],
},
],
}],
],
}],
],
2009-02-28 03:50:08 +03:00
}],
2012-10-29 14:57:31 +04:00
], # target_conditions
}, # target_defaults
}], # OS=="mac" or OS=="ios"
['OS=="mac"', {
'target_defaults': {
2014-05-16 15:43:08 +04:00
'defines': [
# Prevent Mac OS X AssertMacros.h from defining macros that collide
# with common names, like 'check', 'require', and 'verify'.
# (Included by system header. Also exists on iOS but not included.)
# http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h
'__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0',
],
2012-10-29 14:57:31 +04:00
'variables': {
# These should end with %, but there seems to be a bug with % in
# variables that are intended to be set to different values in
# different targets, like these.
'mac_pie': 1, # Most executables can be position-independent.
# Strip debugging symbols from the target.
'mac_strip': '<(mac_strip_release)',
2012-12-19 15:09:37 +04:00
'conditions': [
['asan==1', {
'conditions': [
['mac_want_real_dsym=="default"', {
2012-12-24 14:50:35 +04:00
'mac_real_dsym': 1,
2012-12-19 15:09:37 +04:00
}, {
'mac_real_dsym': '<(mac_want_real_dsym)'
}],
],
}, {
'conditions': [
['mac_want_real_dsym=="default"', {
'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
}, {
'mac_real_dsym': '<(mac_want_real_dsym)'
}],
],
}],
],
2012-10-29 14:57:31 +04:00
},
'xcode_settings': {
'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
# (Equivalent to -fPIC)
# MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
# Keep pch files below xcodebuild/.
'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders',
2013-07-30 03:35:39 +04:00
'OTHER_CFLAGS': [
# Someday this can be replaced by an 'GCC_STRICT_ALIASING': 'NO'
# xcode_setting, but not until all downstream projects' mac bots are
# using xcode >= 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.
],
2012-10-29 14:57:31 +04:00
},
'target_conditions': [
2011-08-11 05:12:10 +04:00
['_type=="executable"', {
'postbuilds': [
{
# Arranges for data (heap) pages to be protected against
2011-08-24 07:33:36 +04:00
# 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").
2011-08-11 05:12:10 +04:00
'variables': {
2011-08-24 07:33:36 +04:00
# 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',
2011-09-08 19:33:17 +04:00
'change_mach_o_flags_options%': [
2011-08-24 18:59:13 +04:00
],
'target_conditions': [
2011-09-08 19:33:17 +04:00
['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.
2011-08-24 18:59:13 +04:00
'change_mach_o_flags_options': [
'--no-pie',
],
}],
],
2011-08-11 05:12:10 +04:00
},
2011-08-24 07:33:36 +04:00
'postbuild_name': 'Change Mach-O Flags',
'action': [
'<(change_mach_o_flags_path)',
2011-08-24 18:59:13 +04:00
'>@(change_mach_o_flags_options)',
2011-08-24 07:33:36 +04:00
],
2011-08-11 05:12:10 +04:00
},
],
2011-09-02 19:34:00 +04:00
'conditions': [
['asan==1', {
'variables': {
'asan_saves_file': 'asan.saves',
},
'xcode_settings': {
2011-11-25 11:26:56 +04:00
'CHROMIUM_STRIP_SAVE_FILE': '<(asan_saves_file)',
2011-09-02 19:34:00 +04:00
},
}],
],
2011-09-08 19:33:17 +04:00
'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)
],
},
}],
],
2011-07-01 04:34:46 +04:00
}],
2010-09-02 20:16:58 +04:00
['(_type=="executable" or _type=="shared_library" or \
_type=="loadable_module") and mac_strip!=0', {
2009-06-01 20:01:20 +04:00
'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': {
2009-12-22 04:52:50 +03:00
'Release_Base': {
2009-06-01 20:01:20 +04:00
'xcode_settings': {
'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
'DEPLOYMENT_POSTPROCESSING': 'YES',
'STRIP_INSTALLED_PRODUCT': 'YES',
2009-08-05 23:26:07 +04:00
'target_conditions': [
2010-06-01 22:30:25 +04:00
['_type=="shared_library" or _type=="loadable_module"', {
2009-08-05 23:26:07 +04:00
# 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',
2012-12-24 14:13:40 +04:00
}], # _type=="shared_library" or _type=="loadable_module"
['_type=="executable"', {
'conditions': [
['asan==1', {
'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)',
}]
],
}], # _type=="executable" and asan==1
2009-08-05 23:26:07 +04:00
], # target_conditions
}, # xcode_settings
}, # configuration "Release"
}, # configurations
2009-06-01 20:01:20 +04:00
}, { # 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)'],
},
2009-08-05 23:26:07 +04:00
], # postbuilds
}], # mac_real_dsym
], # target_conditions
2010-09-02 20:16:58 +04:00
}], # (_type=="executable" or _type=="shared_library" or
# _type=="loadable_module") and mac_strip!=0
2009-08-05 23:26:07 +04:00
], # target_conditions
}, # target_defaults
}], # OS=="mac"
2012-06-30 02:12:20 +04:00
['OS=="ios"', {
'target_defaults': {
'xcode_settings' : {
2013-05-21 15:08:49 +04:00
# TODO(stuartmorgan): switch to c++0x (see TODOs in the clang
# section above).
'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++0x',
2014-02-13 22:17:35 +04:00
'conditions': [
2014-03-12 23:06:57 +04:00
# Older Xcodes do not support -Wno-deprecated-register, so pass an
# additional flag to suppress the "unknown compiler option" error.
# Restrict this flag to builds that are either compiling with Xcode
# or compiling with Xcode's Clang. This will allow Ninja builds to
# continue failing on unknown compiler options.
# TODO(rohitrao): This flag is temporary and should be removed as
# soon as the iOS bots are updated to use Xcode 5.1.
2014-03-14 00:46:01 +04:00
['clang_xcode==1', {
2014-03-12 23:06:57 +04:00
'WARNING_CFLAGS': [
'-Wno-unknown-warning-option',
],
}],
# Limit the valid architectures depending on "target_subarch".
# This need to include the "arm" architectures but also the "x86"
# ones (they are used when building for the simulator).
2014-02-13 22:17:35 +04:00
['target_subarch=="arm32"', {
'VALID_ARCHS': ['armv7', 'i386'],
}],
['target_subarch=="arm64"', {
'VALID_ARCHS': ['arm64', 'x86_64'],
}],
['target_subarch=="both"', {
'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
}],
],
2012-06-30 02:12:20 +04:00
},
'target_conditions': [
2013-05-14 01:29:47 +04:00
['_toolset=="host"', {
'xcode_settings': {
'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
2014-02-13 22:17:35 +04:00
'VALID_ARCHS': [
'x86_64',
],
2013-10-30 02:31:51 +04:00
'ARCHS': [
2014-02-13 22:17:35 +04:00
'x86_64',
2013-10-30 02:31:51 +04:00
],
2013-05-14 01:29:47 +04:00
},
}],
['_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)',
2014-02-13 22:17:35 +04:00
'ARCHS': ['$(ARCHS_STANDARD_INCLUDING_64_BIT)'],
2013-05-14 01:29:47 +04:00
},
}],
2012-06-30 02:12:20 +04:00
['_type=="executable"', {
'configurations': {
'Release_Base': {
'xcode_settings': {
'DEPLOYMENT_POSTPROCESSING': 'YES',
'STRIP_INSTALLED_PRODUCT': 'YES',
},
},
2012-11-05 21:11:44 +04:00
'Debug_Base': {
'xcode_settings': {
# Remove dSYM to reduce build time.
'DEBUG_INFORMATION_FORMAT': 'dwarf',
},
},
2012-06-30 02:12:20 +04:00
},
2013-10-30 02:31:51 +04:00
'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*]': '',
}],
],
},
2012-06-30 02:12:20 +04:00
}],
], # target_conditions
}, # target_defaults
}], # OS=="ios"
2009-02-26 00:26:55 +03:00
['OS=="win"', {
'target_defaults': {
'defines': [
2012-07-02 02:10:30 +04:00
'_WIN32_WINNT=0x0602',
'WINVER=0x0602',
2009-02-26 00:26:55 +03:00
'WIN32',
'_WINDOWS',
'NOMINMAX',
2011-08-13 04:52:28 +04:00
'PSAPI_VERSION=1',
2009-02-26 00:26:55 +03:00
'_CRT_RAND_S',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
2010-06-30 22:52:27 +04:00
'_ATL_NO_OPENGL',
2009-02-26 00:26:55 +03:00
],
2010-06-21 22:06:52 +04:00
'conditions': [
2011-12-21 01:37:37 +04:00
['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',
},
2014-03-14 20:48:30 +04:00
'msvs_settings': {
'VCLinkerTool': {
# Set /LTCG for the official builds.
'LinkTimeCodeGeneration': '1',
},
},
2011-12-21 01:37:37 +04:00
'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',
},
},
},
],
],
},
],
2010-06-21 22:06:52 +04:00
['component=="static_library"', {
'defines': [
'_HAS_EXCEPTIONS=0',
],
}],
WinDDK ATL and MSVC express 2008/2005 compatability
Gives 'out of the box' compatability with VC2008 express - i.e. no modifications needed to system headers or .gyp* files or related hacks. Just set the GYP_MSVS_VERSION to 200Xe (e for express, same as the linked blog on the issue and first google hit as well).
1) Changes to build\common.gypi to turn off to define COMPILER_MSVC_EXPRESS if a express is detected (through the GYP_MSVC_VERSION environment variable), turn off the _SECURE_ATL define (which is flagged as an error with WinDDK's ATL, _SECURE_ATL adds [more] CRT checks to other ATL versions) and hard to link to the atl stdthunk library with express editions. Also, explicitly link to the base WinSDK libraries in common.gypi and mini_installer.gypi for MSVC 2005 express.
2) Fixes a few .cc files that have the wrong include order with the ATL headers when using the Windows DDK ATL. The Windows DDK ATL brings in intsafe.h (WinSDK, not WinDDK) with atlwin.h and generates multiple INTXX_MIN/MAX def warnings which get
flagged as errors with the warnings as errors flag if not included before other libraries that have the same definitions like ICU.
3) Changes to .rc files to avoid pulling in afxres.h (an MFC header -
it's available in the WinDDK) and winres.h which VCExpress doesn't have (it's available in a WinSDK sample, but that kind of the purpose of it). The main Chromium .rc files are already structured this way, I just changed the rest and changed the output of grit to do the same.
4) Removes the memset obj file linking in mini_installer.gyp and simply implements memset for mini_installer.cc.
Only changes to the chromium branch now. There are some .rc files in the Python26, Native Client, and Angle in samples that could #3 changes. They are not required for Chromium, however.
------
VC2005SP1 can be downloaded at
http://www.microsoft.com/downloads/en/details.aspx?FamilyId=7B0B0339-613A-46E6-AB4D-080D4D4A8C4E&displaylang=en
(or non-SP1 at http://download.microsoft.com/download/8/3/a/83aad8f9-38ba-4503-b3cd-ba28c360c27b/ENU/vcsetup.exe)
VC2008SP1 can be downloaded at
http://www.microsoft.com/downloads/en/details.aspx?FamilyId=F3FBB04E-92C2-4701-B4BA-92E26E408569&displaylang=en
currently.
The base developer instructions work fine afterwards with a couple tweaks for express versions:
http://www.chromium.org/developers/how-tos/build-instructions-windows
Under "Additional (free) downloads" under step 2:
X) Only the first 3 Non-SP KB Patches are needed for express. Don't forget to forget GYP_MSVS_VERSION environment as appropriate - 2008e for Visual C++ 2008 Express, for example.
Under "Additional (free) downloads" after step 5
[These only apply to 2008 express, 2005 works fine out of the box]:
6A) Download the WinDDK for the atl headers and libs -
http://msdn.microsoft.com/en-us/windows/hardware/gg487463.aspx. It works fine, but you do not need to install the whole DDK. In the WDK directory just install headers.msi, libs_x86fre.msi, and libs_x64fre.msi; just grab the atl headers and atl*.lib libs; right click the installers and uninstall afterwards. Add the appropriate include and lib paths to your global settings.
6B) To build x64 targets (x64 Native Client) download:
http://www.cppblog.com/Files/xcpp/VCE64BIT_WIN7SDK.zip
Follow the readme instructions.
Further information behind that and x64 target building with express:
- http://jenshuebel.wordpress.com/2009/02/12/visual-c-2008-express-edition-and-64-bit-targets/
- http://www.cppblog.com/xcpp/archive/2009/09/09/vc2008express_64bit_win7sdk.html
----------------
BUG=1433, 5026, 72885
TEST=Compiles in both Debug and Release mode in Visual C++ Express 2008/2005 and does not effect other build setups. In addition, the WinDDK ATL compiles with the secure_atl=0 in the GYP_DEFINES environment variable on non-express versions of MSVC.
Review URL: http://codereview.chromium.org/6676030
git-svn-id: http://src.chromium.org/svn/trunk/src/build@78921 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-03-21 23:58:50 +03:00
['secure_atl', {
'defines': [
'_SECURE_ATL',
],
}],
2012-10-18 11:11:26 +04:00
['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',
],
2013-10-28 23:30:43 +04:00
}],
2010-06-21 22:06:52 +04:00
],
2009-07-21 03:00:20 +04:00
'msvs_system_include_dirs': [
2012-07-03 01:48:05 +04:00
'<(windows_sdk_path)/Include/shared',
'<(windows_sdk_path)/Include/um',
'<(windows_sdk_path)/Include/winrt',
2009-02-26 00:26:55 +03:00
'$(VSInstallDir)/VC/atlmfc/include',
],
2013-11-28 02:52:39 +04:00
'msvs_cygwin_shell': 0,
2013-04-26 12:12:00 +04:00
'msvs_disabled_warnings': [4351, 4355, 4396, 4503, 4819,
2011-05-03 06:04:11 +04:00
# 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,
2013-04-26 12:12:00 +04:00
4310, 4428, 4481, 4505, 4510, 4512, 4530, 4610, 4611, 4701, 4702,
4706,
2011-05-03 06:04:11 +04:00
],
2009-02-26 00:26:55 +03:00
'msvs_settings': {
'VCCLCompilerTool': {
2012-09-07 05:10:44 +04:00
'AdditionalOptions': ['/MP'],
2009-02-26 00:26:55 +03:00
'MinimalRebuild': 'false',
'BufferSecurityCheck': 'true',
'EnableFunctionLevelLinking': 'true',
'RuntimeTypeInfo': 'false',
2011-05-03 06:04:11 +04:00
'WarningLevel': '4',
2009-02-26 00:26:55 +03:00
'WarnAsError': 'true',
'DebugInformationFormat': '3',
2009-07-31 23:58:58 +04:00
'conditions': [
2010-06-21 22:06:52 +04:00
['component=="shared_library"', {
'ExceptionHandling': '1', # /EHsc
}, {
'ExceptionHandling': '0',
}],
2009-07-31 23:58:58 +04:00
],
2009-02-26 00:26:55 +03:00
},
'VCLibrarianTool': {
2010-01-04 09:40:16 +03:00
'AdditionalOptions': ['/ignore:4221'],
2010-06-10 01:31:37 +04:00
'AdditionalLibraryDirectories': [
2012-07-03 01:48:05 +04:00
'<(windows_sdk_path)/Lib/win8/um/x86',
2010-06-10 01:31:37 +04:00
],
2009-02-26 00:26:55 +03:00
},
'VCLinkerTool': {
'AdditionalDependencies': [
'wininet.lib',
2011-01-13 23:27:50 +03:00
'dnsapi.lib',
2009-02-26 00:26:55 +03:00
'version.lib',
'msimg32.lib',
'ws2_32.lib',
'usp10.lib',
'psapi.lib',
2009-04-24 04:13:08 +04:00
'dbghelp.lib',
2011-04-28 22:51:48 +04:00
'winmm.lib',
'shlwapi.lib',
2009-02-26 00:26:55 +03:00
],
2010-06-10 01:31:37 +04:00
'AdditionalLibraryDirectories': [
2012-07-03 01:48:05 +04:00
'<(windows_sdk_path)/Lib/win8/um/x86',
2010-06-10 01:31:37 +04:00
],
2009-02-26 00:26:55 +03:00
'GenerateDebugInformation': 'true',
'MapFileName': '$(OutDir)\\$(TargetName).map',
'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
'FixedBaseAddress': '1',
2009-05-22 05:40:48 +04:00
# 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',
2009-02-26 00:26:55 +03:00
},
'VCMIDLTool': {
'GenerateStublessProxies': 'true',
2012-03-31 04:03:09 +04:00
'TypeLibraryName': '$(InputName).tlb',
'OutputDirectory': '$(IntDir)',
'HeaderFileName': '$(InputName).h',
2012-04-07 05:49:33 +04:00
'DLLDataFileName': '$(InputName).dlldata.c',
2012-03-31 04:03:09 +04:00
'InterfaceIdentifierFileName': '$(InputName)_i.c',
'ProxyFileName': '$(InputName)_p.c',
2009-02-26 00:26:55 +03:00
},
'VCResourceCompilerTool': {
'Culture' : '1033',
2010-05-08 00:41:38 +04:00
'AdditionalIncludeDirectories': [
'<(DEPTH)',
'<(SHARED_INTERMEDIATE_DIR)',
],
2009-02-26 00:26:55 +03:00
},
2013-07-31 00:24:30 +04:00
'target_conditions': [
2014-02-26 23:09:47 +04:00
['_type=="executable"', {
'VCManifestTool': {
'EmbedManifest': 'true',
},
}],
2013-07-31 00:24:30 +04:00
['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', {
'VCManifestTool': {
'AdditionalManifestFiles': [
'>(win_exe_compatibility_manifest)',
],
},
}],
],
2014-01-24 17:26:35 +04:00
'conditions': [
['clang==1', {
# Building with Clang on Windows is a work in progress and very
# experimental. See crbug.com/82385.
'VCCLCompilerTool': {
'WarnAsError': 'false',
'RuntimeTypeInfo': 'false',
'AdditionalOptions': [
2014-04-12 07:07:46 +04:00
'-fmsc-version=1800',
2014-01-24 17:26:35 +04:00
'/fallback',
# Many files use intrinsics without including this header.
# TODO(hans): Fix those files, or move this to sub-GYPs.
'/FIIntrin.h',
# TODO(hans): Make this list shorter eventually.
'-Qunused-arguments',
'-Wno-c++11-compat-deprecated-writable-strings',
'-Wno-char-subscripts',
'-Wno-deprecated-declarations',
'-Wno-deprecated-register',
'-Wno-empty-body',
'-Wno-enum-conversion',
2014-02-11 06:05:13 +04:00
'-Wno-extra-tokens',
'-Wno-ignored-attributes',
2014-01-24 17:26:35 +04:00
'-Wno-incompatible-pointer-types',
2014-02-11 06:05:13 +04:00
'-Wno-int-to-void-pointer-cast',
'-Wno-invalid-noreturn',
2014-01-24 17:26:35 +04:00
'-Wno-logical-op-parentheses',
'-Wno-microsoft',
'-Wno-missing-braces',
2014-02-11 06:05:13 +04:00
'-Wno-missing-declarations',
2014-01-24 17:26:35 +04:00
'-Wno-msvc-include',
2014-03-26 04:14:35 +04:00
'-Wno-absolute-value',
2014-01-24 17:26:35 +04:00
'-Wno-null-dereference',
'-Wno-overloaded-virtual',
'-Wno-parentheses',
'-Wno-pointer-sign',
'-Wno-reorder',
'-Wno-return-type-c-linkage',
'-Wno-self-assign',
2014-02-11 06:05:13 +04:00
'-Wno-sometimes-uninitialized',
2014-01-24 17:26:35 +04:00
'-Wno-switch',
'-Wno-tautological-compare',
'-Wno-unknown-pragmas',
'-Wno-unsequenced',
'-Wno-unused-function',
'-Wno-unused-private-field',
'-Wno-unused-value',
'-Wno-unused-variable',
'-ferror-limit=1',
],
},
}],
2014-02-22 04:27:11 +04:00
['asan==1', {
# ASan on Windows is a work in progress and very experimental.
# See crbug.com/345874.
'VCCLCompilerTool': {
'AdditionalOptions': [
'-fsanitize=address',
],
},
'VCLinkerTool': {
'AdditionalLibraryDirectories': [
# TODO(hans): If make_clang_dir is absolute, this breaks.
2014-05-03 01:47:19 +04:00
'<(DEPTH)/<(make_clang_dir)/lib/clang/3.5.0/lib/windows',
2014-02-22 04:27:11 +04:00
],
},
'target_conditions': [
['_type=="executable"', {
'VCLinkerTool': {
'AdditionalDependencies': [
'clang_rt.asan-i386.lib',
],
},
}],
['_type=="shared_library" or _type=="loadable_module"', {
'VCLinkerTool': {
'AdditionalDependencies': [
'clang_rt.asan_dll_thunk-i386.lib',
],
},
}],
],
}],
2014-01-24 17:26:35 +04:00
],
2009-02-26 00:26:55 +03:00
},
2009-06-29 21:58:25 +04:00
},
2009-02-26 00:26:55 +03:00
}],
2011-05-12 22:18:34 +04:00
['disable_nacl==1', {
2009-10-02 23:00:31 +04:00
'target_defaults': {
'defines': [
'DISABLE_NACL',
],
},
}],
2009-12-08 01:07:56 +03:00
['OS=="win" and msvs_use_common_linker_extras', {
2009-07-04 02:00:19 +04:00
'target_defaults': {
'msvs_settings': {
'VCLinkerTool': {
'DelayLoadDLLs': [
'dbghelp.dll',
'dwmapi.dll',
2012-01-05 00:11:01 +04:00
'shell32.dll',
2009-07-04 02:00:19 +04:00
'uxtheme.dll',
],
},
},
2009-12-05 01:46:50 +03:00
'configurations': {
2009-12-22 04:52:50 +03:00
'x86_Base': {
2009-12-05 01:46:50 +03:00
'msvs_settings': {
'VCLinkerTool': {
2010-01-04 09:40:16 +03:00
'AdditionalOptions': [
'/safeseh',
2012-01-13 06:43:33 +04:00
'/dynamicbase',
2010-01-04 09:40:16 +03:00
'/ignore:4199',
'/ignore:4221',
'/nxcompat',
2013-06-20 14:47:43 +04:00
],
'conditions': [
2014-02-15 08:49:18 +04:00
['syzyasan==0', {
2013-06-20 14:47:43 +04:00
'AdditionalOptions': ['/largeaddressaware'],
}],
2010-01-04 09:40:16 +03:00
],
2009-12-05 01:46:50 +03:00
},
},
},
2009-12-22 04:52:50 +03:00
'x64_Base': {
2009-12-05 01:46:50 +03:00
'msvs_settings': {
'VCLinkerTool': {
2010-01-04 09:40:16 +03:00
'AdditionalOptions': [
2009-12-05 01:46:50 +03:00
# safeseh is not compatible with x64
2012-01-13 06:43:33 +04:00
'/dynamicbase',
2010-01-04 09:40:16 +03:00
'/ignore:4199',
'/ignore:4221',
'/nxcompat',
],
2009-12-05 01:46:50 +03:00
},
},
},
},
2009-07-04 02:00:19 +04:00
},
}],
2010-04-17 02:40:37 +04:00
['enable_new_npdevice_api==1', {
'target_defaults': {
'defines': [
'ENABLE_NEW_NPDEVICE_API',
],
},
}],
2013-04-27 05:53:19 +04:00
# 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',
],
},
}],
2014-05-12 15:10:16 +04:00
# We need a special case to handle the android webview build on mac because
# the host gcc there doesn't accept this flag, but the target gcc may
# require it.
['gcc_version>=48 and android_webview_build==1 and host_os=="mac"', {
'target_defaults': {
'target_conditions': [
['_toolset=="target"', {
'cflags!': [
'-Wno-unused-local-typedefs',
],
}],
],
},
}],
2014-02-13 22:17:35 +04:00
['clang==1 and ((OS!="mac" and OS!="ios") or clang_xcode==0) '
'and OS!="win"', {
2013-12-04 11:32:41 +04:00
'make_global_settings': [
['CC', '<(make_clang_dir)/bin/clang'],
['CXX', '<(make_clang_dir)/bin/clang++'],
['CC.host', '$(CC)'],
['CXX.host', '$(CXX)'],
2011-09-07 01:53:30 +04:00
],
}],
2014-01-29 05:59:21 +04:00
['clang==1 and OS=="win"', {
'make_global_settings': [
# On Windows, gyp's ninja generator only looks at CC.
['CC', '<(make_clang_dir)/bin/clang-cl'],
],
}],
2012-08-14 23:17:07 +04:00
['OS=="android" and clang==0', {
2012-03-20 14:45:27 +04:00
# Hardcode the compiler names in the Makefile so that
# it won't depend on the environment at make time.
2012-07-24 22:15:11 +04:00
'make_global_settings': [
2013-12-04 11:32:41 +04:00
['CC', '<!(/bin/echo -n <(android_toolchain)/*-gcc)'],
['CXX', '<!(/bin/echo -n <(android_toolchain)/*-g++)'],
['CC.host', '<!(which gcc)'],
['CXX.host', '<!(which g++)'],
2012-03-20 14:45:27 +04:00
],
}],
2013-04-27 08:10:26 +04:00
['OS=="linux" and target_arch=="mipsel"', {
2013-01-31 11:56:46 +04:00
'make_global_settings': [
['CC', '<(sysroot)/../bin/mipsel-linux-gnu-gcc'],
['CXX', '<(sysroot)/../bin/mipsel-linux-gnu-g++'],
['CC.host', '<!(which gcc)'],
['CXX.host', '<!(which g++)'],
],
}],
2013-12-04 11:32:41 +04:00
# TODO(yyanagisawa): supports GENERATOR==make
# make generator doesn't support CC_wrapper without CC
# in make_global_settings yet.
2014-02-27 22:46:26 +04:00
['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
2013-12-04 11:32:41 +04:00
'make_global_settings': [
['CC_wrapper', '<(gomadir)/gomacc'],
['CXX_wrapper', '<(gomadir)/gomacc'],
['CC.host_wrapper', '<(gomadir)/gomacc'],
['CXX.host_wrapper', '<(gomadir)/gomacc'],
],
}],
2009-02-26 00:26:55 +03:00
],
'xcode_settings': {
2009-11-07 00:57:50 +03:00
# DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
# This block adds *project-wide* configuration settings to each project
# file. It's almost always wrong to put things here. Specify your
# custom xcode_settings in target_defaults to add them to targets instead.
2012-06-30 02:12:20 +04:00
'conditions': [
2012-07-27 04:55:36 +04:00
# In an Xcode Project Info window, the "Base SDK for All Configurations"
# setting sets the SDK on a project-wide basis. In order to get the
# configured SDK to show properly in the Xcode UI, SDKROOT must be set
# here at the project level.
2012-10-06 04:46:29 +04:00
['OS=="mac"', {
2012-07-27 04:55:36 +04:00
'conditions': [
2012-10-06 04:46:29 +04:00
['mac_sdk_path==""', {
2012-07-27 04:55:36 +04:00
'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
2012-10-06 04:46:29 +04:00
}, {
'SDKROOT': '<(mac_sdk_path)', # -isysroot
2012-07-27 04:55:36 +04:00
}],
2012-10-06 04:46:29 +04:00
],
}],
['OS=="ios"', {
'conditions': [
['ios_sdk_path==""', {
2013-05-03 15:06:40 +04:00
'conditions': [
# TODO(justincohen): Ninja only supports simulator for now.
2013-10-30 02:31:51 +04:00
['"<(GENERATOR)"=="xcode"', {
2013-05-03 15:06:40 +04:00
'SDKROOT': 'iphoneos<(ios_sdk)', # -isysroot
2013-07-19 01:49:38 +04:00
}, {
'SDKROOT': 'iphonesimulator<(ios_sdk)', # -isysroot
2013-05-03 15:06:40 +04:00
}],
],
2012-10-06 04:46:29 +04:00
}, {
'SDKROOT': '<(ios_sdk_path)', # -isysroot
2012-07-27 04:55:36 +04:00
}],
],
2012-06-30 02:12:20 +04:00
}],
['OS=="ios"', {
# Target both iPhone and iPad.
'TARGETED_DEVICE_FAMILY': '1,2',
2013-11-05 23:11:42 +04:00
}, { # OS!="ios"
'conditions': [
['target_arch=="x64"', {
'ARCHS': [
'x86_64'
],
}],
['target_arch=="ia32"', {
'ARCHS': [
'i386'
],
}],
],
2013-10-31 22:40:00 +04:00
}],
2012-06-30 02:12:20 +04:00
],
2009-11-07 00:57:50 +03:00
2009-02-26 00:26:55 +03:00
# The Xcode generator will look for an xcode_settings section at the root
# of each dict and use it to apply settings on a file-wide basis. Most
# settings should not be here, they should be in target-specific
# xcode_settings sections, or better yet, should use non-Xcode-specific
# settings in target dicts. SYMROOT is a special case, because many other
# Xcode variables depend on it, including variables such as
# PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
# like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
# files to appear (when present) in the UI as actual files and not red
# red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
# and therefore SYMROOT, needs to be set at the project level.
2009-03-02 03:16:16 +03:00
'SYMROOT': '<(DEPTH)/xcodebuild',
2009-02-26 00:26:55 +03:00
},
2009-09-04 05:53:01 +04:00
}