| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [], | 9 'targets': [], |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 ], | 41 ], |
| 42 'actions': [ | 42 'actions': [ |
| 43 { | 43 { |
| 44 'action_name': 'Package CrNet', | 44 'action_name': 'Package CrNet', |
| 45 'variables': { | 45 'variables': { |
| 46 'tool_path': | 46 'tool_path': |
| 47 '../../ios/build/packaging/link_dependencies.py', | 47 '../../ios/build/packaging/link_dependencies.py', |
| 48 }, | 48 }, |
| 49 | 49 |
| 50 # Actions need an inputs list, even if it's empty. | 50 # Actions need an inputs list, even if it's empty. |
| 51 'inputs': [], | 51 'inputs': [ |
| 52 '<(tool_path)', |
| 53 '<(PRODUCT_DIR)/crnet_dummy.app/crnet_dummy', |
| 54 ], |
| 52 # Only specify one output, since this will be libtool's output. | 55 # Only specify one output, since this will be libtool's output. |
| 53 'outputs': [ '<(PRODUCT_DIR)/libcrnet_standalone.a' ], | 56 'outputs': [ '<(PRODUCT_DIR)/libcrnet_standalone.a' ], |
| 54 'action': ['<(tool_path)', | 57 'action': ['<(tool_path)', |
| 55 '<(PRODUCT_DIR)', | 58 '<(PRODUCT_DIR)', |
| 56 'crnet_dummy.app/crnet_dummy', | 59 'crnet_dummy.app/crnet_dummy', |
| 57 '<@(_outputs)', | 60 '<@(_outputs)', |
| 58 ], | 61 ], |
| 59 }, | 62 }, |
| 60 ], | 63 ], |
| 61 }, | 64 }, |
| 62 ], | 65 ], |
| 63 }], | 66 }], |
| 64 ], | 67 ], |
| 65 } | 68 } |
| OLD | NEW |