| OLD | NEW |
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. | 1 # Copyright (c) 2014 Google Inc. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_pdbname', | 8 'target_name': 'ml_safeseh', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'sources': [ | 10 'sources': [ |
| 11 'hello.cc', | 11 'hello.cc', |
| 12 'pdbname.cc', | 12 'a.asm', |
| 13 ], | 13 ], |
| 14 'msvs_settings': { | 14 'msvs_settings': { |
| 15 'VCCLCompilerTool': { | 15 'VCLinkerTool': { |
| 16 'DebugInformationFormat': '3', | 16 'ImageHasSafeExceptionHandlers': 'true', |
| 17 }, | 17 }, |
| 18 'VCLinkerTool': { | 18 'MASM': { |
| 19 'GenerateDebugInformation': 'true', | 19 'UseSafeExceptionHandlers': 'true', |
| 20 }, | 20 }, |
| 21 }, | 21 }, |
| 22 }, | 22 }, |
| 23 ] | 23 ] |
| 24 } | 24 } |
| OLD | NEW |