Home | History | Annotate | Download | only in x64
      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': {
      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 }
     39