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

Unified Diff: test/win/masm/masm.gyp

Issue 11742015: Support MASM in MSBuild and Winja (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: With tests Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/win/masm/hello.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/masm/masm.gyp
diff --git a/test/configurations/x64/configurations.gyp b/test/win/masm/masm.gyp
similarity index 50%
copy from test/configurations/x64/configurations.gyp
copy to test/win/masm/masm.gyp
index 8b0139f1418904c862c8bbeae23a68dedb56aad0..21547311fc0caffe932382b02fb51ac3da1fef78 100644
--- a/test/configurations/x64/configurations.gyp
+++ b/test/win/masm/masm.gyp
@@ -1,38 +1,48 @@
-# Copyright (c) 2009 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.
{
'target_defaults': {
+ 'variables': {
+ 'test_defines%': 0
+ },
+ 'conditions': [
+ ['test_defines == 1', {
+ 'defines': [
+ 'MEANING_OF_LIFE'
+ ],
+ }],
+ ],
'configurations': {
- 'Debug': {
- 'msvs_configuration_platform': 'Win32',
+ 'Default': {
},
- 'Debug_x64': {
- 'inherit_from': ['Debug'],
+ 'Default_x64': {
'msvs_configuration_platform': 'x64',
},
},
},
'targets': [
{
- 'target_name': 'configurations',
+ 'target_name': 'hello_x86',
'type': 'executable',
'sources': [
- 'configurations.c',
+ 'hello.cc',
+ 'dummyfunc-x86.asm',
],
},
{
- 'target_name': 'configurations64',
+ 'target_name': 'hello_x64',
'type': 'executable',
'sources': [
- 'configurations.c',
+ 'hello.cc',
+ 'dummyfunc-x64.asm',
],
'configurations': {
- 'Debug': {
+ 'Default': {
'msvs_target_platform': 'x64',
},
},
},
- ],
+ ]
}
« no previous file with comments | « test/win/masm/hello.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698