Chromium Code Reviews| Index: pylib/gyp/msvs_emulation.py |
| diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py |
| index 8dad191cd22ac8b610746893f2594d68da2164e9..08aa9890e68bd0494421bba08c31c746d4819046 100644 |
| --- a/pylib/gyp/msvs_emulation.py |
| +++ b/pylib/gyp/msvs_emulation.py |
| @@ -459,7 +459,7 @@ class MsvsSettings(object): |
| map={'1': 'SSE', '2': 'SSE2', '3': 'AVX', '4': 'IA32'}, prefix='/arch:') |
| cflags.extend(['/FI' + f for f in self._Setting( |
| ('VCCLCompilerTool', 'ForcedIncludeFiles'), config, default=[])]) |
| - if self.vs_version.short_name in ('2013', '2013e'): |
| + if self.vs_version.short_name in ('2013', '2013e', '2015'): |
| # New flag required in 2013 to maintain previous PDB behavior. |
| cflags.append('/FS') |
|
Shezan Baig (Bloomberg)
2014/12/09 20:30:00
I wonder if we should change the pdb path we pass
|
| # ninja handles parallelism by itself, don't have the compiler do it too. |