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

Side by Side Diff: test/win/command-quote/command-quote.gyp

Issue 10269018: ninja windows: handle more cases in program quoting (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: fancier quoting 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 | Annotate | Revision Log
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_batch',
9 'type': 'none',
10 'rules': [
11 {
12 'rule_name': 'build_with_batch',
13 'msvs_cygwin_shell': 0,
14 'extension': 'S',
15 'inputs': ['<(RULE_INPUT_PATH)'],
16 'outputs': ['output.obj'],
17 'action': ['call go.bat', '<(RULE_INPUT_PATH)', 'output.obj'],
18 },],
Nico 2012/05/01 17:17:26 Is there already a test case for the non-bat branc
scottmg 2012/05/01 18:40:14 Done.
19 'sources': ['a.S'],
20 },
21 ]
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698