OLD | NEW |
(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': 'upper', |
| 9 'type': 'none', |
| 10 'actions': [{ |
| 11 'action_name': 'upper_action', |
| 12 'inputs': ['<(PRODUCT_DIR)/out2.txt'], |
| 13 'outputs': ['<(PRODUCT_DIR)/result.txt'], |
| 14 'action': ['python', 'rcopy.py', '<@(_inputs)', '<@(_outputs)'], |
| 15 }], |
| 16 }, |
| 17 { |
| 18 'target_name': 'lower', |
| 19 'type': 'none', |
| 20 'actions': [{ |
| 21 'action_name': 'lower_action', |
| 22 'inputs': ['input.txt'], |
| 23 'outputs': ['<(PRODUCT_DIR)/out1.txt', '<(PRODUCT_DIR)/out2.txt'], |
| 24 'action': ['python', 'rcopy.py', '<@(_inputs)', '<@(_outputs)'], |
| 25 }], |
| 26 }, |
| 27 ], |
| 28 } |
OLD | NEW |