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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
+ }
+ ],
+ },
+ ]
+}
« 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