OLD | NEW |
---|---|
1 # Copyright (c) 2011 Google Inc. All rights reserved. | 1 # Copyright (c) 2011 Google Inc. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'target1', | 8 'target_name': 'target1', |
9 'type': 'none', | 9 'type': 'none', |
10 'actions': [ | 10 'actions': [ |
11 { | 11 { |
12 'action_name': 'intermediate', | 12 'action_name': 'intermediate', |
13 'inputs': [], | 13 'inputs': [], |
14 'outputs': [ | 14 'outputs': [ |
15 '<(INTERMEDIATE_DIR)/intermediate_out.txt', | 15 '<(INTERMEDIATE_DIR)intermediate_out.txt', |
scottmg
2012/08/08 17:05:39
These are not required removals, right? There'd ju
| |
16 'outfile.txt', | 16 'outfile.txt', |
17 ], | 17 ], |
18 'action': [ | 18 'action': [ |
19 'python', 'script.py', 'target1', '<(_outputs)', | 19 'python', 'script.py', 'target1', '<(_outputs)', |
20 ], | 20 ], |
21 # Allows the test to run without hermetic cygwin on windows. | 21 # Allows the test to run without hermetic cygwin on windows. |
22 'msvs_cygwin_shell': 0, | 22 'msvs_cygwin_shell': 0, |
23 }, | 23 }, |
24 { | 24 { |
25 'action_name': 'shared_intermediate', | 25 'action_name': 'shared_intermediate', |
26 'inputs': [ | 26 'inputs': [ |
27 'shared_infile.txt', | 27 'shared_infile.txt', |
28 ], | 28 ], |
29 'outputs': [ | 29 'outputs': [ |
30 '<(SHARED_INTERMEDIATE_DIR)/intermediate_out.txt', | 30 '<(SHARED_INTERMEDIATE_DIR)intermediate_out.txt', |
31 'shared_outfile.txt', | 31 'shared_outfile.txt', |
32 ], | 32 ], |
33 'action': [ | 33 'action': [ |
34 'python', 'script.py', 'shared_target1', '<(_outputs)', | 34 'python', 'script.py', 'shared_target1', '<(_outputs)', |
35 ], | 35 ], |
36 # Allows the test to run without hermetic cygwin on windows. | 36 # Allows the test to run without hermetic cygwin on windows. |
37 'msvs_cygwin_shell': 0, | 37 'msvs_cygwin_shell': 0, |
38 }, | 38 }, |
39 ], | 39 ], |
40 }, | 40 }, |
41 ], | 41 ], |
42 } | 42 } |
OLD | NEW |