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

Side by Side Diff: test/win/no-quoting/no-quoting.gyp

Issue 10384100: ninja windows: support msvs_quote_cmd support (Closed) Base URL: http://git.chromium.org/external/gyp.git@master
Patch Set: use namedtuple instead 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
« no previous file with comments | « test/win/gyptest-no-quotes.py ('k') | test/win/no-quoting/somecmd.bat » ('j') | 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_noquote',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'copy_to_output',
13 'inputs': ['sub dir space\\infile'],
14 'outputs': ['outfile1'],
15 'action': ['somecmd.bat', 'sub dir space\\infile', 'outfile1'],
16 'msvs_cygwin_shell': 0,
17 'msvs_quote_cmd': 0,
18 }
19 ],
20 },
21 {
22 'target_name': 'test_quote',
23 'type': 'none',
24 'actions': [
25 {
26 'action_name': 'copy_to_output',
27 'inputs': ['sub dir space\\infile'],
28 'outputs': ['outfile2'],
29 'action': ['somecmd.bat', 'sub dir space\\infile', 'outfile2'],
30 'msvs_cygwin_shell': 0,
31 'msvs_quote_cmd': 1,
32 }
33 ],
34 },
35 {
36 'target_name': 'test_quote_unspec',
37 'type': 'none',
38 'actions': [
39 {
40 'action_name': 'copy_to_output',
41 'inputs': ['sub dir space\\infile'],
42 'outputs': ['outfile3'],
43 'action': ['somecmd.bat', 'sub dir space\\infile', 'outfile3'],
44 'msvs_cygwin_shell': 0,
45 }
46 ],
47 },
48 ]
49 }
OLDNEW
« no previous file with comments | « test/win/gyptest-no-quotes.py ('k') | test/win/no-quoting/somecmd.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698