2009-02-26 00:26:55 +03:00
|
|
|
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
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
|
|
|
{
|
|
|
|
'variables': {
|
2009-03-12 22:09:24 +03:00
|
|
|
# .gyp files 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.
|
2009-02-26 00:26:55 +03:00
|
|
|
'chromium_code%': 0,
|
2009-03-12 22:09:24 +03:00
|
|
|
|
|
|
|
# Variables expected to be overriden on the GYP command line (-D) or by
|
|
|
|
# ~/.gyp/include.gypi.
|
|
|
|
|
2009-08-05 23:26:07 +04:00
|
|
|
# Putting a variables dict inside another variables dict looks kind of
|
|
|
|
# weird. This is done so that "branding" and "buildtype" are defined as
|
|
|
|
# variables within the outer variables dict here. This is necessary
|
|
|
|
# to get these variables defined for the conditions within this variables
|
|
|
|
# dict that operate on these variables.
|
|
|
|
'variables': {
|
|
|
|
# Override branding to select the desired branding flavor.
|
|
|
|
'branding%': 'Chromium',
|
|
|
|
|
|
|
|
# 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',
|
2009-08-26 04:14:27 +04:00
|
|
|
|
2009-10-16 04:53:59 +04:00
|
|
|
# Compute the architecture that we're building for. Default to the
|
|
|
|
# architecture that we're building on.
|
|
|
|
'conditions': [
|
2009-12-11 23:04:06 +03:00
|
|
|
[ 'OS=="linux" or OS=="freebsd"', {
|
2009-10-16 04:53:59 +04:00
|
|
|
# This handles the Linux platforms we generally deal with. Anything
|
|
|
|
# else gets passed through, which probably won't work very well; such
|
|
|
|
# hosts should pass an explicit target_arch to gyp.
|
|
|
|
'target_arch%':
|
2009-12-11 23:04:06 +03:00
|
|
|
'<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s/arm.*/arm/")',
|
2009-10-16 04:53:59 +04:00
|
|
|
}, { # OS!="linux"
|
|
|
|
'target_arch%': 'ia32',
|
2009-11-17 01:55:17 +03:00
|
|
|
}],
|
2009-10-16 04:53:59 +04:00
|
|
|
],
|
2009-09-19 02:10:27 +04:00
|
|
|
|
2009-08-26 04:14:27 +04:00
|
|
|
# We do want to build Chromium with Breakpad support in certain
|
|
|
|
# situations. I.e. for Chrome bot.
|
|
|
|
'linux_chromium_breakpad%': 0,
|
2009-10-01 22:54:57 +04:00
|
|
|
# And if we want to dump symbols.
|
2009-10-02 03:29:03 +04:00
|
|
|
'linux_chromium_dump_symbols%': 0,
|
|
|
|
# Also see linux_strip_binary below.
|
2009-09-22 16:37:44 +04:00
|
|
|
|
|
|
|
# By default, Linux does not use views. To turn on views in Linux,
|
|
|
|
# set the variable GYP_DEFINES to "toolkit_views=1", or modify
|
|
|
|
# ~/.gyp/include.gypi .
|
|
|
|
'toolkit_views%': 0,
|
|
|
|
|
|
|
|
# Defaults to a desktop build, overridden via command line/env.
|
|
|
|
'chromeos%': 0,
|
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,
|
2009-08-05 23:26:07 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
# Define branding and buildtype on the basis of their settings within the
|
|
|
|
# variables sub-dict above, unless overridden.
|
|
|
|
'branding%': '<(branding)',
|
|
|
|
'buildtype%': '<(buildtype)',
|
2009-09-19 02:10:27 +04:00
|
|
|
'target_arch%': '<(target_arch)',
|
2009-09-22 16:37:44 +04:00
|
|
|
'toolkit_views%': '<(toolkit_views)',
|
|
|
|
'chromeos%': '<(chromeos)',
|
2009-09-25 00:36:21 +04:00
|
|
|
'inside_chromium_build%': '<(inside_chromium_build)',
|
2009-10-02 23:59:54 +04:00
|
|
|
'fastbuild%': '<(fastbuild)',
|
2009-08-05 23:26:07 +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',
|
|
|
|
|
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
|
|
|
# Although base/allocator lets you select a heap library via an
|
|
|
|
# environment variable, the libcmt shim it uses sometimes gets in
|
|
|
|
# the way. To disable it entirely, and switch to normal msvcrt, do e.g.
|
|
|
|
# 'win_use_allocator_shim': 0,
|
|
|
|
# 'win_release_RuntimeLibrary': 2
|
|
|
|
# to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build.
|
|
|
|
'win_use_allocator_shim%': 1, # 0 = shim allocator via libcmt; 1 = msvcrt
|
|
|
|
|
2009-04-08 16:55:49 +04:00
|
|
|
# To do a shared build on linux we need to be able to choose between type
|
|
|
|
# static_library and shared_library. We default to doing a static build
|
|
|
|
# but you can override this with "gyp -Dlibrary=shared_library" or you
|
|
|
|
# can add the following line (without the #) to ~/.gyp/include.gypi
|
|
|
|
# {'variables': {'library': 'shared_library'}}
|
|
|
|
# to compile as shared by default
|
|
|
|
'library%': 'static_library',
|
2009-09-12 02:32:11 +04:00
|
|
|
|
2009-09-01 23:09:41 +04:00
|
|
|
# The Google Update appid.
|
|
|
|
'google_update_appid%': '{8A69D345-D564-463c-AFF1-A69D9E530F96}',
|
2009-09-12 02:32:11 +04:00
|
|
|
|
|
|
|
# Whether to add the experimental build define.
|
2009-09-28 20:50:46 +04:00
|
|
|
'chrome_frame_define%': 0,
|
2009-04-14 05:39:12 +04:00
|
|
|
|
2009-12-10 06:21:14 +03:00
|
|
|
# Whether GPU plugin build is enabled.
|
|
|
|
'enable_gpu%': 0,
|
2009-11-17 01:55:17 +03:00
|
|
|
|
2009-11-14 01:21:01 +03:00
|
|
|
# Whether usage of OpenMAX is enabled.
|
|
|
|
'enable_openmax%': 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',
|
|
|
|
|
2009-09-04 05:53:01 +04:00
|
|
|
# The system root for cross-compiles. Default: none.
|
|
|
|
'sysroot%': '',
|
|
|
|
|
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
|
|
|
|
2009-10-02 03:29:03 +04:00
|
|
|
# Strip the binary after dumping symbols.
|
|
|
|
'linux_strip_binary%': 0,
|
|
|
|
|
2009-11-11 22:24:24 +03:00
|
|
|
# Enable TCMalloc.
|
2009-12-09 01:38:31 +03:00
|
|
|
'linux_use_tcmalloc%': 1,
|
2009-11-11 22:24:24 +03:00
|
|
|
|
2009-09-22 16:37:44 +04:00
|
|
|
# Set to select the Title Case versions of strings in GRD files.
|
|
|
|
'use_titlecase_in_grd_files%': 0,
|
2009-09-16 00:13:38 +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-10-07 04:10:46 +04:00
|
|
|
# Set ARM-v7 compilation flags
|
|
|
|
'armv7%': 0,
|
|
|
|
|
2009-12-04 09:21:29 +03:00
|
|
|
# Set Thumb compilation flags.
|
|
|
|
'arm_thumb%': 0,
|
|
|
|
|
2009-08-01 03:33:55 +04:00
|
|
|
'conditions': [
|
2009-12-11 23:04:06 +03:00
|
|
|
['OS=="linux" or OS=="freebsd"', {
|
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)',
|
2009-08-26 04:14:27 +04:00
|
|
|
'conditions': [
|
|
|
|
['branding=="Chrome" or linux_chromium_breakpad==1', {
|
|
|
|
'linux_breakpad%': 1,
|
|
|
|
}, {
|
|
|
|
'linux_breakpad%': 0,
|
|
|
|
}],
|
2009-10-01 22:54:57 +04:00
|
|
|
# All Chrome builds have breakpad symbols, but only process the
|
|
|
|
# symbols from official builds.
|
|
|
|
# TODO(mmoss) dump_syms segfaults on x64. Enable once dump_syms and
|
|
|
|
# crash server handle 64-bit symbols.
|
|
|
|
['linux_chromium_dump_symbols==1 or '
|
|
|
|
'(branding=="Chrome" and buildtype=="Official" and '
|
|
|
|
'target_arch=="ia32")', {
|
|
|
|
'linux_dump_symbols%': 1,
|
|
|
|
}, {
|
|
|
|
'linux_dump_symbols%': 0,
|
|
|
|
}],
|
2009-09-22 16:37:44 +04:00
|
|
|
['toolkit_views==0', {
|
|
|
|
# GTK wants Title Case strings
|
|
|
|
'use_titlecase_in_grd_files%': 1,
|
|
|
|
}],
|
2009-08-26 04:14:27 +04:00
|
|
|
],
|
2009-12-11 23:04:06 +03:00
|
|
|
}], # OS=="linux" or OS=="freebsd"
|
2009-08-05 23:26:07 +04:00
|
|
|
['OS=="mac"', {
|
2009-09-22 16:37:44 +04:00
|
|
|
# Mac wants Title Case strings
|
|
|
|
'use_titlecase_in_grd_files%': 1,
|
2009-08-05 23:26:07 +04:00
|
|
|
'conditions': [
|
|
|
|
# mac_product_name is set to the name of the .app bundle as it should
|
|
|
|
# appear on disk. This duplicates data from
|
|
|
|
# chrome/app/theme/chromium/BRANDING and
|
|
|
|
# chrome/app/theme/google_chrome/BRANDING, but is necessary to get
|
|
|
|
# these names into the build system.
|
|
|
|
['branding=="Chrome"', {
|
|
|
|
'mac_product_name%': 'Google Chrome',
|
|
|
|
}, { # else: branding!="Chrome"
|
|
|
|
'mac_product_name%': 'Chromium',
|
|
|
|
}],
|
|
|
|
|
|
|
|
# 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,
|
|
|
|
}, { # else: branding!="Chrome" or buildtype!="Official"
|
|
|
|
'mac_breakpad%': 0,
|
|
|
|
'mac_keystone%': 0,
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}], # OS=="mac"
|
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': [
|
|
|
|
['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
|
|
|
|
}],
|
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
|
|
|
}],
|
|
|
|
],
|
2009-09-18 01:54:28 +04:00
|
|
|
|
|
|
|
# NOTE: When these end up in the Mac bundle, we need to replace '-' for '_'
|
|
|
|
# so Cocoa is happy (http://crbug.com/20441).
|
|
|
|
'locales': [
|
2009-11-04 23:36:50 +03:00
|
|
|
'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB',
|
2009-09-18 01:54:28 +04:00
|
|
|
'en-US', 'es-419', 'es', 'et', 'fi', 'fil', 'fr', 'gu', 'he',
|
|
|
|
'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv',
|
|
|
|
'ml', 'mr', 'nb', 'nl', 'or', 'pl', 'pt-BR', 'pt-PT', 'ro',
|
2009-11-04 23:36:50 +03:00
|
|
|
'ru', 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr',
|
2009-09-18 01:54:28 +04:00
|
|
|
'uk', 'vi', 'zh-CN', 'zh-TW',
|
|
|
|
],
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
'target_defaults': {
|
2009-08-21 01:19:26 +04:00
|
|
|
'variables': {
|
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
|
|
|
|
# See http://msdn.microsoft.com/en-us/library/aa652367(VS.71).aspx
|
|
|
|
'win_release_RuntimeLibrary%': '0', # 0 = /MT (nondebug static)
|
|
|
|
'win_debug_RuntimeLibrary%': '1', # 1 = /MTd (debug static)
|
|
|
|
|
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,
|
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'],
|
|
|
|
}],
|
2009-09-28 20:50:46 +04:00
|
|
|
['chrome_frame_define', {
|
|
|
|
'defines': ['CHROME_FRAME_BUILD'],
|
2009-09-12 02:32:11 +04:00
|
|
|
}],
|
2009-05-15 07:05:20 +04:00
|
|
|
['toolkit_views==1', {
|
2009-05-13 03:51:17 +04:00
|
|
|
'defines': ['TOOLKIT_VIEWS=1'],
|
|
|
|
}],
|
2009-10-14 03:31:53 +04:00
|
|
|
['chromeos==1', {
|
|
|
|
'defines': ['CHROMEOS_TRANSITIONAL=1'],
|
|
|
|
}],
|
2009-10-13 03:58:03 +04:00
|
|
|
['chromeos==1 or toolkit_views==1', {
|
2009-07-09 03:45:29 +04:00
|
|
|
'defines': ['OS_CHROMEOS=1'],
|
2009-06-03 02:57:50 +04:00
|
|
|
}],
|
2009-12-10 06:21:14 +03:00
|
|
|
['enable_gpu==1', {
|
|
|
|
'defines': ['ENABLE_GPU=1'],
|
2009-12-09 20:45:03 +03:00
|
|
|
}],
|
2009-10-02 23:59:54 +04:00
|
|
|
['fastbuild!=0', {
|
|
|
|
'conditions': [
|
|
|
|
# Finally, for Windows, we simply turn on profiling.
|
|
|
|
['OS=="win"', {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'GenerateDebugInformation': 'false',
|
|
|
|
},
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'DebugInformationFormat': '0',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}], # OS==win
|
|
|
|
], # 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'],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
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-10-23 04:12:01 +04:00
|
|
|
# Add -lgcov for executables and shared_libraries, not for
|
|
|
|
# static_libraries. This is a delayed conditional.
|
2009-04-03 08:35:18 +04:00
|
|
|
'target_conditions': [
|
2009-10-23 04:12:01 +04:00
|
|
|
['_type=="executable" or _type=="shared_library"', {
|
2009-04-03 08:35:18 +04:00
|
|
|
'xcode_settings': { 'OTHER_LDFLAGS': [ '-lgcov' ] },
|
2009-04-14 03:19:47 +04:00
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
2009-05-01 03:19:00 +04:00
|
|
|
# Linux gyp (into scons) doesn't like target_conditions?
|
|
|
|
# TODO(???): track down why 'target_conditions' doesn't work
|
|
|
|
# on Linux gyp into scons like it does on Mac gyp into xcodeproj.
|
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',
|
|
|
|
'AdditionalOptions': '/Yd',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}], # OS==win
|
|
|
|
], # conditions for coverage
|
|
|
|
}], # coverage!=0
|
|
|
|
], # conditions for 'target_defaults'
|
2009-02-26 00:26:55 +03:00
|
|
|
'default_configuration': 'Debug',
|
|
|
|
'configurations': {
|
2009-05-22 05:40:48 +04:00
|
|
|
# VCLinkerTool LinkIncremental values below:
|
|
|
|
# 0 == default
|
|
|
|
# 1 == /INCREMENTAL:NO
|
|
|
|
# 2 == /INCREMENTAL
|
|
|
|
# Debug links incremental, Release does not.
|
2009-10-30 00:24:56 +03:00
|
|
|
'Common': {
|
|
|
|
'abstract': 1,
|
|
|
|
'msvs_configuration_attributes': {
|
|
|
|
'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
|
|
|
|
'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
|
|
|
|
'CharacterSet': '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-02-26 00:26:55 +03:00
|
|
|
'Debug': {
|
2009-10-30 00:24:56 +03:00
|
|
|
'inherit_from': ['Common'],
|
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)',
|
2009-10-21 06:23:53 +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'],
|
|
|
|
'BasicRuntimeChecks': '3',
|
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)',
|
2009-10-30 00:24:56 +03:00
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'LinkIncremental': '<(msvs_debug_link_incremental)',
|
|
|
|
},
|
|
|
|
'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
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'Release': {
|
2009-10-30 00:24:56 +03:00
|
|
|
'inherit_from': ['Common'],
|
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)',
|
|
|
|
},
|
2009-10-30 00:24:56 +03:00
|
|
|
'VCLinkerTool': {
|
|
|
|
'LinkIncremental': '1',
|
|
|
|
},
|
|
|
|
},
|
2009-02-26 00:26:55 +03:00
|
|
|
'conditions': [
|
2009-09-18 18:26:56 +04:00
|
|
|
['release_valgrind_build==0', {
|
|
|
|
'defines': ['NVALGRIND'],
|
|
|
|
}],
|
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'],
|
|
|
|
}],
|
|
|
|
['win_release_RuntimeLibrary==2', {
|
|
|
|
# Visual C++ 2008 barfs when building anything with /MD (msvcrt):
|
|
|
|
# VC\include\typeinfo(139) : warning C4275: non dll-interface
|
|
|
|
# class 'stdext::exception' used as base for dll-interface
|
|
|
|
# class 'std::bad_cast'
|
|
|
|
'msvs_disabled_warnings': [4275],
|
|
|
|
}],
|
2009-10-30 00:24:56 +03:00
|
|
|
['msvs_use_common_release', {
|
2009-02-26 00:26:55 +03:00
|
|
|
'msvs_props': ['release.vsprops'],
|
|
|
|
}],
|
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-08-05 02:50:13 +04:00
|
|
|
'conditions': [
|
|
|
|
[ 'OS=="win"', {
|
|
|
|
# TODO(bradnelson): add a gyp mechanism to make this more graceful.
|
|
|
|
'Purify': {
|
2009-10-30 00:24:56 +03:00
|
|
|
'inherit_from': ['Release'],
|
2009-08-05 02:50:13 +04:00
|
|
|
'defines': [
|
|
|
|
'PURIFY',
|
|
|
|
'NO_TCMALLOC',
|
|
|
|
],
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'Optimization': '0',
|
|
|
|
'RuntimeLibrary': '0',
|
|
|
|
'BufferSecurityCheck': 'false',
|
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'EnableCOMDATFolding': '1',
|
|
|
|
'LinkIncremental': '1',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2009-12-05 01:46:50 +03:00
|
|
|
'Common_x64': {
|
2009-11-02 02:45:30 +03:00
|
|
|
'msvs_configuration_platform': 'x64',
|
2009-12-05 01:46:50 +03:00
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'TargetMachine': '17',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'abstract': 1,
|
|
|
|
},
|
|
|
|
'Debug_x64': {
|
|
|
|
'inherit_from': ['Debug', 'Common_x64'],
|
2009-11-02 02:45:30 +03:00
|
|
|
},
|
|
|
|
'Release_x64': {
|
2009-12-05 01:46:50 +03:00
|
|
|
'inherit_from': ['Release', 'Common_x64'],
|
2009-11-02 02:45:30 +03:00
|
|
|
},
|
|
|
|
'Purify_x64': {
|
2009-12-05 01:46:50 +03:00
|
|
|
'inherit_from': ['Purify', 'Common_x64'],
|
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': [
|
2009-12-11 23:04:06 +03:00
|
|
|
['OS=="linux" or OS=="freebsd"', {
|
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': {
|
|
|
|
'werror%': '-Werror',
|
2009-08-14 09:30:52 +04:00
|
|
|
'no_strict_aliasing%': 0,
|
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',
|
2009-10-28 00:40:26 +03:00
|
|
|
'-fvisibility=hidden',
|
2009-08-13 16:53:16 +04:00
|
|
|
'-Wall',
|
|
|
|
'-D_FILE_OFFSET_BITS=64',
|
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',
|
2009-03-21 02:13:26 +03:00
|
|
|
],
|
2009-04-03 08:07:38 +04:00
|
|
|
'ldflags': [
|
2009-03-21 02:13:26 +03:00
|
|
|
'-pthread',
|
|
|
|
],
|
2009-03-26 21:58:10 +03:00
|
|
|
'scons_variable_settings': {
|
|
|
|
'LIBPATH': ['$LIB_DIR'],
|
2009-03-21 02:13:26 +03:00
|
|
|
# Linking of large files uses lots of RAM, so serialize links
|
|
|
|
# using the handy flock command from util-linux.
|
2009-03-27 07:27:01 +03:00
|
|
|
'FLOCK_LINK': ['flock', '$TOP_BUILDDIR/linker.lock', '$LINK'],
|
2009-04-02 20:20:31 +04:00
|
|
|
'FLOCK_SHLINK': ['flock', '$TOP_BUILDDIR/linker.lock', '$SHLINK'],
|
|
|
|
'FLOCK_LDMODULE': ['flock', '$TOP_BUILDDIR/linker.lock', '$LDMODULE'],
|
2009-03-21 02:13:26 +03:00
|
|
|
|
|
|
|
# We have several cases where archives depend on each other in
|
|
|
|
# a cyclic fashion. Since the GNU linker does only a single
|
|
|
|
# pass over the archives we surround the libraries with
|
|
|
|
# --start-group and --end-group (aka -( and -) ). That causes
|
|
|
|
# ld to loop over the group until no more undefined symbols
|
|
|
|
# are found. In an ideal world we would only make groups from
|
|
|
|
# those libraries which we knew to be in cycles. However,
|
|
|
|
# that's tough with SCons, so we bodge it by making all the
|
|
|
|
# archives a group by redefining the linking command here.
|
|
|
|
#
|
|
|
|
# TODO: investigate whether we still have cycles that
|
|
|
|
# require --{start,end}-group. There has been a lot of
|
|
|
|
# refactoring since this was first coded, which might have
|
|
|
|
# eliminated the circular dependencies.
|
2009-04-21 01:36:41 +04:00
|
|
|
#
|
|
|
|
# Note: $_LIBDIRFLAGS comes before ${LINK,SHLINK,LDMODULE}FLAGS
|
|
|
|
# so that we prefer our own built libraries (e.g. -lpng) to
|
|
|
|
# system versions of libraries that pkg-config might turn up.
|
|
|
|
# TODO(sgk): investigate handling this not by re-ordering the
|
|
|
|
# flags this way, but by adding a hook to use the SCons
|
|
|
|
# ParseFlags() option on the output from pkg-config.
|
2009-09-19 04:47:04 +04:00
|
|
|
'LINKCOM': [['$FLOCK_LINK', '-o', '$TARGET',
|
|
|
|
'$_LIBDIRFLAGS', '$LINKFLAGS', '$SOURCES',
|
|
|
|
'-Wl,--start-group', '$_LIBFLAGS', '-Wl,--end-group']],
|
|
|
|
'SHLINKCOM': [['$FLOCK_SHLINK', '-o', '$TARGET',
|
|
|
|
'$_LIBDIRFLAGS', '$SHLINKFLAGS', '$SOURCES',
|
|
|
|
'-Wl,--start-group', '$_LIBFLAGS', '-Wl,--end-group']],
|
|
|
|
'LDMODULECOM': [['$FLOCK_LDMODULE', '-o', '$TARGET',
|
|
|
|
'$_LIBDIRFLAGS', '$LDMODULEFLAGS', '$SOURCES',
|
|
|
|
'-Wl,--start-group', '$_LIBFLAGS', '-Wl,--end-group']],
|
2009-03-21 02:13:26 +03:00
|
|
|
'IMPLICIT_COMMAND_DEPENDENCIES': 0,
|
2009-04-22 04:20:29 +04:00
|
|
|
# -rpath is only used when building with shared libraries.
|
|
|
|
'conditions': [
|
|
|
|
[ 'library=="shared_library"', {
|
|
|
|
'RPATH': '$LIB_DIR',
|
|
|
|
}],
|
|
|
|
],
|
2009-03-21 02:13:26 +03:00
|
|
|
},
|
2009-03-26 21:58:10 +03:00
|
|
|
'scons_import_variables': [
|
2009-05-02 00:32:49 +04:00
|
|
|
'AS',
|
2009-03-26 21:58:10 +03:00
|
|
|
'CC',
|
|
|
|
'CXX',
|
|
|
|
'LINK',
|
|
|
|
],
|
|
|
|
'scons_propagate_variables': [
|
2009-05-02 00:32:49 +04:00
|
|
|
'AS',
|
2009-03-26 21:58:10 +03:00
|
|
|
'CC',
|
|
|
|
'CCACHE_DIR',
|
|
|
|
'CXX',
|
|
|
|
'DISTCC_DIR',
|
|
|
|
'DISTCC_HOSTS',
|
|
|
|
'HOME',
|
2009-04-14 03:19:47 +04:00
|
|
|
'INCLUDE_SERVER_ARGS',
|
|
|
|
'INCLUDE_SERVER_PORT',
|
2009-03-26 21:58:10 +03:00
|
|
|
'LINK',
|
2009-05-09 02:35:32 +04:00
|
|
|
'CHROME_BUILD_TYPE',
|
|
|
|
'CHROMIUM_BUILD',
|
|
|
|
'OFFICIAL_BUILD',
|
2009-03-26 21:58:10 +03:00
|
|
|
],
|
2009-04-02 19:34:09 +04:00
|
|
|
'configurations': {
|
|
|
|
'Debug': {
|
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': [
|
2009-10-27 01:14:01 +03:00
|
|
|
'-O>(debug_optimize)',
|
2009-04-02 19:34:09 +04:00
|
|
|
'-g',
|
2009-05-22 07:37:45 +04:00
|
|
|
# One can use '-gstabs' to enable building the debugging
|
|
|
|
# information in STABS format for breakpad's dumpsyms.
|
2009-04-02 19:34:09 +04:00
|
|
|
],
|
2009-04-24 04:13:08 +04:00
|
|
|
'ldflags': [
|
|
|
|
'-rdynamic', # Allows backtrace to resolve symbols.
|
|
|
|
],
|
2009-04-28 04:43:27 +04:00
|
|
|
},
|
2009-04-02 19:34:09 +04:00
|
|
|
'Release': {
|
2009-07-21 15:41:01 +04:00
|
|
|
'variables': {
|
|
|
|
'release_optimize%': '2',
|
|
|
|
},
|
2009-04-02 19:34:09 +04:00
|
|
|
'cflags': [
|
2009-10-27 01:14:01 +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-11-30 23:17:32 +03:00
|
|
|
# We don't use exceptions. The eh_frame section is used for those
|
|
|
|
# and for symbolizing backtraces. By passing this flag we drop
|
|
|
|
# the eh_frame section completely, we shaving off 2.5mb from
|
|
|
|
# our resulting binary.
|
|
|
|
'-fno-asynchronous-unwind-tables',
|
2009-04-02 19:34:09 +04:00
|
|
|
],
|
2009-11-18 20:07:13 +03:00
|
|
|
'ldflags': [
|
|
|
|
'-Wl,--gc-sections',
|
|
|
|
],
|
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': [
|
|
|
|
['branding=="Chromium"', {
|
|
|
|
'cflags': [
|
|
|
|
'-march=pentium4',
|
|
|
|
'-msse2',
|
|
|
|
'-mfpmath=sse',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2009-05-07 02:38:23 +04:00
|
|
|
'cflags': [
|
|
|
|
'-m32',
|
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',
|
|
|
|
# TODO(piman): -Wa,-mimplicit-it=thumb is needed for
|
|
|
|
# inline assembly that uses condition codes but it's
|
|
|
|
# suboptimal. Better would be to #ifdef __thumb__ at the
|
|
|
|
# right place and have a separate thumb path.
|
|
|
|
'-Wa,-mimplicit-it=thumb',
|
|
|
|
]
|
|
|
|
}],
|
|
|
|
['armv7==1', {
|
2009-11-13 22:30:25 +03:00
|
|
|
'cflags': [
|
|
|
|
'-march=armv7-a',
|
|
|
|
'-mtune=cortex-a8',
|
|
|
|
'-mfpu=neon',
|
|
|
|
'-mfloat-abi=softfp',
|
|
|
|
],
|
|
|
|
}],
|
2009-08-10 22:58:07 +04:00
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
2009-09-04 05:53:01 +04:00
|
|
|
['sysroot!=""', {
|
2009-10-28 23:13:57 +03:00
|
|
|
'target_conditions': [
|
|
|
|
['_toolset=="target"', {
|
|
|
|
'cflags': [
|
|
|
|
'--sysroot=<(sysroot)',
|
|
|
|
],
|
|
|
|
'ldflags': [
|
|
|
|
'--sysroot=<(sysroot)',
|
|
|
|
],
|
|
|
|
}]]
|
2009-09-04 05:53:01 +04:00
|
|
|
}],
|
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', {
|
|
|
|
'cflags': [ '-gstabs' ],
|
|
|
|
'defines': ['USE_LINUX_BREAKPAD'],
|
|
|
|
}],
|
2009-10-28 00:40:26 +03:00
|
|
|
['library=="shared_library"', {
|
|
|
|
# When building with shared libraries, remove the visiblity-hiding
|
|
|
|
# flag.
|
|
|
|
'cflags!': [ '-fvisibility=hidden' ],
|
2009-11-02 23:32:51 +03:00
|
|
|
'conditions': [
|
2009-11-18 23:35:54 +03:00
|
|
|
['target_arch=="x64" or target_arch=="arm"', {
|
|
|
|
# Shared libraries need -fPIC on x86-64 and arm
|
2009-11-02 23:32:51 +03:00
|
|
|
'cflags': ['-fPIC']
|
|
|
|
}]
|
|
|
|
],
|
2009-10-28 00:40:26 +03:00
|
|
|
}],
|
2009-11-11 22:24:24 +03:00
|
|
|
['linux_use_tcmalloc==1', {
|
|
|
|
'defines': ['LINUX_USE_TCMALLOC'],
|
|
|
|
}],
|
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',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
2009-02-26 00:26:55 +03:00
|
|
|
['OS=="mac"', {
|
|
|
|
'target_defaults': {
|
2009-06-01 20:01:20 +04:00
|
|
|
'variables': {
|
|
|
|
# This should be 'mac_real_dsym%', but there seems to be a bug
|
|
|
|
# with % in variables that are intended to be set to different
|
|
|
|
# values in different targets, like this one.
|
|
|
|
'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
|
|
|
|
},
|
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',
|
|
|
|
'WARNING_CFLAGS': ['-Wall', '-Wendif-labels'],
|
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'}
|
|
|
|
],
|
2009-03-12 22:09:24 +03:00
|
|
|
],
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
'target_conditions': [
|
|
|
|
['_type!="static_library"', {
|
2009-04-16 19:30:46 +04:00
|
|
|
'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
|
|
|
|
}],
|
|
|
|
['_mac_bundle', {
|
|
|
|
'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
|
2009-02-28 03:50:08 +03:00
|
|
|
}],
|
2009-08-05 23:26:07 +04:00
|
|
|
['_type=="executable" or _type=="shared_library"', {
|
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': {
|
|
|
|
'Release': {
|
|
|
|
'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': [
|
|
|
|
['_type=="shared_library"', {
|
|
|
|
# The Xcode default is to strip debugging symbols
|
|
|
|
# only (-S). Local symbols should be stripped as
|
|
|
|
# well, which will be handled by -x. Xcode will
|
|
|
|
# continue to insert -S when stripping even when
|
|
|
|
# additional flags are added with STRIPFLAGS.
|
|
|
|
'STRIPFLAGS': '-x',
|
|
|
|
}], # _type=="shared_library"
|
|
|
|
], # 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
|
|
|
|
}], # _type=="executable" or _type=="shared_library"
|
|
|
|
], # target_conditions
|
|
|
|
}, # target_defaults
|
|
|
|
}], # OS=="mac"
|
2009-02-26 00:26:55 +03:00
|
|
|
['OS=="win"', {
|
|
|
|
'target_defaults': {
|
|
|
|
'defines': [
|
|
|
|
'_WIN32_WINNT=0x0600',
|
|
|
|
'WINVER=0x0600',
|
|
|
|
'WIN32',
|
|
|
|
'_WINDOWS',
|
|
|
|
'_HAS_EXCEPTIONS=0',
|
|
|
|
'NOMINMAX',
|
|
|
|
'_CRT_RAND_S',
|
|
|
|
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
|
|
|
|
'WIN32_LEAN_AND_MEAN',
|
|
|
|
'_SECURE_ATL',
|
2009-06-24 00:08:45 +04:00
|
|
|
'_HAS_TR1=0',
|
2009-02-26 00:26:55 +03:00
|
|
|
],
|
2009-07-21 03:00:20 +04:00
|
|
|
'msvs_system_include_dirs': [
|
2009-12-11 21:39:01 +03:00
|
|
|
'<(DEPTH)/third_party/platformsdk_win2008_6_1/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'],
|
2009-05-12 20:37:55 +04:00
|
|
|
'msvs_disabled_warnings': [4396, 4503, 4819],
|
2009-02-26 00:26:55 +03:00
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'MinimalRebuild': 'false',
|
|
|
|
'ExceptionHandling': '0',
|
|
|
|
'BufferSecurityCheck': 'true',
|
|
|
|
'EnableFunctionLevelLinking': 'true',
|
|
|
|
'RuntimeTypeInfo': 'false',
|
|
|
|
'WarningLevel': '3',
|
|
|
|
'WarnAsError': 'true',
|
|
|
|
'DebugInformationFormat': '3',
|
2009-07-31 23:58:58 +04:00
|
|
|
'conditions': [
|
2009-08-01 03:33:55 +04:00
|
|
|
[ 'msvs_multi_core_compile', {
|
|
|
|
'AdditionalOptions': '/MP',
|
|
|
|
}],
|
2009-07-31 23:58:58 +04:00
|
|
|
],
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
'VCLibrarianTool': {
|
|
|
|
'AdditionalOptions': '/ignore:4221',
|
|
|
|
'AdditionalLibraryDirectories':
|
2009-12-11 21:39:01 +03:00
|
|
|
['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'],
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'AdditionalDependencies': [
|
|
|
|
'wininet.lib',
|
|
|
|
'version.lib',
|
|
|
|
'msimg32.lib',
|
|
|
|
'ws2_32.lib',
|
|
|
|
'usp10.lib',
|
|
|
|
'psapi.lib',
|
2009-04-24 04:13:08 +04:00
|
|
|
'dbghelp.lib',
|
2009-02-26 00:26:55 +03:00
|
|
|
],
|
|
|
|
'AdditionalLibraryDirectories':
|
2009-12-11 21:39:01 +03:00
|
|
|
['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'],
|
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',
|
2009-03-31 05:12:14 +04:00
|
|
|
'AdditionalIncludeDirectories': ['<(DEPTH)'],
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
['chromium_code==0', {
|
2009-11-26 03:15:50 +03:00
|
|
|
# This section must follow the other condition sections above because
|
2009-02-26 00:26:55 +03:00
|
|
|
# external_code.gypi expects to be merged into those settings.
|
|
|
|
'includes': [
|
|
|
|
'external_code.gypi',
|
|
|
|
],
|
2009-06-29 21:58:25 +04:00
|
|
|
}, {
|
|
|
|
'target_defaults': {
|
|
|
|
# In Chromium code, we define __STDC_FORMAT_MACROS in order to get the
|
|
|
|
# C99 macros on Mac and Linux.
|
|
|
|
'defines': [
|
|
|
|
'__STDC_FORMAT_MACROS',
|
|
|
|
],
|
2009-11-26 03:15:50 +03:00
|
|
|
'conditions': [
|
|
|
|
['OS!="win"', {
|
|
|
|
'sources/': [ ['exclude', '_win\\.cc$'],
|
|
|
|
['exclude', '/win/'],
|
|
|
|
['exclude', '/win_[^/]*\\.cc$'] ],
|
|
|
|
}],
|
|
|
|
['OS!="mac"', {
|
|
|
|
'sources/': [ ['exclude', '_(cocoa|mac)(_unittest)?\\.cc$'],
|
In-application Keystone ticket promotion.
The concept of "ticket promotion" is added to the application when Keystone is
in use. Ticket promotion is used to turn a user Keystone ticket, which Chrome
normally establishes when it launches, into a system Keystone ticket, after
successful user authentication and authorization. Having a system Keystone
with a system ticket means that updates are applied with root privileges
instead of user privileges, essentially eliminating the possibility that a
user will fall off of the auto-update train because they can read and execute
but not write the application.
Two principles of promotion apply:
- An application on a user ticket NEEDS promotion if it determines that it
doesn't have permission to write to itself. Being on a user ticket, an
update attempt would fail.
- An application on a user ticket WANTS promotion if it already NEEDS
promotion. Additionally, if it is installed in a system-wide location
such as /Applications, it will WANT promotion, even if it does not NEED it.
If promotion is needed, an info bar will show up on launch requesting it.
This info bar works similarly to the default browser info bar: it has a "don't
bother me again" button, it will only show up after the first launch, it won't
disappear on navigation if the navigation happens very quickly, and it won't
show itself if another info bar is up. This means that if both the default
browser info bar and the promotion info bar have a shot at showing, only one
will win. In my experience, each wins about half of the time.
If promotion is needed, the update UI in the About window will be hidden.
Checking for updates and offering to apply them doesn't make much sense when
the update won't be able to install successfully. All of the auto-update
machinery is still working in the background, but the About window UI is
hidden.
If promotion is wanted, the About window will contain a new button allowing
the user to enter promotion. This gives access to the same promotion routine
as the promotion info bar. It can be used even from an administrative account
that is able to update the application without promotion. It's intended to be
used by the system administrator of the family without requiring them to
switch to one of the kids' accounts.
BUG=16360
TEST=Exhaustively, please.
Review URL: http://codereview.chromium.org/437053
git-svn-id: http://src.chromium.org/svn/trunk/src/build@33241 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-11-29 01:05:11 +03:00
|
|
|
['exclude', '/(cocoa|mac)/'],
|
2009-11-26 03:15:50 +03:00
|
|
|
['exclude', '\.mm$' ] ],
|
|
|
|
}],
|
2009-12-11 23:04:06 +03:00
|
|
|
['OS!="linux" and OS!="freebsd"', {
|
2009-11-26 03:15:50 +03:00
|
|
|
'sources/': [
|
|
|
|
['exclude', '_(chromeos|gtk|linux|x|x11)(_unittest)?\\.cc$'],
|
|
|
|
['exclude', '/gtk/'],
|
|
|
|
['exclude', '/(gtk|x11)_[^/]*\\.cc$'] ],
|
|
|
|
}],
|
|
|
|
# We use "POSIX" to refer to all non-Windows operating systems.
|
|
|
|
['OS=="win"', {
|
|
|
|
'sources/': [ ['exclude', '_posix\\.cc$'] ],
|
|
|
|
}],
|
|
|
|
# Though Skia is conceptually shared by Linux and Windows,
|
|
|
|
# the only _skia files in our tree are Linux-specific.
|
2009-12-11 23:04:06 +03:00
|
|
|
['OS!="linux" and OS!="freebsd"', {
|
2009-11-26 03:15:50 +03:00
|
|
|
'sources/': [ ['exclude', '_skia\\.cc$'] ],
|
|
|
|
}],
|
|
|
|
['chromeos!=1', {
|
|
|
|
'sources/': [ ['exclude', '_chromeos\\.cc$'] ]
|
|
|
|
}],
|
|
|
|
['OS!="win" and toolkit_views!=1', {
|
|
|
|
'sources/': [ ['exclude', '_views\\.cc$'] ]
|
|
|
|
}],
|
|
|
|
],
|
2009-06-29 21:58:25 +04:00
|
|
|
},
|
2009-02-26 00:26:55 +03:00
|
|
|
}],
|
2009-10-02 23:00:31 +04:00
|
|
|
['disable_nacl==1', {
|
|
|
|
'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': {
|
|
|
|
'Common': {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'AdditionalOptions':
|
|
|
|
'/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'Common_x64': {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'AdditionalOptions':
|
|
|
|
# safeseh is not compatible with x64
|
|
|
|
'/dynamicbase /ignore:4199 /ignore:4221 /nxcompat',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2009-07-04 02:00:19 +04:00
|
|
|
},
|
|
|
|
}],
|
2009-02-26 00:26:55 +03:00
|
|
|
],
|
2009-03-27 07:27:01 +03:00
|
|
|
'scons_settings': {
|
|
|
|
'sconsbuild_dir': '<(DEPTH)/sconsbuild',
|
2009-08-10 08:09:07 +04:00
|
|
|
'tools': ['ar', 'as', 'gcc', 'g++', 'gnulink', 'chromium_builders'],
|
2009-03-27 07:27:01 +03:00
|
|
|
},
|
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
|
|
|
}
|
2009-10-06 07:02:38 +04:00
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# tab-width:2
|
|
|
|
# indent-tabs-mode:nil
|
|
|
|
# End:
|
|
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|