diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-30 17:32:06 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-30 17:32:06 +0000 |
commit | 91d4437eb5f7428338fc1cffbe13d0f634e41dcf (patch) | |
tree | 70b673fd78751d65bc5a577ef225e5f753473222 /chrome | |
parent | 703adb6be2ac6e940a3cca503ac442e0dfa115df (diff) | |
download | chromium_src-91d4437eb5f7428338fc1cffbe13d0f634e41dcf.zip chromium_src-91d4437eb5f7428338fc1cffbe13d0f634e41dcf.tar.gz chromium_src-91d4437eb5f7428338fc1cffbe13d0f634e41dcf.tar.bz2 |
PGO build other change
- I am not pursuing the 'another sln target' approach. PGO will happen
as an option of a release build.
This change is to fix an build error because the theme dll does not contain code
so it is an error to pass optimization flags. So we override it for that project.
BUG=21932
TEST=none
Review URL: http://codereview.chromium.org/248039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27626 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rwxr-xr-x | chrome/chrome.gyp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 1b3338a..464773a 100755 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -6352,6 +6352,13 @@ }, }, }, + 'Release': { + 'msvs_settings': { + 'VCLinkerTool': { + 'LinkTimeCodeGeneration': '1', + }, + }, + } }, }, ]}, # 'targets' |