Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index 5a2753f08af3172e7c9d25e2efb04e6479d74aad..1f3a24ab2c89529324ddd9cbe3bab72f65e1b69d 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -4967,6 +4967,13 @@ |
| }, |
| ], |
| ['optimize=="max"', { |
| + # Disable Warning 4702 ("Unreachable code") for the WPO/PGO |
| + # builds, see crbug.com/380175. |
| + # TODO(sebmarchand): Re-enable this once it doesn't trigger |
|
scottmg
2014/06/05 21:10:08
I think you can remove this TODO.
Sébastien Marchand
2014/06/05 21:18:39
Done.
|
| + # anymore when doing a PGO build. |
| + 'msvs_disabled_warnings': [ |
| + 4702 |
| + ], |
| 'msvs_settings': { |
| 'VCCLCompilerTool': { |
| # 2, optimizeMaxSpeed, Maximize Speed (/O2) |