| Index: build/common.gypi
|
| diff --git a/build/common.gypi b/build/common.gypi
|
| index 353d2762ce5ed0d36f1816860cb0240b3b2542d3..720cb0d19af57c6cc6d58cecc0ae6d66dc56b32d 100644
|
| --- a/build/common.gypi
|
| +++ b/build/common.gypi
|
| @@ -1087,6 +1087,9 @@
|
| # process type.
|
| 'chrome_multiple_dll%': '0',
|
|
|
| + # Experimental setting to optimize Chrome's DLLs with PGO.
|
| + 'chrome_pgo_phase%': '0',
|
| +
|
| # The default settings for third party code for treating
|
| # warnings-as-errors. Ideally, this would not be required, however there
|
| # is some third party code that takes a long time to fix/roll. So, this
|
| @@ -4537,6 +4540,12 @@
|
| 'variables': {
|
| 'optimize%': 'size',
|
| },
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + # Set /LTCG for the official builds.
|
| + 'LinkTimeCodeGeneration': '1',
|
| + },
|
| + },
|
| 'target_conditions': [
|
| ['optimize=="size"', {
|
| 'msvs_settings': {
|
|
|