Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(820)

Side by Side Diff: build/internal/release_impl_official.gypi

Issue 187813008: Add PGO targets to Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: It almost works ! Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'includes': ['release_defaults.gypi'], 5 'includes': ['release_defaults.gypi'],
6 'defines': ['OFFICIAL_BUILD'], 6 'defines': ['OFFICIAL_BUILD'],
7 'msvs_settings': { 7 'msvs_settings': {
8 'VCCLCompilerTool': { 8 'VCCLCompilerTool': {
9 'InlineFunctionExpansion': '2', 9 'InlineFunctionExpansion': '2',
10 'EnableIntrinsicFunctions': 'true', 10 'EnableIntrinsicFunctions': 'true',
(...skipping 13 matching lines...) Expand all
24 ], 24 ],
25 }, 25 },
26 'VCLinkerTool': { 26 'VCLinkerTool': {
27 'AdditionalOptions': [ 27 'AdditionalOptions': [
28 '/time', 28 '/time',
29 # This may reduce memory fragmentation during linking. 29 # This may reduce memory fragmentation during linking.
30 # The expected size is 40*1024*1024, which gives us about 10M of 30 # The expected size is 40*1024*1024, which gives us about 10M of
31 # headroom as of Dec 16, 2011. 31 # headroom as of Dec 16, 2011.
32 '/expectedoutputsize:41943040', 32 '/expectedoutputsize:41943040',
33 ], 33 ],
34 'LinkTimeCodeGeneration': '1',
Sébastien Marchand 2014/03/12 22:40:41 This line shouldn't be removed because it prevent
35 # The /PROFILE flag causes the linker to add a "FIXUP" debug stream to 34 # The /PROFILE flag causes the linker to add a "FIXUP" debug stream to
36 # the generated PDB. According to MSDN documentation, this flag is only 35 # the generated PDB. According to MSDN documentation, this flag is only
37 # available (or perhaps supported) in the Enterprise (team development) 36 # available (or perhaps supported) in the Enterprise (team development)
38 # version of Visual Studio. If this blocks your official build, simply 37 # version of Visual Studio. If this blocks your official build, simply
39 # comment out this line, then re-run "gclient runhooks". 38 # comment out this line, then re-run "gclient runhooks".
40 'Profile': 'true', 39 'Profile': 'true',
41 }, 40 },
42 }, 41 },
43 } 42 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698