Chromium Code Reviews| Index: pylib/gyp/msvs_emulation.py |
| diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py |
| index 1d59e8beb2948c0489ae9e6a45deed37304bc873..2afc5052fb2addfe37262bcc5230bdbfb65cf97f 100644 |
| --- a/pylib/gyp/msvs_emulation.py |
| +++ b/pylib/gyp/msvs_emulation.py |
| @@ -363,7 +363,8 @@ class MsvsSettings(object): |
| cl('AdditionalOptions', prefix='') |
| cflags.extend(['/FI' + f for f in self._Setting( |
| ('VCCLCompilerTool', 'ForcedIncludeFiles'), config, default=[])]) |
| - if self.vs_version.short_name == '2013' or self.vs_version == '2013e': |
| + if (self.vs_version.short_name == '2013' or |
| + self.vs_version.short_name == '2013e'): |
|
scottmg
2013/11/08 21:43:39
This was just a typo. :/
Nico
2013/11/09 04:20:31
if self.vs_version.short_name in ['2013', '2013e']
scottmg
2013/11/09 04:47:33
Done.
|
| # New flag required in 2013 to maintain previous PDB behavior. |
| cflags.append('/FS') |
| # ninja handles parallelism by itself, don't have the compiler do it too. |