Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index d1492320f727797ac8f4fb5c39ea091aba0eacf6..97ccb481f552370949315d597590615d426c8b4e 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -3372,11 +3372,14 @@ |
| # "/Oy /Oy-" and warnings about overriding. |
| 'AdditionalOptions': ['/Oy-'], |
| }], |
| + ['asan==0', { |
| + # Put data in separate COMDATs, unless ASan is enabled. |
|
Nico
2014/12/29 19:50:20
nit: The "unless ASan is enabled" only repeats the
Timur Iskhodzhanov
2014/12/29 20:07:29
Done (we came up with an even better version offli
|
| + 'AdditionalOptions': ['/Gw'], |
| + }], |
| ], |
| 'AdditionalOptions': [ |
| '/d2Zi+', # Improve debugging of Release builds. |
| '/Zc:inline', # Remove unreferenced COMDAT (faster links). |
| - '/Gw', # Put data in separate COMDATs. |
| '<@(win_release_extra_cflags)', |
| ], |
| }, |