OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'test_eh_off', |
| 9 'product_name': 'test_eh_off', |
| 10 'type': 'executable', |
| 11 'msvs_settings': { |
| 12 'VCCLCompilerTool': { |
| 13 'ExceptionHandling': '0', |
| 14 'WarnAsError': 'true' |
| 15 } |
| 16 }, |
| 17 'sources': [ |
| 18 'hello.cc' |
| 19 ] |
| 20 }, |
| 21 { |
| 22 'target_name': 'test_eh_s', |
| 23 'product_name': 'test_eh_s', |
| 24 'type': 'executable', |
| 25 'msvs_settings': { |
| 26 'VCCLCompilerTool': { |
| 27 'ExceptionHandling': '1', |
| 28 'WarnAsError': 'true' |
| 29 } |
| 30 }, |
| 31 'sources': [ |
| 32 'exception_handling_on.cc' |
| 33 ] |
| 34 }, |
| 35 { |
| 36 'target_name': 'test_eh_a', |
| 37 'product_name': 'test_eh_a', |
| 38 'type': 'executable', |
| 39 'msvs_settings': { |
| 40 'VCCLCompilerTool': { |
| 41 'ExceptionHandling': '2', |
| 42 'WarnAsError': 'true' |
| 43 } |
| 44 }, |
| 45 'sources': [ |
| 46 'exception_handling_on.cc' |
| 47 ] |
| 48 }, |
| 49 ] |
| 50 } |
OLD | NEW |