OLD | NEW |
1 # Copyright (c) 2012 Google Inc. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_output_exe', | 8 'target_name': 'test_target_link_x86', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'msvs_settings': { | 10 'msvs_settings': { |
11 'VCLinkerTool': { | 11 'VCLinkerTool': { |
12 'OutputFile': '$(OutDir)\\blorp.exe' | 12 'TargetMachine': '1', |
| 13 } |
| 14 }, |
| 15 'sources': ['hello.cc'], |
| 16 }, |
| 17 { |
| 18 'target_name': 'test_target_link_x64', |
| 19 'type': 'executable', |
| 20 'msvs_settings': { |
| 21 'VCLinkerTool': { |
| 22 'TargetMachine': '17', |
13 }, | 23 }, |
14 }, | 24 }, |
15 'sources': ['hello.cc'], | 25 'sources': ['hello.cc'], |
16 }, | 26 }, |
17 { | 27 { |
18 'target_name': 'test_output_exe2', | 28 'target_name': 'test_target_lib_x86', |
19 'type': 'executable', | 29 'type': 'static_library', |
20 'msvs_settings': { | 30 'msvs_settings': { |
21 'VCLinkerTool': { | 31 'VCLibrarianTool': { |
22 'OutputFile': '$(OutDir)\\subdir\\blorp.exe' | 32 'TargetMachine': '1', |
23 }, | 33 } |
24 }, | 34 }, |
25 'sources': ['hello.cc'], | 35 'sources': ['hello.cc'], |
26 }, | 36 }, |
27 { | 37 { |
28 'target_name': 'test_output_dll', | 38 'target_name': 'test_target_lib_x64', |
29 'type': 'shared_library', | 39 'type': 'static_library', |
30 'msvs_settings': { | 40 'msvs_settings': { |
31 'VCLinkerTool': { | 41 'VCLibrarianTool': { |
32 'OutputFile': '$(OutDir)\\blorp.dll' | 42 'TargetMachine': '17', |
33 }, | 43 }, |
34 }, | 44 }, |
35 'sources': ['hello.cc'], | 45 'sources': ['hello.cc'], |
36 }, | |
37 { | |
38 'target_name': 'test_output_lib', | |
39 'type': 'static_library', | |
40 'msvs_settings': { | |
41 'VCLibrarianTool': { | |
42 'OutputFile': '$(OutDir)\\blorp.lib' | |
43 }, | |
44 }, | |
45 'sources': ['hello.cc'], | |
46 }, | |
47 { | |
48 'target_name': 'test_output_lib2', | |
49 'type': 'static_library', | |
50 'msvs_settings': { | |
51 'VCLibrarianTool': { | |
52 'OutputFile': '$(OutDir)\\subdir\\blorp.lib' | |
53 }, | |
54 }, | |
55 'sources': ['hello.cc'], | |
56 }, | 46 }, |
57 ] | 47 ] |
58 } | 48 } |
OLD | NEW |