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

Side by Side Diff: test/win/vs-macros/vcinstalldir.gyp

Issue 10371002: ninja windows: make sure there's a trailing slash on $(VCInstallDir) (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: fix quotes Created 8 years, 7 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/vs-macros/test_exists.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
(Empty)
1 # Copyright (c) 2012 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'test_slash',
9 'type': 'none',
10 'msvs_cygwin_shell': '0',
11 'actions': [
12 {
13 'action_name': 'root',
14 'inputs': [],
15 'outputs': ['out'],
16 'action': ['python', 'test_exists.py', '$(VCInstallDir)', 'out']
17 },
18 {
19 'action_name': 'bin',
20 'inputs': [],
21 'outputs': ['out2'],
22 'action': ['python', 'test_exists.py', '$(VCInstallDir)bin', 'out2'],
23 },
24 {
25 'action_name': 'compiler',
26 'inputs': [],
27 'outputs': ['out3'],
28 'action': [
29 'python', 'test_exists.py', '$(VCInstallDir)bin\\cl.exe', 'out3'],
30 },
31 ],
32 },
33 ]
34 }
OLDNEW
« no previous file with comments | « test/win/vs-macros/test_exists.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698