Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index 5a2753f08af3172e7c9d25e2efb04e6479d74aad..dd5a7db8a3df8cbdad9716d58949438fdcf462a4 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -4967,6 +4967,11 @@ |
| }, |
| ], |
| ['optimize=="max"', { |
| + # Disable Warning 4702 ("Unreachable code") for the WPO/PGO |
| + # builds, see crbug.com/380175. |
|
Peter Kasting
2014/06/05 23:38:10
Nit: Try to avoid referring to bugs in comments, i
|
| + 'msvs_disabled_warnings': [ |
| + 4702 |
| + ], |
| 'msvs_settings': { |
| 'VCCLCompilerTool': { |
| # 2, optimizeMaxSpeed, Maximize Speed (/O2) |