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_ok',
9      'type': 'executable',
10      'msvs_settings': {
11        'VCLinkerTool': {
12          'IgnoreDefaultLibraryNames':
13              ['libcmtd.lib', 'libcmt.lib', 'msvcrt.lib', 'msvcrtd.lib'],
14        }
15      },
16      'sources': ['nodefaultlib.cc'],
17    },
18    {
19      'target_name': 'test_fail',
20      'type': 'executable',
21      'msvs_settings': {
22        'VCLinkerTool': {
23          'IgnoreDefaultLibraryNames':
24              ['libcmtd.lib', 'libcmt.lib', 'msvcrt.lib', 'msvcrtd.lib'],
25        }
26      },
27      'sources': ['hello.cc'],
28    },
29  ]
30}
31