OLD | NEW |
---|---|
(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 }, | |
Nico
2012/05/10 19:04:22
Is noquote + cygwin shell something that's interes
scottmg
2012/05/10 19:47:00
It appears to be ignored in msvs.py when in cygwin
| |
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 } | |
OLD | NEW |