OLD | NEW |
1 # Copyright (c) 2013 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_target_link_x86', | 8 'target_name': 'test_target_link_x86', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'msvs_settings': { | 10 'msvs_settings': { |
(...skipping 26 matching lines...) Expand all Loading... |
37 { | 37 { |
38 'target_name': 'test_target_lib_x64', | 38 'target_name': 'test_target_lib_x64', |
39 'type': 'static_library', | 39 'type': 'static_library', |
40 'msvs_settings': { | 40 'msvs_settings': { |
41 'VCLibrarianTool': { | 41 'VCLibrarianTool': { |
42 'TargetMachine': '17', | 42 'TargetMachine': '17', |
43 }, | 43 }, |
44 }, | 44 }, |
45 'sources': ['hello.cc'], | 45 'sources': ['hello.cc'], |
46 }, | 46 }, |
| 47 { |
| 48 'target_name': 'test_target_lib_arm', |
| 49 'type': 'static_library', |
| 50 'msvs_settings': { |
| 51 'VCLibrarianTool': { |
| 52 'TargetMachine': '3', |
| 53 }, |
| 54 }, |
| 55 'sources': ['hello.cc'], |
| 56 }, |
47 ] | 57 ] |
48 } | 58 } |
OLD | NEW |