Chromium Code Reviews| Index: pylib/gyp/msvs_emulation.py |
| =================================================================== |
| --- pylib/gyp/msvs_emulation.py (revision 1217) |
| +++ pylib/gyp/msvs_emulation.py (working copy) |
| @@ -40,3 +40,7 @@ |
| # Finally, wrap the whole thing in quotes so that the above quote rule |
| # applies and whitespace isn't a word break. |
| return '"' + tmp + '"' |
| + |
| +def EncodeCmdExeArgList(args): |
|
Nico
2012/02/21 05:56:14
The posix versions of these are called EncodePOSIX
scottmg
2012/02/21 06:08:20
Done.
|
| + """Process a list of arguments using QuoteCmdExeArgument.""" |
| + return ' '.join(QuoteCmdExeArgument(arg) for arg in args) |