Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Side by Side Diff: test/win/linker-flags/target-machine.gyp

Issue 596023003: Revert "I need this change to create Windows 8.1/Windows Phone 8.1 projects that compile modules th… (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/win/gyptest-link-target-machine.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 },
57 ] 47 ]
58 } 48 }
OLDNEW
« no previous file with comments | « test/win/gyptest-link-target-machine.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698