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_cs_notset',
9      'product_name': 'test_cs_notset',
10      'type': 'executable',
11      'msvs_configuration_attributes': {
12        'CharacterSet': '0'
13      },
14      'sources': ['hello.cc'],
15    },
16    {
17      'target_name': 'test_cs_unicode',
18      'product_name': 'test_cs_unicode',
19      'type': 'executable',
20      'msvs_configuration_attributes': {
21        'CharacterSet': '1'
22      },
23      'sources': ['character-set-unicode.cc'],
24    },
25    {
26      'target_name': 'test_cs_mbcs',
27      'product_name': 'test_cs_mbcs',
28      'type': 'executable',
29      'msvs_configuration_attributes': {
30        'CharacterSet': '2'
31      },
32      'sources': ['character-set-mbcs.cc'],
33    },
34  ]
35}
36