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.
|
|
|
|
|
|
|
|
{
|
|
|
|
'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.
|
|
|
|
|
|
|
|
# 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,
|
|
|
|
|
|
|
|
# Override branding to select the desired branding flavor.
|
2009-03-05 00:36:39 +03:00
|
|
|
'branding%': 'Chromium',
|
2009-04-03 08:35:18 +04:00
|
|
|
|
2009-06-26 00:50:30 +04:00
|
|
|
# Override buildtype to select the desired build flavor.
|
|
|
|
# Dev - everyday build for development/testing
|
|
|
|
# Official - release build (generally implies additional processing)
|
|
|
|
# TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp
|
|
|
|
# conversion is done), some of the things which are now controlled by
|
|
|
|
# 'branding', such as symbol generation, will need to be refactored based
|
|
|
|
# on 'buildtype' (i.e. we don't care about saving symbols for non-Official
|
|
|
|
# builds).
|
|
|
|
'buildtype%': 'Dev',
|
|
|
|
|
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-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-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-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-05-07 02:38:23 +04:00
|
|
|
# The architecture that we're building on.
|
|
|
|
'target_arch%': 'ia32',
|
2009-05-13 03:51:17 +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,
|
2009-06-03 02:57:50 +04:00
|
|
|
|
|
|
|
'linux2%': 0,
|
2009-06-12 00:16:10 +04:00
|
|
|
|
|
|
|
'chrome_personalization%': 0,
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
'target_defaults': {
|
2009-03-05 00:36:39 +03:00
|
|
|
'conditions': [
|
|
|
|
['branding=="Chrome"', {
|
|
|
|
'defines': ['GOOGLE_CHROME_BUILD'],
|
2009-05-29 00:31:48 +04:00
|
|
|
'conditions': [
|
|
|
|
['OS=="linux"', {
|
|
|
|
'cflags': [ '-gstabs' ],
|
|
|
|
}],
|
|
|
|
],
|
2009-03-05 00:36:39 +03:00
|
|
|
}, { # else: branding!="Chrome"
|
|
|
|
'defines': ['CHROMIUM_BUILD'],
|
|
|
|
}],
|
2009-05-15 07:05:20 +04:00
|
|
|
['toolkit_views==1', {
|
2009-05-13 03:51:17 +04:00
|
|
|
'defines': ['TOOLKIT_VIEWS=1'],
|
|
|
|
}],
|
2009-06-03 02:57:50 +04:00
|
|
|
['linux2==1', {
|
|
|
|
'defines': ['LINUX2=1'],
|
|
|
|
}],
|
2009-06-12 00:16:10 +04:00
|
|
|
['chrome_personalization==1', {
|
|
|
|
'defines': ['CHROME_PERSONALIZATION=1'],
|
|
|
|
}],
|
2009-04-03 08:35:18 +04:00
|
|
|
['coverage!=0', {
|
|
|
|
'conditions': [
|
|
|
|
['OS=="mac"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'GCC_INSTRUMENT_PROGRAM_FLOW_ARCS': 'YES',
|
|
|
|
'GCC_GENERATE_TEST_COVERAGE_FILES': 'YES',
|
2009-04-14 03:19:47 +04:00
|
|
|
},
|
2009-04-03 08:35:18 +04:00
|
|
|
# Add -lgcov for executables, not for static_libraries.
|
|
|
|
# This is a delayed conditional.
|
|
|
|
'target_conditions': [
|
|
|
|
['_type=="executable"', {
|
|
|
|
'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
|
|
|
}],
|
|
|
|
]},
|
|
|
|
# TODO(jrg): options for code coverage on Windows
|
|
|
|
],
|
2009-03-05 00:36:39 +03:00
|
|
|
],
|
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-02-26 00:26:55 +03:00
|
|
|
'Debug': {
|
|
|
|
'conditions': [
|
|
|
|
[ 'OS=="mac"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'COPY_PHASE_STRIP': 'NO',
|
|
|
|
'GCC_OPTIMIZATION_LEVEL': '0',
|
|
|
|
}
|
|
|
|
}],
|
|
|
|
[ 'OS=="win"', {
|
|
|
|
'configuration_platform': 'Win32',
|
|
|
|
'msvs_configuration_attributes': {
|
|
|
|
'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
|
|
|
|
'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
|
|
|
|
'CharacterSet': '1',
|
|
|
|
},
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'Optimization': '0',
|
|
|
|
'PreprocessorDefinitions': ['_DEBUG'],
|
|
|
|
'BasicRuntimeChecks': '3',
|
|
|
|
'RuntimeLibrary': '1',
|
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
2009-06-02 11:46:24 +04:00
|
|
|
'LinkIncremental': '<(msvs_debug_link_incremental)',
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
'VCResourceCompilerTool': {
|
|
|
|
'PreprocessorDefinitions': ['_DEBUG'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'Release': {
|
|
|
|
'defines': [
|
|
|
|
'NDEBUG',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
[ 'OS=="mac"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'DEAD_CODE_STRIPPING': 'YES',
|
|
|
|
}
|
|
|
|
}],
|
2009-04-14 05:39:12 +04:00
|
|
|
[ 'OS=="win" and msvs_use_common_release', {
|
2009-02-26 00:26:55 +03:00
|
|
|
'configuration_platform': 'Win32',
|
|
|
|
'msvs_props': ['release.vsprops'],
|
|
|
|
}],
|
2009-05-22 05:40:48 +04:00
|
|
|
[ 'OS=="win"', {
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'LinkIncremental': '1',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}],
|
2009-02-26 00:26:55 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'conditions': [
|
2009-05-07 02:38:23 +04:00
|
|
|
['OS=="linux"', {
|
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-03-21 02:13:26 +03:00
|
|
|
'cflags': [
|
2009-05-07 02:38:23 +04:00
|
|
|
'<(werror)', # See note above about the werror variable.
|
|
|
|
'-pthread',
|
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.
|
|
|
|
'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': [
|
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
|
|
|
'-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': {
|
|
|
|
'cflags': [
|
|
|
|
'-O2',
|
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
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
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': [
|
|
|
|
[ 'target_arch=="arm"', {
|
|
|
|
'cflags': [
|
|
|
|
'-fno-exceptions',
|
|
|
|
'-Wall',
|
|
|
|
],
|
|
|
|
}, { # else: target_arch != "arm"
|
|
|
|
'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',
|
|
|
|
'-fno-exceptions',
|
|
|
|
'-Wall',
|
|
|
|
],
|
|
|
|
'ldflags': [
|
|
|
|
'-m32',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2009-03-21 02:13:26 +03:00
|
|
|
},
|
|
|
|
}],
|
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',
|
|
|
|
'GCC_C_LANGUAGE_STANDARD': 'c99',
|
|
|
|
'GCC_CW_ASM_SYNTAX': 'NO',
|
2009-06-03 22:15:22 +04:00
|
|
|
'GCC_DYNAMIC_NO_PIC': 'NO',
|
2009-02-26 00:26:55 +03:00
|
|
|
'GCC_ENABLE_PASCAL_STRINGS': 'NO',
|
|
|
|
'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
|
2009-04-10 19:46:34 +04:00
|
|
|
'GCC_OBJC_CALL_CXX_CDTORS': 'YES',
|
2009-02-26 00:26:55 +03:00
|
|
|
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES',
|
|
|
|
'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES',
|
|
|
|
'GCC_VERSION': '4.2',
|
|
|
|
'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
|
|
|
|
'MACOSX_DEPLOYMENT_TARGET': '10.5',
|
|
|
|
'PREBINDING': 'NO',
|
|
|
|
'SDKROOT': 'macosx10.5',
|
|
|
|
'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'},
|
|
|
|
{'GCC_PRECOMPILE_PREFIX_HEADER': 'NO'}],
|
|
|
|
],
|
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-03-19 22:26:42 +03:00
|
|
|
['_type=="executable"', {
|
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-02-26 00:26:55 +03:00
|
|
|
},
|
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-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
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include',
|
|
|
|
'$(VSInstallDir)/VC/atlmfc/include',
|
|
|
|
],
|
|
|
|
'msvs_cygwin_dirs': ['../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',
|
|
|
|
},
|
|
|
|
'VCLibrarianTool': {
|
|
|
|
'AdditionalOptions': '/ignore:4221',
|
|
|
|
'AdditionalLibraryDirectories':
|
2009-06-29 04:30:51 +04:00
|
|
|
['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'],
|
2009-02-26 00:26:55 +03:00
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'AdditionalOptions':
|
2009-06-29 05:59:03 +04:00
|
|
|
'/safeseh:NO /dynamicbase:NO /ignore:4199 /ignore:4221 /nxcompat',
|
2009-02-26 00:26:55 +03:00
|
|
|
'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-06-29 04:30:51 +04:00
|
|
|
['<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Lib'],
|
2009-06-12 22:03:02 +04:00
|
|
|
'DelayLoadDLLs': [
|
|
|
|
'dbghelp.dll',
|
|
|
|
'dwmapi.dll',
|
|
|
|
'uxtheme.dll',
|
|
|
|
],
|
2009-02-26 00:26:55 +03:00
|
|
|
'GenerateDebugInformation': 'true',
|
|
|
|
'MapFileName': '$(OutDir)\\$(TargetName).map',
|
|
|
|
'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
|
|
|
|
'TargetMachine': '1',
|
|
|
|
'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', {
|
|
|
|
# This section must follow the other conditon sections above because
|
|
|
|
# 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-02-26 00:26:55 +03:00
|
|
|
}],
|
|
|
|
],
|
2009-03-27 07:27:01 +03:00
|
|
|
'scons_settings': {
|
|
|
|
'sconsbuild_dir': '<(DEPTH)/sconsbuild',
|
|
|
|
},
|
2009-02-26 00:26:55 +03:00
|
|
|
'xcode_settings': {
|
|
|
|
# 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
|
|
|
},
|
|
|
|
}
|