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

Side by Side Diff: test/ninja/use-console/use-console.gyp

Issue 412283002: ninja: Add support for 'ninja_use_console' in actions/rules (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: address nits in #11 Created 6 years, 5 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
« no previous file with comments | « test/ninja/use-console/gyptest-use-console.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) 2014 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': 'no_pool',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'some_action',
13 'action': ['echo', 'hello'],
14 'inputs': ['foo.bar'],
15 'outputs': ['dummy'],
16 },
17 ],
18 'rules': [
19 {
20 'rule_name': 'some_rule',
21 'extension': 'bar',
22 'action': ['echo', 'hello'],
23 'outputs': ['dummy'],
24 },
25 ],
26 'sources': [
27 'foo.bar',
28 ],
29 },
30 {
31 'target_name': 'action_pool',
32 'type': 'none',
33 'actions': [
34 {
35 'action_name': 'some_action',
36 'action': ['echo', 'hello'],
37 'inputs': ['foo.bar'],
38 'outputs': ['dummy'],
39 'ninja_use_console': 1,
40 },
41 ],
42 },
43 {
44 'target_name': 'rule_pool',
45 'type': 'none',
46 'rules': [
47 {
48 'rule_name': 'some_rule',
49 'extension': 'bar',
50 'action': ['echo', 'hello'],
51 'outputs': ['dummy'],
52 'ninja_use_console': 1,
53 },
54 ],
55 'sources': [
56 'foo.bar',
57 ],
58 },
59 ],
60 }
OLDNEW
« no previous file with comments | « test/ninja/use-console/gyptest-use-console.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698