| OLD | NEW |
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. | 1 # Copyright (c) 2012 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': 'create_intermediate', | 8 'target_name': 'create_intermediate', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'actions': [ | 10 'actions': [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'actions': [ | 32 'actions': [ |
| 33 { | 33 { |
| 34 'action_name': 'dependent', | 34 'action_name': 'dependent', |
| 35 'inputs': [ | 35 'inputs': [ |
| 36 '<(PRODUCT_DIR)/intermediate', | 36 '<(PRODUCT_DIR)/intermediate', |
| 37 ], | 37 ], |
| 38 'outputs': [ | 38 'outputs': [ |
| 39 '<(PRODUCT_DIR)/dependent' | 39 '<(PRODUCT_DIR)/dependent' |
| 40 ], | 40 ], |
| 41 'action': [ | 41 'action': [ |
| 42 'touch', '<(PRODUCT_DIR)/dependent', '<(PRODUCT_DIR)/side_effect', | 42 'python', 'touch.py', '<(PRODUCT_DIR)/dependent', '<(PRODUCT_DIR)/si
de_effect', |
| 43 ], | 43 ], |
| 44 }, | 44 }, |
| 45 ], | 45 ], |
| 46 }, | 46 }, |
| 47 ], | 47 ], |
| 48 } | 48 } |
| OLD | NEW |