| Index: test/win/no-quoting/no-quoting.gyp
|
| diff --git a/test/win/no-quoting/no-quoting.gyp b/test/win/no-quoting/no-quoting.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3b00ec14dd9ea871da6b06f6068cdd570415f8da
|
| --- /dev/null
|
| +++ b/test/win/no-quoting/no-quoting.gyp
|
| @@ -0,0 +1,49 @@
|
| +# 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_noquote',
|
| + 'type': 'none',
|
| + 'actions': [
|
| + {
|
| + 'action_name': 'copy_to_output',
|
| + 'inputs': ['sub dir space\\infile'],
|
| + 'outputs': ['outfile1'],
|
| + 'action': ['somecmd.bat', 'sub dir space\\infile', 'outfile1'],
|
| + 'msvs_cygwin_shell': 0,
|
| + 'msvs_quote_cmd': 0,
|
| + }
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'test_quote',
|
| + 'type': 'none',
|
| + 'actions': [
|
| + {
|
| + 'action_name': 'copy_to_output',
|
| + 'inputs': ['sub dir space\\infile'],
|
| + 'outputs': ['outfile2'],
|
| + 'action': ['somecmd.bat', 'sub dir space\\infile', 'outfile2'],
|
| + 'msvs_cygwin_shell': 0,
|
| + 'msvs_quote_cmd': 1,
|
| + }
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'test_quote_unspec',
|
| + 'type': 'none',
|
| + 'actions': [
|
| + {
|
| + 'action_name': 'copy_to_output',
|
| + 'inputs': ['sub dir space\\infile'],
|
| + 'outputs': ['outfile3'],
|
| + 'action': ['somecmd.bat', 'sub dir space\\infile', 'outfile3'],
|
| + 'msvs_cygwin_shell': 0,
|
| + }
|
| + ],
|
| + },
|
| + ]
|
| +}
|
|
|