2011-04-28 02:30:23 +04:00
|
|
|
# Copyright (c) 2011 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
|
2011-01-07 01:19:30 +03:00
|
|
|
# dict that operate on these variables (e.g., for setting 'toolkit_views',
|
|
|
|
# we need to have 'chromeos' already set).
|
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': {
|
|
|
|
# Whether we're building a ChromeOS build.
|
|
|
|
'chromeos%': 0,
|
2009-08-05 23:26:07 +04:00
|
|
|
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
# Whether the Views toolkit can use its Pure form when available
|
|
|
|
# or if it must only use GTK (the default at the moment).
|
|
|
|
# This is an intermediate step until all of Views is 'Pure',
|
|
|
|
# at which point we plan to remove those switches.
|
|
|
|
# This turns on the TOOLKIT_USES_PURE_VIEWS macro which is used
|
|
|
|
# to replace the corresponding GTK implementation in such a way
|
|
|
|
# that GTK and PureViews can coexist. This intermediate solution
|
|
|
|
# allow us to switch the view implementations using
|
|
|
|
# --use-pure-views, without breaking exiting gtk implementation.
|
|
|
|
'toolkit_uses_pure_views%': 0,
|
|
|
|
|
2011-01-07 22:04:43 +03:00
|
|
|
# Disable touch support by default.
|
|
|
|
'touchui%': 0,
|
2011-05-25 03:08:58 +04:00
|
|
|
|
2011-08-17 23:51:35 +04:00
|
|
|
# Disable webui dialog replacements for native dialogs by default.
|
|
|
|
# TODO(flackr): Change this to a runtime flag triggered by
|
|
|
|
# --pure-views so that these dialogs can be easily tested.
|
|
|
|
'webui_dialogs%': 0,
|
2011-07-14 19:22:18 +04:00
|
|
|
|
2011-05-25 03:08:58 +04:00
|
|
|
# Whether the compositor is enabled on views.
|
|
|
|
'views_compositor%': 0,
|
2011-08-24 23:03:35 +04:00
|
|
|
|
|
|
|
# Whether or not we are building with the Aura window manager.
|
2011-08-25 19:39:58 +04:00
|
|
|
'use_aura%': 0,
|
2011-01-07 22:04:43 +03:00
|
|
|
},
|
|
|
|
# Copy conditionally-set variables out one scope.
|
|
|
|
'chromeos%': '<(chromeos)',
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
'toolkit_uses_pure_views%': '<(toolkit_uses_pure_views)',
|
2011-01-07 22:04:43 +03:00
|
|
|
'touchui%': '<(touchui)',
|
2011-08-17 23:51:35 +04:00
|
|
|
'webui_dialogs%': '<(webui_dialogs)',
|
2011-05-25 03:08:58 +04:00
|
|
|
'views_compositor%': '<(views_compositor)',
|
2011-08-25 19:39:58 +04:00
|
|
|
'use_aura%': '<(use_aura)',
|
2011-01-07 01:19:30 +03:00
|
|
|
|
2010-01-12 07:29:59 +03:00
|
|
|
# Compute the architecture that we're building on.
|
|
|
|
'conditions': [
|
2011-05-18 21:25:37 +04:00
|
|
|
[ 'OS=="win" or OS=="mac"', {
|
|
|
|
'host_arch%': 'ia32',
|
|
|
|
}, {
|
2011-05-12 22:18:34 +04:00
|
|
|
# This handles the Unix platforms for which there is some support.
|
|
|
|
# Anything else gets passed through, which probably won't work very
|
|
|
|
# well; such hosts should pass an explicit target_arch to gyp.
|
2010-01-12 07:29:59 +03:00
|
|
|
'host_arch%':
|
2011-05-12 22:18:34 +04:00
|
|
|
'<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s/arm.*/arm/;s/i86pc/ia32/")',
|
2010-01-12 07:29:59 +03:00
|
|
|
}],
|
2011-01-07 22:04:43 +03:00
|
|
|
|
|
|
|
# Set default value of toolkit_views on for Windows, Chrome OS
|
|
|
|
# and the touch UI.
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
['OS=="win" or chromeos==1 or touchui==1 or toolkit_uses_pure_views==1', {
|
2011-01-07 22:04:43 +03:00
|
|
|
'toolkit_views%': 1,
|
|
|
|
}, {
|
|
|
|
'toolkit_views%': 0,
|
|
|
|
}],
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
|
|
|
|
# Views are always Pure in Touch case
|
|
|
|
['touchui==1', {
|
|
|
|
'toolkit_uses_pure_views%': 1,
|
|
|
|
}, {
|
|
|
|
'toolkit_uses_pure_views%': 0,
|
|
|
|
}],
|
2011-07-14 19:22:18 +04:00
|
|
|
|
2011-08-17 23:51:35 +04:00
|
|
|
# Use WebUI dialogs in TouchUI builds.
|
2011-07-14 19:22:18 +04:00
|
|
|
['touchui==1', {
|
2011-08-17 23:51:35 +04:00
|
|
|
'webui_dialogs%': 1,
|
2011-07-14 19:22:18 +04:00
|
|
|
}],
|
2011-08-24 23:03:35 +04:00
|
|
|
|
|
|
|
# Use the views compositor when using the Aura window manager.
|
2011-08-25 19:39:58 +04:00
|
|
|
['use_aura==1', {
|
2011-08-24 23:03:35 +04:00
|
|
|
'views_compositor%': 1,
|
|
|
|
}],
|
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)',
|
|
|
|
'touchui%': '<(touchui)',
|
2011-08-17 23:51:35 +04:00
|
|
|
'webui_dialogs%': '<(webui_dialogs)',
|
2011-01-07 01:19:30 +03:00
|
|
|
'host_arch%': '<(host_arch)',
|
2011-01-07 22:04:43 +03:00
|
|
|
'toolkit_views%': '<(toolkit_views)',
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
'toolkit_uses_pure_views%': '<(toolkit_uses_pure_views)',
|
2011-05-25 03:08:58 +04:00
|
|
|
'views_compositor%': '<(views_compositor)',
|
2011-08-25 19:39:58 +04:00
|
|
|
'use_aura%': '<(use_aura)',
|
2010-10-01 22:56:11 +04:00
|
|
|
|
2011-05-20 04:53:50 +04:00
|
|
|
# We used to provide a variable for changing how libraries were built.
|
|
|
|
# This variable remains until we can clean up all the users.
|
|
|
|
# This needs to be one nested variables dict in so that dependent
|
|
|
|
# gyp files can make use of it in their outer variables. (Yikes!)
|
|
|
|
# http://code.google.com/p/chromium/issues/detail?id=83308
|
|
|
|
'library%': 'static_library',
|
|
|
|
|
2011-01-07 01:19:30 +03:00
|
|
|
# Override branding to select the desired branding flavor.
|
|
|
|
'branding%': 'Chromium',
|
2010-04-27 02:58:17 +04:00
|
|
|
|
2011-01-07 01:19:30 +03: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',
|
2010-01-12 07:29:59 +03:00
|
|
|
|
|
|
|
# Default architecture we're building for is the architecture we're
|
|
|
|
# building on.
|
|
|
|
'target_arch%': '<(host_arch)',
|
2009-09-19 02:10:27 +04:00
|
|
|
|
2009-09-25 00:36:21 +04:00
|
|
|
# This variable tells WebCore.gyp and JavaScriptCore.gyp whether they are
|
|
|
|
# are built under a chromium full build (1) or a webkit.org chromium
|
|
|
|
# build (0).
|
|
|
|
'inside_chromium_build%': 1,
|
2009-10-02 23:59:54 +04:00
|
|
|
|
|
|
|
# Set to 1 to enable fast builds. It disables debug info for fastest
|
|
|
|
# compilation.
|
|
|
|
'fastbuild%': 0,
|
2010-02-03 20:02:27 +03:00
|
|
|
|
2011-04-17 00:48:51 +04:00
|
|
|
# Disable file manager component extension by default.
|
|
|
|
'file_manager_extension%': 0,
|
|
|
|
|
2011-08-05 08:00:47 +04:00
|
|
|
# Disable WebUI TaskManager by default.
|
|
|
|
'webui_task_manager%': 0,
|
|
|
|
|
2010-03-02 02:39:36 +03:00
|
|
|
# Python version.
|
2011-05-27 10:54:51 +04:00
|
|
|
'python_ver%': '2.6',
|
2010-03-02 02:39:36 +03:00
|
|
|
|
2010-02-27 00:53:43 +03:00
|
|
|
# Set ARM-v7 compilation flags
|
|
|
|
'armv7%': 0,
|
|
|
|
|
|
|
|
# Set Neon compilation flags (only meaningful if armv7==1).
|
|
|
|
'arm_neon%': 1,
|
2010-03-04 19:42:23 +03:00
|
|
|
|
|
|
|
# The system root for cross-compiles. Default: none.
|
|
|
|
'sysroot%': '',
|
2010-04-28 06:14:22 +04:00
|
|
|
|
|
|
|
# On Linux, we build with sse2 for Chromium builds.
|
|
|
|
'disable_sse2%': 0,
|
2010-06-09 02:43:45 +04:00
|
|
|
|
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
|
|
|
|
2010-06-21 22:06:52 +04:00
|
|
|
# Variable 'component' is for cases where we would like to build some
|
|
|
|
# components as dynamic shared libraries but still need variable
|
|
|
|
# 'library' for static libraries.
|
|
|
|
# By default, component is set to whatever library is set to 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-04-20 19:49:51 +04:00
|
|
|
# P2P APIs are compiled in by default. Set to 0 to disable.
|
|
|
|
# Also note that this should be enabled for remoting to compile.
|
|
|
|
'p2p_apis%': 1,
|
|
|
|
|
2011-06-01 17:56:25 +04:00
|
|
|
# Configuration policy is enabled by default. Set to 0 to disable.
|
|
|
|
'configuration_policy%': 1,
|
|
|
|
|
2011-07-11 14:22:56 +04:00
|
|
|
# Safe browsing is compiled in by default. Set to 0 to disable.
|
|
|
|
'safe_browsing%': 1,
|
|
|
|
|
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.
|
|
|
|
'clang_use_chrome_plugins%': 0,
|
|
|
|
|
2011-08-15 18:33:06 +04:00
|
|
|
# Enable building with ASAN (Clang's -fasan option).
|
|
|
|
# -fasan only works with clang, but asan=1 implies clang=1
|
|
|
|
# See https://sites.google.com/a/chromium.org/dev/developers/testing/addresssanitizer
|
|
|
|
'asan%': 0,
|
|
|
|
|
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,
|
|
|
|
|
2011-07-05 06:35:00 +04:00
|
|
|
# Enable navigator.registerProtocolHandler and supporting UI.
|
|
|
|
'enable_register_protocol_handler%': 1,
|
|
|
|
|
2011-08-01 06:34:01 +04:00
|
|
|
# Enable Web Intents and supporting UI.
|
|
|
|
'enable_web_intents%': 0,
|
|
|
|
|
2011-07-07 21:57:49 +04:00
|
|
|
# Smooth scrolling is disabled by default.
|
|
|
|
'enable_smooth_scrolling%': 0,
|
|
|
|
|
2011-07-20 02:07:48 +04:00
|
|
|
# Webrtc compilation is enabled by default. Set to 0 to disable.
|
|
|
|
'enable_webrtc%': 1,
|
|
|
|
|
2011-01-07 22:04:43 +03:00
|
|
|
'conditions': [
|
2011-06-21 23:20:22 +04:00
|
|
|
# Use Skia as WebKit renderer on Mac
|
|
|
|
['OS=="mac"', {
|
|
|
|
'use_skia%': 0,
|
|
|
|
}, {
|
|
|
|
'use_skia%': 1,
|
|
|
|
}],
|
|
|
|
|
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
|
|
|
}],
|
|
|
|
|
|
|
|
# Flags to use Gtk and X11 on non-Mac POSIX platforms
|
2011-05-18 21:25:37 +04:00
|
|
|
['OS=="win" or OS=="mac"', {
|
2011-05-12 22:18:34 +04:00
|
|
|
'toolkit_uses_gtk%': 0,
|
|
|
|
'use_x11%': 0,
|
2011-05-18 21:25:37 +04:00
|
|
|
}, {
|
2011-07-28 21:38:23 +04:00
|
|
|
# TODO(dnicoara) Wayland build should have these disabled, but
|
|
|
|
# currently GTK and X is too spread and it's hard to completely
|
|
|
|
# remove every dependency.
|
2011-05-18 21:25:37 +04:00
|
|
|
'toolkit_uses_gtk%': 1,
|
|
|
|
'use_x11%': 1,
|
2011-05-12 22:18:34 +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
|
|
|
|
# for Linux distributions.
|
|
|
|
['chromeos==1', {
|
|
|
|
'use_gnome_keyring%': 0,
|
|
|
|
}, {
|
|
|
|
'use_gnome_keyring%': 1,
|
|
|
|
}],
|
|
|
|
|
2011-01-07 22:04:43 +03:00
|
|
|
['toolkit_views==0 or OS=="mac"', {
|
|
|
|
# GTK+ and Mac wants Title Case strings
|
|
|
|
'use_titlecase_in_grd_files%': 1,
|
|
|
|
}],
|
|
|
|
|
2011-01-07 03:25:40 +03:00
|
|
|
# Enable some hacks to support Flapper only on Chrome OS.
|
|
|
|
['chromeos==1', {
|
|
|
|
'enable_flapper_hacks%': 1,
|
|
|
|
}, {
|
|
|
|
'enable_flapper_hacks%': 0,
|
|
|
|
}],
|
2011-04-17 00:48:51 +04:00
|
|
|
|
|
|
|
# Enable file manager extension by default on Chrome OS.
|
|
|
|
['chromeos==1', {
|
|
|
|
'file_manager_extension%': 1,
|
|
|
|
}, {
|
|
|
|
'file_manager_extension%': 0,
|
|
|
|
}],
|
2011-07-07 21:57:49 +04:00
|
|
|
|
2011-08-05 08:00:47 +04:00
|
|
|
# Enable WebUI TaskManager only on Chrome OS and Touch UI.
|
|
|
|
['chromeos==1 or touchui==1', {
|
|
|
|
'webui_task_manager%': 1,
|
|
|
|
}, {
|
|
|
|
'webui_task_manager%': 0,
|
|
|
|
}],
|
|
|
|
|
2011-09-03 07:09:40 +04:00
|
|
|
# Enable smooth scrolling for Mac, Win, Linux and ChromeOS
|
|
|
|
['OS=="linux" or OS=="mac" or OS=="win"', {
|
2011-07-07 21:57:49 +04:00
|
|
|
'enable_smooth_scrolling%': 1,
|
|
|
|
}, {
|
|
|
|
'enable_smooth_scrolling%': 0,
|
|
|
|
}],
|
2011-01-07 01:19:30 +03:00
|
|
|
],
|
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)',
|
2010-01-12 07:29:59 +03:00
|
|
|
'host_arch%': '<(host_arch)',
|
2011-05-20 04:53:50 +04:00
|
|
|
'library%': 'static_library',
|
2009-09-22 16:37:44 +04:00
|
|
|
'toolkit_views%': '<(toolkit_views)',
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
'toolkit_uses_pure_views%': '<(toolkit_uses_pure_views)',
|
2011-05-25 03:08:58 +04:00
|
|
|
'views_compositor%': '<(views_compositor)',
|
2011-08-25 19:39:58 +04:00
|
|
|
'use_aura%': '<(use_aura)',
|
2011-05-12 22:18:34 +04:00
|
|
|
'os_posix%': '<(os_posix)',
|
|
|
|
'toolkit_uses_gtk%': '<(toolkit_uses_gtk)',
|
2011-06-21 23:20:22 +04:00
|
|
|
'use_skia%': '<(use_skia)',
|
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)',
|
2011-01-07 03:25:40 +03:00
|
|
|
'enable_flapper_hacks%': '<(enable_flapper_hacks)',
|
2009-09-22 16:37:44 +04:00
|
|
|
'chromeos%': '<(chromeos)',
|
2010-08-11 00:10:49 +04:00
|
|
|
'touchui%': '<(touchui)',
|
2011-08-17 23:51:35 +04:00
|
|
|
'webui_dialogs%': '<(webui_dialogs)',
|
2011-03-01 22:26:20 +03:00
|
|
|
'file_manager_extension%': '<(file_manager_extension)',
|
2011-08-05 08:00:47 +04:00
|
|
|
'webui_task_manager%': '<(webui_task_manager)',
|
2009-09-25 00:36:21 +04:00
|
|
|
'inside_chromium_build%': '<(inside_chromium_build)',
|
2009-10-02 23:59:54 +04:00
|
|
|
'fastbuild%': '<(fastbuild)',
|
2010-03-02 02:39:36 +03:00
|
|
|
'python_ver%': '<(python_ver)',
|
2010-02-27 00:53:43 +03:00
|
|
|
'armv7%': '<(armv7)',
|
|
|
|
'arm_neon%': '<(arm_neon)',
|
2010-03-04 19:42:23 +03:00
|
|
|
'sysroot%': '<(sysroot)',
|
2010-04-28 06:14:22 +04:00
|
|
|
'disable_sse2%': '<(disable_sse2)',
|
2010-06-21 22:06:52 +04:00
|
|
|
'component%': '<(component)',
|
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)',
|
2011-07-20 02:07:48 +04:00
|
|
|
'enable_webrtc%': '<(enable_webrtc)',
|
2011-04-20 19:49:51 +04:00
|
|
|
'p2p_apis%': '<(p2p_apis)',
|
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-02-11 19:43:46 +03:00
|
|
|
'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
|
2011-08-15 18:33:06 +04:00
|
|
|
'asan%': '<(asan)',
|
2011-05-26 05:30:56 +04:00
|
|
|
'enable_register_protocol_handler%': '<(enable_register_protocol_handler)',
|
2011-07-07 21:57:49 +04:00
|
|
|
'enable_smooth_scrolling%': '<(enable_smooth_scrolling)',
|
2011-08-26 03:02:07 +04:00
|
|
|
'enable_web_intents%': '<(enable_web_intents)',
|
2011-08-11 22:20:22 +04:00
|
|
|
# Whether to build for Wayland display server
|
|
|
|
'use_wayland%': 0,
|
2011-06-23 04:05:39 +04:00
|
|
|
|
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,
|
|
|
|
|
2009-09-16 21:31:25 +04:00
|
|
|
# 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.5 SDK and sets the
|
|
|
|
# deployment target to 10.5. Other projects, such as O3D, may override
|
|
|
|
# these defaults.
|
|
|
|
'mac_sdk%': '10.5',
|
|
|
|
'mac_deployment_target%': '10.5',
|
2009-09-16 02:42:59 +04:00
|
|
|
|
2009-04-03 08:35:18 +04:00
|
|
|
# Set to 1 to enable code coverage. In addition to build changes
|
|
|
|
# (e.g. extra CFLAGS), also creates a new target in the src/chrome
|
|
|
|
# project file called "coverage".
|
|
|
|
# Currently ignored on Windows.
|
|
|
|
'coverage%': 0,
|
2009-04-08 16:55:49 +04:00
|
|
|
|
2009-04-22 05:16:42 +04:00
|
|
|
# Overridable specification for potential use of alternative
|
|
|
|
# JavaScript engines.
|
|
|
|
'javascript_engine%': 'v8',
|
|
|
|
|
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-11-14 01:21:01 +03:00
|
|
|
# Whether usage of OpenMAX is enabled.
|
|
|
|
'enable_openmax%': 0,
|
|
|
|
|
2010-05-10 21:04:48 +04:00
|
|
|
# Whether proprietary audio/video codecs are assumed to be included with
|
|
|
|
# this build (only meaningful if branding!=Chrome).
|
|
|
|
'proprietary_codecs%': 0,
|
|
|
|
|
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',
|
|
|
|
|
2011-08-18 22:30:06 +04:00
|
|
|
# Turn on Use Library Dependency Inputs for linking chrome.dll on Windows
|
|
|
|
# to get incremental linking to be faster in debug builds.
|
|
|
|
'incremental_chrome_dll%': 0,
|
|
|
|
|
2009-07-16 02:48:37 +04:00
|
|
|
# This is the location of the sandbox binary. Chrome looks for this before
|
|
|
|
# running the zygote process. If found, and SUID, it will be used to
|
|
|
|
# sandbox the zygote process and, thus, all renderer processes.
|
|
|
|
'linux_sandbox_path%': '',
|
|
|
|
|
2009-09-16 00:13:38 +04:00
|
|
|
# Set this to true to enable SELinux support.
|
|
|
|
'selinux%': 0,
|
2009-10-01 22:54:57 +04:00
|
|
|
|
2010-09-18 04:09:15 +04:00
|
|
|
# Set this to true when building with Clang.
|
|
|
|
# See http://code.google.com/p/chromium/wiki/Clang for details.
|
|
|
|
# TODO: eventually clang should behave identically to gcc, and this
|
|
|
|
# won't be necessary.
|
|
|
|
'clang%': 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%': '',
|
|
|
|
|
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',
|
|
|
|
|
2011-08-16 23:06:22 +04:00
|
|
|
# Enable strict glibc debug mode.
|
|
|
|
'glibcxx_debug%': 0,
|
|
|
|
|
2010-08-25 04:22:01 +04:00
|
|
|
# Override whether we should use Breakpad on Linux. I.e. for Chrome bot.
|
|
|
|
'linux_breakpad%': 0,
|
|
|
|
# And if we want to dump symbols for Breakpad-enabled builds.
|
|
|
|
'linux_dump_symbols%': 0,
|
|
|
|
# And if we want to strip the binary after dumping symbols.
|
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,
|
2009-10-02 03:29:03 +04:00
|
|
|
|
2010-06-16 22:39:53 +04:00
|
|
|
# Enable TCMalloc.
|
|
|
|
'linux_use_tcmalloc%': 1,
|
2009-11-11 22:24:24 +03:00
|
|
|
|
2010-04-16 12:04:03 +04:00
|
|
|
# Disable TCMalloc's debugallocation.
|
|
|
|
'linux_use_debugallocation%': 0,
|
|
|
|
|
2010-03-26 12:41:22 +03:00
|
|
|
# Disable TCMalloc's heapchecker.
|
|
|
|
'linux_use_heapchecker%': 0,
|
|
|
|
|
2010-08-27 14:13:21 +04:00
|
|
|
# Disable shadow stack keeping used by heapcheck to unwind the stacks
|
|
|
|
# better.
|
|
|
|
'linux_keep_shadow_stacks%': 0,
|
|
|
|
|
2010-10-29 00:40:34 +04:00
|
|
|
# Set to 1 to turn on seccomp sandbox by default.
|
|
|
|
# (Note: this is ignored for official builds.)
|
|
|
|
'linux_use_seccomp_sandbox%': 0,
|
2010-03-30 23:47:41 +04: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
|
|
|
|
2009-10-02 23:00:31 +04:00
|
|
|
# Used to disable Native Client at compile time, for platforms where it
|
|
|
|
# isn't supported
|
|
|
|
'disable_nacl%': 0,
|
|
|
|
|
2009-12-04 09:21:29 +03:00
|
|
|
# Set Thumb compilation flags.
|
|
|
|
'arm_thumb%': 0,
|
|
|
|
|
2010-03-05 04:41:56 +03:00
|
|
|
# Set ARM fpu compilation flags (only meaningful if armv7==1 and
|
|
|
|
# arm_neon==0).
|
|
|
|
'arm_fpu%': 'vfpv3',
|
|
|
|
|
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
|
|
|
|
2010-06-23 00:43:53 +04:00
|
|
|
# Enable a variable used elsewhere throughout the GYP files to determine
|
|
|
|
# whether to compile in the sources for the GPU plugin / process.
|
|
|
|
'enable_gpu%': 1,
|
|
|
|
|
2010-12-09 21:36:24 +03:00
|
|
|
# Use OpenSSL instead of NSS. Under development: see http://crbug.com/62803
|
2010-09-29 16:27:44 +04:00
|
|
|
'use_openssl%': 0,
|
|
|
|
|
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,
|
|
|
|
|
|
|
|
# Set to 1 to compile with the built in pdf viewer.
|
|
|
|
'internal_pdf%': 0,
|
|
|
|
|
|
|
|
# This allows to use libcros from the current system, ie. /usr/lib/
|
|
|
|
# The cros_api will be pulled in as a static library, and all headers
|
|
|
|
# from the system include dirs.
|
2011-01-07 22:04:43 +03:00
|
|
|
'system_libcros%': 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',
|
|
|
|
'ml', 'mr', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru',
|
|
|
|
'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-01-05 23:38:50 +03:00
|
|
|
# Use Harfbuzz-NG instead of Harfbuzz.
|
|
|
|
# Under development: http://crbug.com/68551
|
|
|
|
'use_harfbuzz_ng%': 0,
|
|
|
|
|
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-02-11 01:06:07 +03:00
|
|
|
# Point to ICU directory.
|
|
|
|
'icu_src_dir': '../third_party/icu',
|
|
|
|
|
2009-08-01 03:33:55 +04:00
|
|
|
'conditions': [
|
2011-05-12 22:18:34 +04:00
|
|
|
['os_posix==1 and OS!="mac"', {
|
2009-11-03 20:32:10 +03:00
|
|
|
# This will set gcc_version to XY if you are running gcc X.Y.*.
|
|
|
|
# This is used to tweak build flags for gcc 4.4.
|
|
|
|
'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
|
2010-03-04 19:42:23 +03:00
|
|
|
# Figure out the python architecture to decide if we build pyauto.
|
2010-03-04 20:07:54 +03:00
|
|
|
'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/lib/libpython<(python_ver).so.1.0)',
|
2009-08-26 04:14:27 +04:00
|
|
|
'conditions': [
|
2010-08-26 23:58:10 +04:00
|
|
|
['branding=="Chrome"', {
|
2009-08-26 04:14:27 +04:00
|
|
|
'linux_breakpad%': 1,
|
|
|
|
}],
|
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,
|
|
|
|
}],
|
2009-08-26 04:14:27 +04:00
|
|
|
],
|
2011-05-12 22:18:34 +04:00
|
|
|
}], # os_posix==1 and OS!="mac"
|
2011-01-07 22:04:43 +03:00
|
|
|
|
2009-08-05 23:26:07 +04:00
|
|
|
['OS=="mac"', {
|
|
|
|
'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',
|
|
|
|
}],
|
|
|
|
|
|
|
|
# Feature variables for enabling Mac Breakpad and Keystone auto-update
|
|
|
|
# support. Both features are on by default in official builds with
|
|
|
|
# Chrome branding.
|
|
|
|
['branding=="Chrome" and buildtype=="Official"', {
|
|
|
|
'mac_breakpad%': 1,
|
|
|
|
'mac_keystone%': 1,
|
2011-08-10 04:11:49 +04:00
|
|
|
|
|
|
|
# Official builds use clang, but only on m15+. Since there's just
|
|
|
|
# one buildbot config for the builder for m13, m14, and m15, this
|
|
|
|
# can't be defined in the buildbot config but is instead defined
|
|
|
|
# here (it was added after the m14 branch was cut). This is in the
|
|
|
|
# buildtype=="Official" section so that developers don't see it
|
|
|
|
# for their local builds.
|
2011-08-22 21:15:48 +04:00
|
|
|
'clang%': 1,
|
2009-08-05 23:26:07 +04:00
|
|
|
}, { # else: branding!="Chrome" or buildtype!="Official"
|
|
|
|
'mac_breakpad%': 0,
|
|
|
|
'mac_keystone%': 0,
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}], # OS=="mac"
|
2011-01-07 22:04:43 +03:00
|
|
|
|
2009-08-01 03:33:55 +04:00
|
|
|
# Whether to use multiple cores to compile with visual studio. This is
|
|
|
|
# optional because it sometimes causes corruption on VS 2005.
|
|
|
|
# It is on by default on VS 2008 and off on VS 2005.
|
|
|
|
['OS=="win"', {
|
|
|
|
'conditions': [
|
2010-06-21 22:06:52 +04:00
|
|
|
['component=="shared_library"', {
|
|
|
|
'win_use_allocator_shim%': 0,
|
|
|
|
}],
|
2009-08-01 03:33:55 +04:00
|
|
|
['MSVS_VERSION=="2005"', {
|
2009-08-14 21:51:13 +04:00
|
|
|
'msvs_multi_core_compile%': 0,
|
2009-08-01 03:33:55 +04:00
|
|
|
},{
|
|
|
|
'msvs_multi_core_compile%': 1,
|
|
|
|
}],
|
2009-08-08 01:16:03 +04:00
|
|
|
# Don't do incremental linking for large modules on 32-bit.
|
|
|
|
['MSVS_OS_BITS==32', {
|
|
|
|
'msvs_large_module_debug_link_mode%': '1', # No
|
|
|
|
},{
|
|
|
|
'msvs_large_module_debug_link_mode%': '2', # Yes
|
|
|
|
}],
|
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_VERSION=="2010e" or MSVS_VERSION=="2008e" or MSVS_VERSION=="2005e"', {
|
|
|
|
'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
|
|
|
|
2011-05-12 22:18:34 +04:00
|
|
|
['os_posix==1 and chromeos==0 and target_arch!="arm"', {
|
2010-10-26 00:05:44 +04:00
|
|
|
'use_cups%': 1,
|
|
|
|
}, {
|
|
|
|
'use_cups%': 0,
|
|
|
|
}],
|
2011-01-07 22:04:43 +03:00
|
|
|
|
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.
|
|
|
|
['use_libjpeg_turbo==1', {
|
|
|
|
'libjpeg_gyp_path': '../third_party/libjpeg_turbo/libjpeg.gyp',
|
|
|
|
}, {
|
|
|
|
'libjpeg_gyp_path': '../third_party/libjpeg/libjpeg.gyp',
|
|
|
|
}], # use_libjpeg_turbo==1
|
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).
|
2011-01-21 01:14:31 +03:00
|
|
|
['chromeos==1', {
|
|
|
|
'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', {
|
|
|
|
'grit_defines': ['-D', 'chromeos'],
|
|
|
|
}],
|
|
|
|
['toolkit_views==1', {
|
|
|
|
'grit_defines': ['-D', 'toolkit_views'],
|
|
|
|
}],
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
['toolkit_uses_pure_views==1', {
|
|
|
|
'grit_defines': ['-D', 'toolkit_uses_pure_views'],
|
|
|
|
}],
|
2011-01-07 22:04:43 +03:00
|
|
|
['touchui==1', {
|
|
|
|
'grit_defines': ['-D', 'touchui'],
|
|
|
|
}],
|
2011-08-17 23:51:35 +04:00
|
|
|
['webui_dialogs==1', {
|
|
|
|
'grit_defines': ['-D', 'webui_dialogs'],
|
2011-07-14 19:22:18 +04:00
|
|
|
}],
|
2011-03-01 22:26:20 +03:00
|
|
|
['file_manager_extension==1', {
|
|
|
|
'grit_defines': ['-D', 'file_manager_extension'],
|
|
|
|
}],
|
2011-08-05 08:00:47 +04:00
|
|
|
['webui_task_manager==1', {
|
|
|
|
'grit_defines': ['-D', 'webui_task_manager'],
|
|
|
|
}],
|
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-02-11 19:43:46 +03:00
|
|
|
|
|
|
|
['clang_use_chrome_plugins==1', {
|
|
|
|
'clang_chrome_plugins_flags':
|
|
|
|
'<!(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)',
|
|
|
|
}],
|
2011-04-28 02:30:23 +04:00
|
|
|
|
2011-05-24 06:36:05 +04:00
|
|
|
# Set use_ibus to 1 to enable ibus support.
|
2011-04-28 02:30:23 +04:00
|
|
|
['touchui==1 and chromeos==1', {
|
|
|
|
'use_ibus%': 1,
|
|
|
|
}, {
|
|
|
|
'use_ibus%': 0,
|
2011-05-26 05:30:56 +04:00
|
|
|
}],
|
|
|
|
|
|
|
|
['enable_register_protocol_handler==1', {
|
|
|
|
'grit_defines': ['-D', 'enable_register_protocol_handler'],
|
|
|
|
}],
|
2011-08-15 18:33:06 +04:00
|
|
|
|
2011-08-26 03:02:07 +04:00
|
|
|
['enable_web_intents==1', {
|
|
|
|
'grit_defines': ['-D', 'enable_web_intents'],
|
|
|
|
}],
|
|
|
|
|
2011-08-15 18:33:06 +04:00
|
|
|
['asan==1', {
|
|
|
|
'clang%': 1,
|
|
|
|
}],
|
2009-08-01 03:33:55 +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)',
|
|
|
|
|
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://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Optimize-Options.html
|
2009-08-29 03:23:29 +04:00
|
|
|
'mac_release_optimization%': '3', # Use -O3 unless overridden
|
2009-09-11 23:37:00 +04:00
|
|
|
'mac_debug_optimization%': '0', # Use -O0 unless overridden
|
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
|
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
|
|
|
|
# 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
|
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
|
|
|
|
'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
|
|
|
|
2009-09-11 23:37:00 +04:00
|
|
|
'release_extra_cflags%': '',
|
|
|
|
'debug_extra_cflags%': '',
|
2009-09-18 18:26:56 +04:00
|
|
|
'release_valgrind_build%': 0,
|
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
|
|
|
|
'win_release_RuntimeLibrary%': '2', # 2 = /MT (nondebug DLL)
|
|
|
|
'win_debug_RuntimeLibrary%': '3', # 3 = /MTd (debug DLL)
|
|
|
|
}, {
|
|
|
|
# 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)
|
|
|
|
}],
|
|
|
|
],
|
2009-08-21 01:19:26 +04:00
|
|
|
},
|
2009-03-05 00:36:39 +03:00
|
|
|
'conditions': [
|
|
|
|
['branding=="Chrome"', {
|
|
|
|
'defines': ['GOOGLE_CHROME_BUILD'],
|
|
|
|
}, { # else: branding!="Chrome"
|
|
|
|
'defines': ['CHROMIUM_BUILD'],
|
|
|
|
}],
|
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'],
|
|
|
|
}],
|
As per oshima:
The ultimate goal is to eliminate TOOLKIT_USES_GTK. Once that migration is completed, TOOLKIT_VIEWS + OS_LINUX should be enough.
Until this happens, we need a binary that:
1) has both gtk and pure-views
2) can enable pure views components with --use-pure-views when possible (this is default in touchui=1).
If we could switch everything with --use-pure-views, that'd be nice, but the world is not perfect and there are things that cannot co-exist (such as message pump). For such component, we'll use GYP_DEFINES to switch.
1) TOOLKIT_USES_PURE_VIEWS is defined with toolkit_pure_views=1.
2) all (or most of) chrome features must be functional with toolkit_pure_views=1
3) both TOOLKIT_USES_GTK and TOOLKIT_USES_PURE_VIEWS are defined. The latter has higher priority (that is, if implementation can't co-exists, TOOLKIT_USE_PURE_VIEWS will take precedence).
4) As the migration proceeds, there will be less TOOLKIT_USES_GTK and more TOOLKIT_USES_PURE_VIEWS.
5) Once the migration is complete (that is, there is no TOOKIT_USES_GTK), we can remove TOOLKIT_USES_PURE_VIEWS or replace it with OS_LINUX when necessary.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7273079
git-svn-id: http://src.chromium.org/svn/trunk/src/build@91164 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-06-30 22:22:30 +04:00
|
|
|
['toolkit_uses_pure_views==1', {
|
|
|
|
'defines': ['TOOLKIT_USES_PURE_VIEWS=1'],
|
|
|
|
}],
|
2011-05-25 03:08:58 +04:00
|
|
|
['views_compositor==1', {
|
2011-06-10 20:43:27 +04:00
|
|
|
'defines': ['VIEWS_COMPOSITOR=1'],
|
2011-05-25 03:08:58 +04:00
|
|
|
}],
|
2011-08-25 19:39:58 +04:00
|
|
|
['use_aura==1', {
|
|
|
|
'defines': ['USE_AURA=1'],
|
2011-08-24 23:03:35 +04:00
|
|
|
}],
|
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
|
|
|
}],
|
2010-07-16 01:51:43 +04:00
|
|
|
['touchui==1', {
|
|
|
|
'defines': ['TOUCH_UI=1'],
|
|
|
|
}],
|
2011-07-28 21:38:23 +04:00
|
|
|
['use_wayland==1', {
|
|
|
|
'defines': ['USE_WAYLAND=1', 'WL_EGL_PLATFORM=1'],
|
|
|
|
}],
|
2011-03-01 22:26:20 +03:00
|
|
|
['file_manager_extension==1', {
|
|
|
|
'defines': ['FILE_MANAGER_EXTENSION=1'],
|
|
|
|
}],
|
2011-08-05 08:00:47 +04:00
|
|
|
['webui_task_manager==1', {
|
|
|
|
'defines': ['WEBUI_TASK_MANAGER=1'],
|
|
|
|
}],
|
2011-02-02 02:35:25 +03:00
|
|
|
['profiling==1', {
|
|
|
|
'defines': ['ENABLE_PROFILING=1'],
|
|
|
|
}],
|
2011-08-16 23:06:22 +04:00
|
|
|
['OS=="linux" and glibcxx_debug==1', {
|
|
|
|
'defines': ['_GLIBCXX_DEBUG=1',],
|
|
|
|
'cflags_cc!': ['-fno-rtti'],
|
|
|
|
'cflags_cc+': ['-frtti', '-g'],
|
|
|
|
}],
|
2010-06-12 03:08:17 +04:00
|
|
|
['remoting==1', {
|
|
|
|
'defines': ['ENABLE_REMOTING=1'],
|
2010-06-11 04:39:00 +04:00
|
|
|
}],
|
2011-04-20 19:49:51 +04:00
|
|
|
['p2p_apis==1', {
|
|
|
|
'defines': ['ENABLE_P2P_APIS=1'],
|
|
|
|
}],
|
2010-05-10 21:04:48 +04:00
|
|
|
['proprietary_codecs==1', {
|
|
|
|
'defines': ['USE_PROPRIETARY_CODECS'],
|
|
|
|
}],
|
2011-01-07 03:25:40 +03:00
|
|
|
['enable_flapper_hacks==1', {
|
|
|
|
'defines': ['ENABLE_FLAPPER_HACKS=1'],
|
|
|
|
}],
|
2011-07-14 20:01:19 +04:00
|
|
|
['configuration_policy==1', {
|
|
|
|
'defines': ['ENABLE_CONFIGURATION_POLICY'],
|
|
|
|
}],
|
2009-10-02 23:59:54 +04:00
|
|
|
['fastbuild!=0', {
|
|
|
|
'conditions': [
|
2010-07-03 12:49:24 +04:00
|
|
|
# For Windows, we don't genererate debug information.
|
2009-10-02 23:59:54 +04:00
|
|
|
['OS=="win"', {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'GenerateDebugInformation': 'false',
|
|
|
|
},
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'DebugInformationFormat': '0',
|
|
|
|
}
|
|
|
|
}
|
2010-07-03 12:49:24 +04:00
|
|
|
}, { # else: OS != "win", generate less debug information.
|
|
|
|
'variables': {
|
|
|
|
'debug_extra_cflags': '-g1',
|
|
|
|
},
|
2010-04-15 01:37:40 +04:00
|
|
|
}],
|
2011-01-19 08:32:33 +03: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
|
|
|
|
['OS=="linux" and clang==1', {
|
|
|
|
'variables': {
|
|
|
|
'debug_extra_cflags': '-g0',
|
|
|
|
},
|
|
|
|
}],
|
2009-10-02 23:59:54 +04:00
|
|
|
], # conditions for fastbuild.
|
|
|
|
}], # fastbuild!=0
|
2009-09-16 00:13:38 +04:00
|
|
|
['selinux==1', {
|
|
|
|
'defines': ['CHROMIUM_SELINUX=1'],
|
|
|
|
}],
|
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-02-03 05:28:48 +03:00
|
|
|
['enable_gpu==1', {
|
2009-12-23 02:28:15 +03:00
|
|
|
'defines': [
|
|
|
|
'ENABLE_GPU=1',
|
|
|
|
],
|
|
|
|
}],
|
2010-10-08 16:44:40 +04:00
|
|
|
['use_openssl==1', {
|
|
|
|
'defines': [
|
|
|
|
'USE_OPENSSL=1',
|
|
|
|
],
|
|
|
|
}],
|
2010-04-29 04:18:50 +04:00
|
|
|
['enable_eglimage==1', {
|
|
|
|
'defines': [
|
|
|
|
'ENABLE_EGLIMAGE=1',
|
|
|
|
],
|
|
|
|
}],
|
2011-06-21 23:20:22 +04:00
|
|
|
['use_skia==1', {
|
|
|
|
'defines': [
|
|
|
|
'USE_SKIA=1',
|
|
|
|
],
|
|
|
|
}],
|
2009-04-03 08:35:18 +04:00
|
|
|
['coverage!=0', {
|
|
|
|
'conditions': [
|
|
|
|
['OS=="mac"', {
|
|
|
|
'xcode_settings': {
|
2009-08-13 22:11:04 +04:00
|
|
|
'GCC_INSTRUMENT_PROGRAM_FLOW_ARCS': 'YES', # -fprofile-arcs
|
|
|
|
'GCC_GENERATE_TEST_COVERAGE_FILES': 'YES', # -ftest-coverage
|
2009-04-14 03:19:47 +04:00
|
|
|
},
|
2009-12-28 23:45:43 +03:00
|
|
|
# Add -lgcov for types executable, shared_library, and
|
2010-04-13 08:03:10 +04:00
|
|
|
# loadable_module; not for static_library.
|
2009-12-28 23:45:43 +03:00
|
|
|
# This is a delayed conditional.
|
2009-04-03 08:35:18 +04:00
|
|
|
'target_conditions': [
|
2009-12-28 23:45:43 +03:00
|
|
|
['_type!="static_library"', {
|
2009-04-03 08:35:18 +04:00
|
|
|
'xcode_settings': { 'OTHER_LDFLAGS': [ '-lgcov' ] },
|
2009-04-14 03:19:47 +04:00
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
2009-04-03 08:35:18 +04:00
|
|
|
['OS=="linux"', {
|
|
|
|
'cflags': [ '-ftest-coverage',
|
|
|
|
'-fprofile-arcs' ],
|
2009-05-01 03:19:00 +04:00
|
|
|
'link_settings': { 'libraries': [ '-lgcov' ] },
|
2009-04-03 08:35:18 +04:00
|
|
|
}],
|
2009-07-07 22:20:53 +04:00
|
|
|
# Finally, for Windows, we simply turn on profiling.
|
|
|
|
['OS=="win"', {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'Profile': 'true',
|
|
|
|
},
|
2009-08-08 01:16:03 +04:00
|
|
|
'VCCLCompilerTool': {
|
2009-07-07 22:20:53 +04:00
|
|
|
# /Z7, not /Zi, so coverage is happyb
|
|
|
|
'DebugInformationFormat': '1',
|
2010-01-04 09:40:16 +03:00
|
|
|
'AdditionalOptions': ['/Yd'],
|
2009-07-07 22:20:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}], # OS==win
|
|
|
|
], # conditions for coverage
|
|
|
|
}], # coverage!=0
|
2010-08-26 22:34:38 +04:00
|
|
|
['OS=="win"', {
|
|
|
|
'defines': [
|
|
|
|
'__STD_C',
|
|
|
|
'_CRT_SECURE_NO_DEPRECATE',
|
|
|
|
'_SCL_SECURE_NO_DEPRECATE',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'<(DEPTH)/third_party/wtl/include',
|
|
|
|
],
|
|
|
|
}], # OS==win
|
2011-05-26 05:30:56 +04:00
|
|
|
['enable_register_protocol_handler==1', {
|
|
|
|
'defines': [
|
2011-06-09 09:17:19 +04:00
|
|
|
'ENABLE_REGISTER_PROTOCOL_HANDLER=1',
|
2011-05-26 05:30:56 +04:00
|
|
|
],
|
|
|
|
}],
|
2011-08-26 03:02:07 +04:00
|
|
|
['enable_web_intents==1', {
|
|
|
|
'defines': [
|
|
|
|
'ENABLE_INTENTS=1',
|
|
|
|
],
|
|
|
|
}],
|
2010-02-10 23:43:18 +03:00
|
|
|
], # conditions for 'target_defaults'
|
|
|
|
'target_conditions': [
|
2010-02-10 01:06:15 +03:00
|
|
|
['chromium_code==0', {
|
2010-02-10 20:43:28 +03:00
|
|
|
'conditions': [
|
2011-05-12 22:18:34 +04:00
|
|
|
[ 'os_posix==1 and OS!="mac"', {
|
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',
|
|
|
|
'-Werror',
|
|
|
|
],
|
2011-02-09 01:19:00 +03:00
|
|
|
'cflags': [
|
|
|
|
# Don't warn about hash_map in third-party code.
|
|
|
|
'-Wno-deprecated',
|
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!': [
|
|
|
|
# TODO(fischman): remove this.
|
|
|
|
# http://code.google.com/p/chromium/issues/detail?id=90453
|
|
|
|
'-Wsign-compare',
|
|
|
|
]
|
2010-02-10 20:43:28 +03:00
|
|
|
}],
|
2011-07-27 14:32:11 +04:00
|
|
|
[ 'os_posix==1 and OS!="mac" and chromeos==0', {
|
|
|
|
'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.
|
|
|
|
# Currently this option is not set for Chrome OS build because
|
|
|
|
# the current version of gcc (4.3.4) used for building Chrome in
|
|
|
|
# Chrome OS chroot doesn't support this option.
|
|
|
|
# TODO(mazda): remove the conditional for Chrome OS when gcc
|
|
|
|
# version is upgraded.
|
|
|
|
'-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',
|
|
|
|
'WarnAsError': 'false', # TODO(maruel): Enable it.
|
2010-02-10 20:43:28 +03:00
|
|
|
'Detect64BitPortabilityProblems': 'false',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}],
|
2011-07-17 23:39:42 +04:00
|
|
|
# TODO(darin): Unfortunately, some third_party code depends on base/
|
|
|
|
[ 'OS=="win" and component=="shared_library"', {
|
|
|
|
'msvs_disabled_warnings': [
|
|
|
|
4251, # class 'std::xx' needs to have dll-interface.
|
|
|
|
],
|
|
|
|
}],
|
2010-02-10 20:43:28 +03:00
|
|
|
[ 'OS=="mac"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO',
|
2010-06-15 15:51:06 +04:00
|
|
|
'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
|
2010-02-10 20:43:28 +03:00
|
|
|
},
|
|
|
|
}],
|
2010-02-10 01:06:15 +03:00
|
|
|
],
|
|
|
|
}, {
|
|
|
|
# In Chromium code, we define __STDC_FORMAT_MACROS in order to get the
|
|
|
|
# C99 macros on Mac and Linux.
|
|
|
|
'defines': [
|
|
|
|
'__STDC_FORMAT_MACROS',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
['OS!="win"', {
|
2010-11-16 18:23:30 +03:00
|
|
|
'sources/': [ ['exclude', '_win(_unittest)?\\.(h|cc)$'],
|
2010-11-15 17:08:16 +03:00
|
|
|
['exclude', '(^|/)win/'],
|
2010-11-16 18:23:30 +03:00
|
|
|
['exclude', '(^|/)win_[^/]*\\.(h|cc)$'] ],
|
2010-02-10 01:06:15 +03:00
|
|
|
}],
|
|
|
|
['OS!="mac"', {
|
2010-11-16 18:23:30 +03:00
|
|
|
'sources/': [ ['exclude', '_(cocoa|mac)(_unittest)?\\.(h|cc)$'],
|
2010-11-15 17:08:16 +03:00
|
|
|
['exclude', '(^|/)(cocoa|mac)/'],
|
|
|
|
['exclude', '\\.mm?$' ] ],
|
2010-02-10 01:06:15 +03:00
|
|
|
}],
|
2011-05-12 22:18:34 +04:00
|
|
|
['toolkit_uses_gtk!=1', {
|
2010-02-10 01:06:15 +03:00
|
|
|
'sources/': [
|
2010-11-16 18:23:30 +03:00
|
|
|
['exclude', '_(chromeos|gtk|x|x11|xdg)(_unittest)?\\.(h|cc)$'],
|
2010-11-15 17:08:16 +03:00
|
|
|
['exclude', '(^|/)gtk/'],
|
2010-11-16 18:23:30 +03:00
|
|
|
['exclude', '(^|/)(gtk|x11)_[^/]*\\.(h|cc)$'],
|
2010-02-17 21:03:13 +03:00
|
|
|
],
|
|
|
|
}],
|
2011-08-10 20:50:44 +04:00
|
|
|
['use_wayland!=1', {
|
|
|
|
'sources/': [
|
|
|
|
['exclude', '_(wayland)(_unittest)?\\.(h|cc)$'],
|
|
|
|
['exclude', '(^|/)wayland/'],
|
|
|
|
['exclude', '(^|/)(wayland)_[^/]*\\.(h|cc)$'],
|
|
|
|
],
|
|
|
|
}],
|
2010-02-17 21:03:13 +03:00
|
|
|
['OS!="linux"', {
|
|
|
|
'sources/': [
|
2010-11-16 18:23:30 +03:00
|
|
|
['exclude', '_linux(_unittest)?\\.(h|cc)$'],
|
2010-11-15 17:08:16 +03:00
|
|
|
['exclude', '(^|/)linux/'],
|
2010-02-17 21:03:13 +03:00
|
|
|
],
|
2010-02-10 01:06:15 +03:00
|
|
|
}],
|
|
|
|
# We use "POSIX" to refer to all non-Windows operating systems.
|
|
|
|
['OS=="win"', {
|
2010-11-16 18:23:30 +03:00
|
|
|
'sources/': [ ['exclude', '_posix\\.(h|cc)$'] ],
|
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
|
|
|
['chromeos!=1', {
|
2010-11-16 18:23:30 +03:00
|
|
|
'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ]
|
2010-02-10 01:06:15 +03:00
|
|
|
}],
|
2010-04-27 22:31:31 +04:00
|
|
|
['toolkit_views==0', {
|
2010-11-16 18:23:30 +03:00
|
|
|
'sources/': [ ['exclude', '_views\\.(h|cc)$'] ]
|
2010-02-10 01:06:15 +03:00
|
|
|
}],
|
2011-08-25 19:39:58 +04:00
|
|
|
['use_aura==0', {
|
|
|
|
'sources/': [ ['exclude', '_aura\\.(h|cc)$'] ]
|
|
|
|
}],
|
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': {
|
|
|
|
'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
|
|
|
|
'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
|
|
|
|
'CharacterSet': '1',
|
|
|
|
},
|
2009-12-22 04:52:50 +03:00
|
|
|
},
|
|
|
|
'x86_Base': {
|
|
|
|
'abstract': 1,
|
2009-12-05 01:46:50 +03:00
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'TargetMachine': '1',
|
|
|
|
},
|
|
|
|
},
|
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!':
|
|
|
|
['<(DEPTH)/third_party/platformsdk_win7/files/Lib'],
|
|
|
|
'AdditionalLibraryDirectories':
|
|
|
|
['<(DEPTH)/third_party/platformsdk_win7/files/Lib/x64'],
|
|
|
|
},
|
2010-03-25 01:06:35 +03:00
|
|
|
'VCLibrarianTool': {
|
2009-12-22 04:52:50 +03:00
|
|
|
'AdditionalLibraryDirectories!':
|
|
|
|
['<(DEPTH)/third_party/platformsdk_win7/files/Lib'],
|
|
|
|
'AdditionalLibraryDirectories':
|
|
|
|
['<(DEPTH)/third_party/platformsdk_win7/files/Lib/x64'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'defines': [
|
|
|
|
# Not sure if tcmalloc works on 64-bit Windows.
|
|
|
|
'NO_TCMALLOC',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'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': {
|
|
|
|
'COPY_PHASE_STRIP': 'NO',
|
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'],
|
|
|
|
}],
|
2010-05-07 17:19:15 +04:00
|
|
|
],
|
2009-10-30 00:24:56 +03:00
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'LinkIncremental': '<(msvs_debug_link_incremental)',
|
2011-07-14 17:57:02 +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': [
|
2009-10-30 00:24:56 +03:00
|
|
|
['OS=="linux"', {
|
|
|
|
'cflags': [
|
|
|
|
'<@(debug_extra_cflags)',
|
|
|
|
],
|
2009-02-26 00:26:55 +03:00
|
|
|
}],
|
2011-07-02 01:33:35 +04:00
|
|
|
['release_valgrind_build==0', {
|
|
|
|
'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': {
|
|
|
|
'Optimization': '<(win_release_Optimization)',
|
|
|
|
'RuntimeLibrary': '<(win_release_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_release_InlineFunctionExpansion==0', {
|
|
|
|
'AdditionalOptions': ['/Ob0'],
|
|
|
|
}],
|
|
|
|
['win_release_InlineFunctionExpansion!=""', {
|
|
|
|
'InlineFunctionExpansion':
|
|
|
|
'<(win_release_InlineFunctionExpansion)',
|
|
|
|
}],
|
|
|
|
],
|
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': [
|
2009-09-18 18:26:56 +04:00
|
|
|
['release_valgrind_build==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': [
|
|
|
|
'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'],
|
|
|
|
}],
|
2009-10-30 00:24:56 +03:00
|
|
|
['OS=="linux"', {
|
|
|
|
'cflags': [
|
2009-09-11 23:37:00 +04:00
|
|
|
'<@(release_extra_cflags)',
|
2009-10-30 00:24:56 +03:00
|
|
|
],
|
|
|
|
}],
|
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'],
|
|
|
|
'conditions': [
|
|
|
|
['msvs_use_common_release', {
|
2010-01-04 09:40:16 +03:00
|
|
|
'includes': ['release.gypi'],
|
2009-12-22 04:52:50 +03:00
|
|
|
}],
|
|
|
|
]
|
|
|
|
},
|
2009-08-05 02:50:13 +04:00
|
|
|
'conditions': [
|
|
|
|
[ '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': [
|
2011-05-12 22:18:34 +04:00
|
|
|
['os_posix==1 and OS!="mac"', {
|
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': {
|
2011-05-04 19:33:19 +04:00
|
|
|
# Use -fno-strict-aliasing, see http://crbug.com/32204
|
2010-01-13 22:25:42 +03:00
|
|
|
'no_strict_aliasing%': 1,
|
2011-05-12 22:18:34 +04:00
|
|
|
'conditions': [
|
|
|
|
['OS=="linux"', {
|
|
|
|
'werror%': '-Werror',
|
|
|
|
}, { # turn off -Werror on other Unices
|
|
|
|
'werror%': '',
|
|
|
|
}],
|
2009-12-17 17:49:39 +03:00
|
|
|
],
|
2009-04-28 04:43:27 +04:00
|
|
|
},
|
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',
|
|
|
|
'-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',
|
2009-08-13 16:53:16 +04:00
|
|
|
'-D_FILE_OFFSET_BITS=64',
|
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,
|
|
|
|
# so we specify it explicitly.
|
|
|
|
# TODO(fischman): remove this if http://llvm.org/PR10448 obsoletes it.
|
2011-07-26 03:59:18 +04:00
|
|
|
# http://code.google.com/p/chromium/issues/detail?id=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
|
|
|
],
|
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': [
|
2011-02-01 22:56:04 +03:00
|
|
|
'-O>(debug_optimize)',
|
2009-04-02 19:34:09 +04:00
|
|
|
'-g',
|
|
|
|
],
|
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': [
|
2011-02-01 22:56:04 +03: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',
|
|
|
|
],
|
|
|
|
}],
|
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',
|
|
|
|
],
|
|
|
|
}],
|
2011-05-04 22:11:52 +04:00
|
|
|
# At gyp time, we test the linker for ICF support; this flag
|
|
|
|
# is then provided to us by gyp. (Currently only gold supports
|
|
|
|
# an --icf flag.)
|
2011-06-22 04:43:53 +04:00
|
|
|
# There seems to be a conflict of --icf and -pie in gold which
|
|
|
|
# can generate crashy binaries. As a security measure, -pie
|
|
|
|
# takes precendence for now.
|
2011-05-10 23:49:12 +04:00
|
|
|
['LINKER_SUPPORTS_ICF==1 and release_valgrind_build==0', {
|
2011-06-04 00:05:46 +04:00
|
|
|
'target_conditions': [
|
|
|
|
['_toolset=="target"', {
|
|
|
|
'ldflags': [
|
2011-06-22 04:43:53 +04:00
|
|
|
#'-Wl,--icf=safe',
|
|
|
|
'-Wl,--icf=none',
|
2011-06-04 00:05:46 +04:00
|
|
|
]
|
|
|
|
}]
|
2011-05-04 22:11:52 +04:00
|
|
|
]
|
|
|
|
}],
|
2010-05-15 05:02:51 +04:00
|
|
|
]
|
2009-04-02 19:34:09 +04:00
|
|
|
},
|
|
|
|
},
|
2009-04-04 01:32:04 +04:00
|
|
|
'variants': {
|
|
|
|
'coverage': {
|
|
|
|
'cflags': ['-fprofile-arcs', '-ftest-coverage'],
|
|
|
|
'ldflags': ['-fprofile-arcs'],
|
|
|
|
},
|
|
|
|
'profile': {
|
|
|
|
'cflags': ['-pg', '-g'],
|
|
|
|
'ldflags': ['-pg'],
|
|
|
|
},
|
|
|
|
'symbols': {
|
|
|
|
'cflags': ['-g'],
|
|
|
|
},
|
|
|
|
},
|
2009-05-07 02:38:23 +04:00
|
|
|
'conditions': [
|
2009-07-29 19:56:00 +04:00
|
|
|
[ 'target_arch=="ia32"', {
|
2009-05-07 02:38:23 +04:00
|
|
|
'asflags': [
|
|
|
|
# Needed so that libs with .s files (e.g. libicudata.a)
|
|
|
|
# are compatible with the general 32-bit-ness.
|
|
|
|
'-32',
|
|
|
|
],
|
|
|
|
# All floating-point computations on x87 happens in 80-bit
|
|
|
|
# precision. Because the C and C++ language standards allow
|
|
|
|
# the compiler to keep the floating-point values in higher
|
|
|
|
# precision than what's specified in the source and doing so
|
|
|
|
# is more efficient than constantly rounding up to 64-bit or
|
|
|
|
# 32-bit precision as specified in the source, the compiler,
|
|
|
|
# especially in the optimized mode, tries very hard to keep
|
|
|
|
# values in x87 floating-point stack (in 80-bit precision)
|
|
|
|
# as long as possible. This has important side effects, that
|
|
|
|
# the real value used in computation may change depending on
|
|
|
|
# how the compiler did the optimization - that is, the value
|
|
|
|
# kept in 80-bit is different than the value rounded down to
|
|
|
|
# 64-bit or 32-bit. There are possible compiler options to make
|
|
|
|
# this behavior consistent (e.g. -ffloat-store would keep all
|
|
|
|
# floating-values in the memory, thus force them to be rounded
|
|
|
|
# to its original precision) but they have significant runtime
|
|
|
|
# performance penalty.
|
|
|
|
#
|
|
|
|
# -mfpmath=sse -msse2 makes the compiler use SSE instructions
|
|
|
|
# which keep floating-point values in SSE registers in its
|
|
|
|
# native precision (32-bit for single precision, and 64-bit for
|
|
|
|
# double precision values). This means the floating-point value
|
|
|
|
# used during computation does not change depending on how the
|
|
|
|
# compiler optimized the code, since the value is always kept
|
|
|
|
# in its specified precision.
|
2009-05-29 04:39:06 +04:00
|
|
|
'conditions': [
|
2010-04-28 06:14:22 +04:00
|
|
|
['branding=="Chromium" and disable_sse2==0', {
|
2009-05-29 04:39:06 +04:00
|
|
|
'cflags': [
|
|
|
|
'-march=pentium4',
|
|
|
|
'-msse2',
|
|
|
|
'-mfpmath=sse',
|
|
|
|
],
|
|
|
|
}],
|
2010-04-27 22:31:31 +04:00
|
|
|
# ChromeOS targets Pinetrail, which is sse3, but most of the
|
2010-04-16 06:00:44 +04:00
|
|
|
# benefit comes from sse2 so this setting allows ChromeOS
|
|
|
|
# to build on other CPUs. In the future -march=atom would help
|
|
|
|
# but requires a newer compiler.
|
2010-04-28 06:14:22 +04:00
|
|
|
['chromeos==1 and disable_sse2==0', {
|
2010-04-16 06:00:44 +04:00
|
|
|
'cflags': [
|
|
|
|
'-msse2',
|
|
|
|
],
|
|
|
|
}],
|
2010-07-08 21:51:33 +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.
|
|
|
|
['host_arch!="ia32"', {
|
|
|
|
'include_dirs+': [
|
|
|
|
'/usr/include32',
|
|
|
|
],
|
|
|
|
}],
|
2009-05-29 04:39:06 +04:00
|
|
|
],
|
2010-04-13 08:03:10 +04:00
|
|
|
# -mmmx allows mmintrin.h to be used for mmx intrinsics.
|
|
|
|
# video playback is mmx and sse2 optimized.
|
2009-05-07 02:38:23 +04:00
|
|
|
'cflags': [
|
|
|
|
'-m32',
|
2010-04-13 08:03:10 +04:00
|
|
|
'-mmmx',
|
2009-07-14 15:02:16 +04:00
|
|
|
],
|
2009-05-07 02:38:23 +04:00
|
|
|
'ldflags': [
|
|
|
|
'-m32',
|
|
|
|
],
|
|
|
|
}],
|
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': [
|
|
|
|
['arm_thumb == 1', {
|
|
|
|
'cflags': [
|
|
|
|
'-mthumb',
|
|
|
|
]
|
|
|
|
}],
|
|
|
|
['armv7==1', {
|
2009-11-13 22:30:25 +03:00
|
|
|
'cflags': [
|
|
|
|
'-march=armv7-a',
|
|
|
|
'-mtune=cortex-a8',
|
|
|
|
'-mfloat-abi=softfp',
|
|
|
|
],
|
2010-02-27 00:53:43 +03:00
|
|
|
'conditions': [
|
|
|
|
['arm_neon==1', {
|
|
|
|
'cflags': [ '-mfpu=neon', ],
|
|
|
|
}, {
|
2010-03-05 04:41:56 +03:00
|
|
|
'cflags': [ '-mfpu=<(arm_fpu)', ],
|
2010-02-27 00:53:43 +03:00
|
|
|
}]
|
|
|
|
],
|
2009-11-13 22:30:25 +03:00
|
|
|
}],
|
2009-08-10 22:58:07 +04:00
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
2010-08-12 06:11:08 +04:00
|
|
|
['linux_fpic==1', {
|
2010-01-26 02:10:58 +03:00
|
|
|
'cflags': [
|
|
|
|
'-fPIC',
|
|
|
|
],
|
|
|
|
}],
|
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)',
|
|
|
|
],
|
|
|
|
}]]
|
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',
|
|
|
|
# Clang spots more unused functions.
|
|
|
|
'-Wno-unused-function',
|
|
|
|
# Don't die on dtoa code that uses a char as an array index.
|
|
|
|
'-Wno-char-subscripts',
|
2011-09-01 04:46:33 +04:00
|
|
|
# Especially needed for gtest macros using enum values from Mac
|
|
|
|
# system headers.
|
|
|
|
# TODO(pkasting): In C++11 this is legal, so this should be
|
|
|
|
# removed when we change to that. (This is also why we don't
|
|
|
|
# bother fixing all these cases today.)
|
2011-08-10 07:07:12 +04:00
|
|
|
'-Wno-unnamed-type-template-args',
|
|
|
|
],
|
|
|
|
'cflags!': [
|
|
|
|
# Clang doesn't seem to know know this flag.
|
|
|
|
'-mfpmath=sse',
|
|
|
|
],
|
2010-09-18 04:09:15 +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': [
|
|
|
|
'<(clang_chrome_plugins_flags)',
|
|
|
|
],
|
2011-02-11 19:43:46 +03:00
|
|
|
}],
|
2011-01-28 05:57:59 +03:00
|
|
|
['clang==1 and clang_load!="" and clang_add_plugin!=""', {
|
2011-08-11 04:16:26 +04:00
|
|
|
'cflags': [
|
|
|
|
'-Xclang', '-load', '-Xclang', '<(clang_load)',
|
|
|
|
'-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
|
|
|
|
],
|
2011-01-28 05:57:59 +03:00
|
|
|
}],
|
2011-08-15 18:33:06 +04:00
|
|
|
['asan==1', {
|
|
|
|
# Only in the linux section for now, since ASAN doesn't
|
|
|
|
# work on Mac yet.
|
|
|
|
'cflags': [
|
|
|
|
'-fasan -w',
|
|
|
|
],
|
|
|
|
'ldflags': [
|
|
|
|
'-fasan',
|
|
|
|
],
|
|
|
|
}],
|
2009-08-14 09:30:52 +04:00
|
|
|
['no_strict_aliasing==1', {
|
|
|
|
'cflags': [
|
|
|
|
'-fno-strict-aliasing',
|
|
|
|
],
|
|
|
|
}],
|
2009-08-26 04:14:27 +04:00
|
|
|
['linux_breakpad==1', {
|
2010-08-26 22:28:17 +04:00
|
|
|
'cflags': [ '-g' ],
|
2009-08-26 04:14:27 +04:00
|
|
|
'defines': ['USE_LINUX_BREAKPAD'],
|
|
|
|
}],
|
2010-03-26 12:41:22 +03:00
|
|
|
['linux_use_heapchecker==1', {
|
|
|
|
'variables': {'linux_use_tcmalloc%': 1},
|
|
|
|
}],
|
2010-02-26 03:31:08 +03:00
|
|
|
['linux_use_tcmalloc==0', {
|
|
|
|
'defines': ['NO_TCMALLOC'],
|
2009-11-11 22:24:24 +03:00
|
|
|
}],
|
2010-03-26 12:41:22 +03:00
|
|
|
['linux_use_heapchecker==0', {
|
|
|
|
'defines': ['NO_HEAPCHECKER'],
|
|
|
|
}],
|
2010-08-27 14:13:21 +04:00
|
|
|
['linux_keep_shadow_stacks==1', {
|
|
|
|
'defines': ['KEEP_SHADOW_STACKS'],
|
|
|
|
'cflags': ['-finstrument-functions'],
|
|
|
|
}],
|
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',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
2010-04-01 04:35:15 +04:00
|
|
|
['OS=="solaris"', {
|
|
|
|
'cflags!': ['-fvisibility=hidden'],
|
|
|
|
'cflags_cc!': ['-fvisibility-inlines-hidden'],
|
|
|
|
}],
|
2009-02-26 00:26:55 +03:00
|
|
|
['OS=="mac"', {
|
|
|
|
'target_defaults': {
|
2009-06-01 20:01:20 +04:00
|
|
|
'variables': {
|
2011-09-08 19:33:17 +04:00
|
|
|
# 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.
|
2009-06-01 20:01:20 +04:00
|
|
|
'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
|
2011-09-08 19:33:17 +04:00
|
|
|
'mac_strip': 1, # Strip debugging symbols from the target.
|
2009-06-01 20:01:20 +04:00
|
|
|
},
|
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',
|
2009-08-13 22:11:04 +04:00
|
|
|
'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
|
|
|
|
'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
|
|
|
|
'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
|
|
|
|
# (Equivalent to -fPIC)
|
|
|
|
'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-09-16 21:31:25 +04:00
|
|
|
# MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
|
|
|
|
'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
|
2009-08-13 22:11:04 +04:00
|
|
|
'PREBINDING': 'NO', # No -Wl,-prebind
|
2009-02-26 00:26:55 +03:00
|
|
|
'USE_HEADERMAP': 'NO',
|
2011-05-04 19:33:19 +04:00
|
|
|
'OTHER_CFLAGS': [
|
|
|
|
'-fno-strict-aliasing', # See http://crbug.com/32204
|
|
|
|
],
|
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'}
|
|
|
|
],
|
2010-09-22 04:09:28 +04:00
|
|
|
['clang==1', {
|
2011-09-07 01:53:30 +04:00
|
|
|
'CC': '$(SOURCE_ROOT)/<(clang_dir)/clang',
|
|
|
|
'LDPLUSPLUS': '$(SOURCE_ROOT)/<(clang_dir)/clang++',
|
|
|
|
'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',
|
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',
|
2010-11-22 17:31:45 +03:00
|
|
|
# Clang spots more unused functions.
|
|
|
|
'-Wno-unused-function',
|
2011-09-01 04:46:33 +04:00
|
|
|
# See comments on this flag higher up in this file.
|
2010-10-12 08:32:05 +04:00
|
|
|
'-Wno-unnamed-type-template-args',
|
2011-06-08 20:40:06 +04:00
|
|
|
# TODO(thakis): Reenable once the one instance this warns on
|
|
|
|
# is fixed.
|
|
|
|
'-Wno-parentheses',
|
2010-09-22 04:09:28 +04:00
|
|
|
],
|
|
|
|
}],
|
2011-02-11 19:43:46 +03:00
|
|
|
['clang==1 and clang_use_chrome_plugins==1', {
|
|
|
|
'OTHER_CFLAGS': [
|
|
|
|
'<(clang_chrome_plugins_flags)',
|
|
|
|
],
|
|
|
|
}],
|
2011-01-28 05:57:59 +03:00
|
|
|
['clang==1 and clang_load!="" and clang_add_plugin!=""', {
|
|
|
|
'OTHER_CFLAGS': [
|
|
|
|
'-Xclang', '-load', '-Xclang', '<(clang_load)',
|
|
|
|
'-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
|
|
|
|
],
|
|
|
|
}],
|
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',
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
],
|
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']},
|
|
|
|
}],
|
|
|
|
['_mac_bundle', {
|
|
|
|
'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
|
2009-02-28 03:50:08 +03:00
|
|
|
}],
|
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': {
|
|
|
|
'CHROMIUM_STRIP_SAVE_FILE': '<(asan_saves_file)'
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
],
|
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',
|
2010-06-01 22:30:25 +04:00
|
|
|
}], # _type=="shared_library" or _type=="loadable_module"'
|
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"
|
2009-02-26 00:26:55 +03:00
|
|
|
['OS=="win"', {
|
|
|
|
'target_defaults': {
|
|
|
|
'defines': [
|
2011-08-13 06:19:25 +04:00
|
|
|
'_WIN32_WINNT=0x0600',
|
|
|
|
'WINVER=0x0600',
|
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-06-24 00:08:45 +04:00
|
|
|
'_HAS_TR1=0',
|
2009-02-26 00:26:55 +03:00
|
|
|
],
|
2010-06-21 22:06:52 +04:00
|
|
|
'conditions': [
|
|
|
|
['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',
|
|
|
|
],
|
|
|
|
}],
|
2010-06-21 22:06:52 +04:00
|
|
|
],
|
2009-07-21 03:00:20 +04:00
|
|
|
'msvs_system_include_dirs': [
|
2009-12-13 01:19:52 +03:00
|
|
|
'<(DEPTH)/third_party/platformsdk_win7/files/Include',
|
2010-06-10 01:31:37 +04:00
|
|
|
'<(DEPTH)/third_party/directxsdk/files/Include',
|
2009-02-26 00:26:55 +03:00
|
|
|
'$(VSInstallDir)/VC/atlmfc/include',
|
|
|
|
],
|
2009-08-27 00:47:49 +04:00
|
|
|
'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
|
2011-05-03 06:04:11 +04:00
|
|
|
'msvs_disabled_warnings': [4351, 4396, 4503, 4819,
|
|
|
|
# TODO(maruel): These warnings are level 4. They will be slowly
|
|
|
|
# removed as code is fixed.
|
|
|
|
4100, 4121, 4125, 4127, 4130, 4131, 4189, 4201, 4238, 4244, 4245,
|
|
|
|
4310, 4355, 4428, 4481, 4505, 4510, 4512, 4530, 4610, 4611, 4701,
|
|
|
|
4702, 4706,
|
|
|
|
],
|
2009-02-26 00:26:55 +03:00
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'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': [
|
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_multi_core_compile', {
|
2010-01-04 09:40:16 +03:00
|
|
|
'AdditionalOptions': ['/MP'],
|
2009-08-01 03:33:55 +04:00
|
|
|
}],
|
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_VERSION=="2005e"', {
|
|
|
|
'AdditionalOptions': ['/w44068'], # Unknown pragma to 4 (ATL)
|
|
|
|
}],
|
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': [
|
|
|
|
'<(DEPTH)/third_party/platformsdk_win7/files/Lib',
|
|
|
|
'<(DEPTH)/third_party/directxsdk/files/Lib/x86',
|
|
|
|
],
|
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
|
|
|
],
|
2011-03-28 16:01:29 +04:00
|
|
|
'conditions': [
|
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', {
|
|
|
|
# Explicitly required when using the ATL with express
|
|
|
|
'AdditionalDependencies': [
|
|
|
|
'atlthunk.lib',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
['MSVS_VERSION=="2005e"', {
|
|
|
|
# Non-express versions link automatically to these
|
|
|
|
'AdditionalDependencies': [
|
|
|
|
'advapi32.lib',
|
|
|
|
'comdlg32.lib',
|
|
|
|
'ole32.lib',
|
|
|
|
'shell32.lib',
|
|
|
|
'user32.lib',
|
|
|
|
'winspool.lib',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2010-06-10 01:31:37 +04:00
|
|
|
'AdditionalLibraryDirectories': [
|
|
|
|
'<(DEPTH)/third_party/platformsdk_win7/files/Lib',
|
|
|
|
'<(DEPTH)/third_party/directxsdk/files/Lib/x86',
|
|
|
|
],
|
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',
|
|
|
|
'TypeLibraryName': '$(InputName).tlb',
|
|
|
|
'OutputDirectory': '$(IntDir)',
|
|
|
|
'HeaderFileName': '$(InputName).h',
|
|
|
|
'DLLDataFileName': 'dlldata.c',
|
|
|
|
'InterfaceIdentifierFileName': '$(InputName)_i.c',
|
|
|
|
'ProxyFileName': '$(InputName)_p.c',
|
|
|
|
},
|
|
|
|
'VCResourceCompilerTool': {
|
|
|
|
'Culture' : '1033',
|
2010-05-08 00:41:38 +04:00
|
|
|
'AdditionalIncludeDirectories': [
|
|
|
|
'<(DEPTH)',
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)',
|
|
|
|
],
|
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',
|
|
|
|
'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',
|
|
|
|
'/dynamicbase',
|
|
|
|
'/ignore:4199',
|
|
|
|
'/ignore:4221',
|
|
|
|
'/nxcompat',
|
|
|
|
],
|
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
|
2010-01-04 09:40:16 +03:00
|
|
|
'/dynamicbase',
|
|
|
|
'/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',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
2011-09-07 01:53:30 +04:00
|
|
|
['clang==1', {
|
|
|
|
'make_global_settings': [
|
|
|
|
['CC', 'third_party/llvm-build/Release+Asserts/bin/clang'],
|
|
|
|
['CXX', 'third_party/llvm-build/Release+Asserts/bin/clang++'],
|
2011-09-07 03:51:07 +04:00
|
|
|
['LINK', '$(CXX)'],
|
2011-09-07 01:53:30 +04:00
|
|
|
['CC.host', '$(CC)'],
|
|
|
|
['CXX.host', '$(CXX)'],
|
|
|
|
['LINK.host', '$(LINK)'],
|
|
|
|
],
|
|
|
|
}],
|
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.
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
'SDKROOT': 'macosx<(mac_sdk)', # -isysroot
|
|
|
|
|
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
|
|
|
}
|