Chromium Code Reviews| Index: test/mac/framework/framework.gyp |
| diff --git a/test/mac/framework/framework.gyp b/test/mac/framework/framework.gyp |
| index ce266c317050ed34d3303f111af1afa4fbc3d2cb..d5344370473ba8dd7ab816897c4fc1d6b59b180b 100644 |
| --- a/test/mac/framework/framework.gyp |
| +++ b/test/mac/framework/framework.gyp |
| @@ -67,5 +67,28 @@ |
| }, |
| ], |
| }, |
| + { |
| + 'target_name': 'copy_target_code_sign', |
| + 'type': 'none', |
| + 'dependencies': [ 'test_framework', 'dep_framework', ], |
| + 'copies': [ |
| + # Test copying directories with spaces in src and dest paths. |
| + { |
| + 'destination': '<(PRODUCT_DIR)/Test Framework.framework/foo', |
| + 'files': [ |
| + '<(PRODUCT_DIR)/Dependency Bundle.framework', |
| + ], |
| + '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.
|
| + }, |
| + ], |
| + 'actions': [ |
| + { |
| + 'action_name': 'aektschn', |
|
Nico
2015/02/26 19:05:44
:-)
mattryavec
2015/02/26 21:52:16
Totally :)
|
| + 'inputs': [], |
| + 'outputs': ['<(PRODUCT_DIR)/touched_file'], |
| + 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'], |
| + }, |
| + ], |
| + }, |
| ], |
| } |