Chromium Code Reviews| 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'dep_framework', | 7 'target_name': 'dep_framework', |
| 8 'product_name': 'Dependency Bundle', | 8 'product_name': 'Dependency Bundle', |
| 9 'type': 'shared_library', | 9 'type': 'shared_library', |
| 10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 60 ], | 60 ], |
| 61 'actions': [ | 61 'actions': [ |
| 62 { | 62 { |
| 63 'action_name': 'aektschn', | 63 'action_name': 'aektschn', |
| 64 'inputs': [], | 64 'inputs': [], |
| 65 'outputs': ['<(PRODUCT_DIR)/touched_file'], | 65 'outputs': ['<(PRODUCT_DIR)/touched_file'], |
| 66 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'], | 66 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'], |
| 67 }, | 67 }, |
| 68 ], | 68 ], |
| 69 }, | 69 }, |
| 70 { | |
| 71 'target_name': 'copy_target_code_sign', | |
| 72 'type': 'none', | |
| 73 'dependencies': [ 'test_framework', 'dep_framework', ], | |
| 74 'copies': [ | |
| 75 # Test copying directories with spaces in src and dest paths. | |
| 76 { | |
| 77 'destination': '<(PRODUCT_DIR)/Test Framework.framework/foo', | |
| 78 'files': [ | |
| 79 '<(PRODUCT_DIR)/Dependency Bundle.framework', | |
| 80 ], | |
| 81 'code_sign': 1, | |
|
Nico
2015/02/26 19:06:34
maybe this should be xcode_code_sign or something
mattryavec
2015/02/26 21:52:16
Done.
| |
| 82 }, | |
| 83 ], | |
| 84 'actions': [ | |
| 85 { | |
| 86 'action_name': 'aektschn', | |
|
Nico
2015/02/26 19:05:44
:-)
mattryavec
2015/02/26 21:52:16
Totally :)
| |
| 87 'inputs': [], | |
| 88 'outputs': ['<(PRODUCT_DIR)/touched_file'], | |
| 89 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'], | |
| 90 }, | |
| 91 ], | |
| 92 }, | |
| 70 ], | 93 ], |
| 71 } | 94 } |
| OLD | NEW |