• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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_Win32': {
9        'msvs_configuration_platform': 'Win32',
10      },
11      'Debug_x64': {
12        'msvs_configuration_platform': 'x64',
13      },
14    },
15  },
16  'targets': [
17    {
18      'target_name': 'left',
19      'type': 'static_library',
20      'sources': [
21        'left.c',
22      ],
23      'configurations': {
24        'Debug_Win32': {
25          'msvs_target_platform': 'x64',
26        },
27      },
28    },
29    {
30      'target_name': 'right',
31      'type': 'static_library',
32      'sources': [
33        'right.c',
34      ],
35    },
36    {
37      'target_name': 'front_left',
38      'type': 'executable',
39      'dependencies': ['left'],
40      'sources': [
41        'front.c',
42      ],
43      'configurations': {
44        'Debug_Win32': {
45          'msvs_target_platform': 'x64',
46        },
47      },
48    },
49    {
50      'target_name': 'front_right',
51      'type': 'executable',
52      'dependencies': ['right'],
53      'sources': [
54        'front.c',
55      ],
56    },
57  ],
58}
59