| Index: test/win/linker_flags/target-machine.gyp
|
| diff --git a/test/win/linker_flags/target-machine.gyp b/test/win/linker_flags/target-machine.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..febe36ec421ebfddc9bca528c833279634efa453
|
| --- /dev/null
|
| +++ b/test/win/linker_flags/target-machine.gyp
|
| @@ -0,0 +1,34 @@
|
| +# Copyright (c) 2012 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_tm_x86',
|
| + 'product_name': 'test_tm_x86',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + 'TargetMachine': '1'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_tm_x64',
|
| + 'product_name': 'test_tm_x64',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + 'TargetMachine': '17'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + ]
|
| +}
|
|
|