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

Side by Side Diff: test/msvs/rules_stdout_stderr/rules-stdout-stderr.gyp

Issue 1148653011: msvs: Make sure stdout/stderr from rule commands get logged (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: rebase Created 5 years, 6 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
« no previous file with comments | « test/msvs/rules_stdout_stderr/rule_stdout.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 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',
9 'type': 'none',
10 'sources': [
11 'dummy.foo',
12 'dummy.bar',
13 ],
14 'rules': [
15 {
16 'rule_name': 'test_stdout',
17 'extension': 'foo',
18 'message': 'testing stdout',
19 'msvs_cygwin_shell': 0,
20 'inputs': [
21 'rule_stdout.py',
22 ],
23 'outputs': [
24 'dummy.foo_output',
25 ],
26 'action': [
27 'python',
28 'rule_stdout.py',
29 '<(RULE_INPUT_PATH)',
30 ],
31 },
32 {
33 'rule_name': 'test_stderr',
34 'extension': 'bar',
35 'message': 'testing stderr',
36 'msvs_cygwin_shell': 0,
37 'inputs': [
38 'rule_stderr.py',
39 ],
40 'outputs': [
41 'dummy.bar_output',
42 ],
43 'action': [
44 'python',
45 'rule_stderr.py',
46 '<(RULE_INPUT_PATH)',
47 ],
48 },
49 ],
50 },
51 ],
52 }
OLDNEW
« no previous file with comments | « test/msvs/rules_stdout_stderr/rule_stdout.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698