| Index: test/win/vs-macros/vcinstalldir.gyp
|
| diff --git a/test/win/vs-macros/vcinstalldir.gyp b/test/win/vs-macros/vcinstalldir.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5896614776b3a43af735fb0cf4ba438d7f5807c1
|
| --- /dev/null
|
| +++ b/test/win/vs-macros/vcinstalldir.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_slash',
|
| + 'type': 'none',
|
| + 'msvs_cygwin_shell': '0',
|
| + 'actions': [
|
| + {
|
| + 'action_name': 'root',
|
| + 'inputs': [],
|
| + 'outputs': ['out'],
|
| + 'action': ['python', 'test_exists.py', '$(VCInstallDir)', 'out']
|
| + },
|
| + {
|
| + 'action_name': 'bin',
|
| + 'inputs': [],
|
| + 'outputs': ['out2'],
|
| + 'action': ['python', 'test_exists.py', '$(VCInstallDir)bin', 'out2'],
|
| + },
|
| + {
|
| + 'action_name': 'compiler',
|
| + 'inputs': [],
|
| + 'outputs': ['out3'],
|
| + 'action': [
|
| + 'python', 'test_exists.py', '$(VCInstallDir)bin\\cl.exe', 'out3'],
|
| + },
|
| + ],
|
| + },
|
| + ]
|
| +}
|
|
|