blob: 8b0139f1418904c862c8bbeae23a68dedb56aad0 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# Copyright (c) 2009 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 'target_defaults': {
7 'configurations': {
8 'Debug': {
9 'msvs_configuration_platform': 'Win32',
10 },
11 'Debug_x64': {
12 'inherit_from': ['Debug'],
13 'msvs_configuration_platform': 'x64',
14 },
15 },
16 },
17 'targets': [
18 {
19 'target_name': 'configurations',
20 'type': 'executable',
21 'sources': [
22 'configurations.c',
23 ],
24 },
25 {
26 'target_name': 'configurations64',
27 'type': 'executable',
28 'sources': [
29 'configurations.c',
30 ],
31 'configurations': {
32 'Debug': {
33 'msvs_target_platform': 'x64',
34 },
35 },
36 },
37 ],
38}