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

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

Issue 68133006: win: Add support for TargetMachine in VCLibrarianTool section (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: add comment Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/win/gyptest-link-target-machine.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/linker-flags/target-machine.gyp
diff --git a/test/win/linker-flags/outputfile.gyp b/test/win/linker-flags/target-machine.gyp
similarity index 50%
copy from test/win/linker-flags/outputfile.gyp
copy to test/win/linker-flags/target-machine.gyp
index 1022ec2e20aabaa44dcdef83c8d22406d7c645e7..30271926c9f2262066344a5f4ec5bc91f4b6c282 100644
--- a/test/win/linker-flags/outputfile.gyp
+++ b/test/win/linker-flags/target-machine.gyp
@@ -1,55 +1,45 @@
-# Copyright (c) 2012 Google Inc. All rights reserved.
+# Copyright (c) 2013 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
- 'target_name': 'test_output_exe',
+ 'target_name': 'test_target_link_x86',
'type': 'executable',
'msvs_settings': {
'VCLinkerTool': {
- 'OutputFile': '$(OutDir)\\blorp.exe'
- },
+ 'TargetMachine': '1',
+ }
},
'sources': ['hello.cc'],
},
{
- 'target_name': 'test_output_exe2',
+ 'target_name': 'test_target_link_x64',
'type': 'executable',
'msvs_settings': {
'VCLinkerTool': {
- 'OutputFile': '$(OutDir)\\subdir\\blorp.exe'
+ 'TargetMachine': '17',
},
},
'sources': ['hello.cc'],
},
{
- 'target_name': 'test_output_dll',
- 'type': 'shared_library',
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'OutputFile': '$(OutDir)\\blorp.dll'
- },
- },
- 'sources': ['hello.cc'],
- },
- {
- 'target_name': 'test_output_lib',
+ 'target_name': 'test_target_lib_x86',
'type': 'static_library',
'msvs_settings': {
'VCLibrarianTool': {
- 'OutputFile': '$(OutDir)\\blorp.lib'
- },
+ 'TargetMachine': '1',
+ }
},
'sources': ['hello.cc'],
},
{
- 'target_name': 'test_output_lib2',
+ 'target_name': 'test_target_lib_x64',
'type': 'static_library',
'msvs_settings': {
'VCLibrarianTool': {
- 'OutputFile': '$(OutDir)\\subdir\\blorp.lib'
+ 'TargetMachine': '17',
},
},
'sources': ['hello.cc'],
« 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