OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2009 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': 'multiple_action_target', |
| 9 'type': 'none', |
| 10 'actions': [ |
| 11 { |
| 12 'action_name': 'action1', |
| 13 'inputs': [ |
| 14 'input.txt', |
| 15 ], |
| 16 'outputs': [ |
| 17 'output1.txt', |
| 18 ], |
| 19 'action': [ |
| 20 'python', 'copy.py', '<(_inputs)', '<(_outputs)', |
| 21 ], |
| 22 # Allows the test to run without hermetic cygwin on windows. |
| 23 'msvs_cygwin_shell': 0, |
| 24 }, |
| 25 { |
| 26 'action_name': 'action2', |
| 27 'inputs': [ |
| 28 'input.txt', |
| 29 ], |
| 30 'outputs': [ |
| 31 'output2.txt', |
| 32 ], |
| 33 'action': [ |
| 34 'python', 'copy.py', '<(_inputs)', '<(_outputs)', |
| 35 ], |
| 36 # Allows the test to run without hermetic cygwin on windows. |
| 37 'msvs_cygwin_shell': 0, |
| 38 }, |
| 39 { |
| 40 'action_name': 'action3', |
| 41 'inputs': [ |
| 42 'input.txt', |
| 43 ], |
| 44 'outputs': [ |
| 45 'output3.txt', |
| 46 ], |
| 47 'action': [ |
| 48 'python', 'copy.py', '<(_inputs)', '<(_outputs)', |
| 49 ], |
| 50 # Allows the test to run without hermetic cygwin on windows. |
| 51 'msvs_cygwin_shell': 0, |
| 52 }, |
| 53 ], |
| 54 }, |
| 55 ], |
| 56 } |
OLD | NEW |