| OLD | NEW |
| 1 # Copyright (c) 2009 Google Inc. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'configurations': { | 7 'configurations': { |
| 8 'Debug': { | 8 'Debug': { |
| 9 'msvs_configuration_platform': 'Win32', | 9 'msvs_configuration_platform': 'Win32', |
| 10 }, | 10 }, |
| 11 'Debug_x64': { | 11 'Debug_x64': { |
| 12 'inherit_from': ['Debug'], | 12 'inherit_from': ['Debug'], |
| 13 'msvs_configuration_platform': 'x64', | 13 'msvs_configuration_platform': 'x64', |
| 14 }, | 14 }, |
| 15 }, | 15 }, |
| 16 }, | 16 }, |
| 17 'targets': [ | 17 'targets': [ |
| 18 { | 18 { |
| 19 'target_name': 'configurations', | 19 'target_name': 'configurations', |
| 20 'type': 'executable', | 20 'type': 'executable', |
| 21 'sources': [ | 21 'sources': [ |
| 22 'configurations.c', | 22 'configurations.c', |
| 23 ], | 23 ], |
| 24 }, | 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 }, |
| 25 ], | 37 ], |
| 26 } | 38 } |
| OLD | NEW |