diff options
author | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-14 01:39:12 +0000 |
---|---|---|
committer | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-14 01:39:12 +0000 |
commit | e5b2eaa2a2a52c104f038e520b61dcbcf7c835dd (patch) | |
tree | 18c71c13bc54f593676c44c7b212ede99a49e12f /build/common.gypi | |
parent | 92440e76c3fbda4b98e57f79535cba9a19c30f04 (diff) | |
download | chromium_src-e5b2eaa2a2a52c104f038e520b61dcbcf7c835dd.zip chromium_src-e5b2eaa2a2a52c104f038e520b61dcbcf7c835dd.tar.gz chromium_src-e5b2eaa2a2a52c104f038e520b61dcbcf7c835dd.tar.bz2 |
Matching v8 build settings more closely to try to fix regression in performance.
Review URL: http://codereview.chromium.org/67092
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13642 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 5058a31..6a67a24 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -39,6 +39,12 @@ # {'variables': {'library': 'shared_library'}} # to compile as shared by default 'library%': 'static_library', + + # 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, }, 'target_defaults': { 'conditions': [ @@ -124,7 +130,7 @@ 'DEAD_CODE_STRIPPING': 'YES', } }], - [ 'OS=="win"', { + [ 'OS=="win" and msvs_use_common_release', { 'configuration_platform': 'Win32', 'msvs_props': ['release.vsprops'], }], |