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
3# found in the LICENSE file.
4
5{
6 'targets': [
7    {
8      'target_name': 'test_safeseh_default',
9      'type': 'executable',
10      'msvs_settings': {
11      },
12      'sources': [
13        'safeseh_hello.cc',
14        'safeseh_zero.asm',
15      ],
16    },
17    {
18      'target_name': 'test_safeseh_no',
19      'type': 'executable',
20      'msvs_settings': {
21        'VCLinkerTool': {
22          'ImageHasSafeExceptionHandlers': 'false',
23        },
24      },
25      'sources': [
26        'safeseh_hello.cc',
27        'safeseh_zero.asm',
28      ],
29    },
30    {
31      'target_name': 'test_safeseh_yes',
32      'type': 'executable',
33      'msvs_settings': {
34        'VCLinkerTool': {
35          'ImageHasSafeExceptionHandlers': 'true',
36        },
37        'MASM': {
38          'UseSafeExceptionHandlers': 'true',
39        },
40      },
41      'sources': [
42        'safeseh_hello.cc',
43        'safeseh_zero.asm',
44      ],
45    },
46  ]
47}
48