Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Unified Diff: test/mac/framework/framework.gyp

Issue 956203005: Adds the ability for 'copies' in Xcode project files to specify the 'Code Sign on Copy' option. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pylib/gyp/generator/xcode.py ('k') | test/mac/gyptest-copies.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mac/framework/framework.gyp
diff --git a/test/mac/framework/framework.gyp b/test/mac/framework/framework.gyp
index ce266c317050ed34d3303f111af1afa4fbc3d2cb..76c6ecb09dddf7cacfea625c0fda2a7bbb521f53 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',
+ ],
+ 'xcode_code_sign': 1,
+ },
+ ],
+ 'actions': [
+ {
+ 'action_name': 'aektschn',
+ 'inputs': [],
+ 'outputs': ['<(PRODUCT_DIR)/touched_file'],
+ 'action': ['touch', '${BUILT_PRODUCTS_DIR}/action_file'],
+ },
+ ],
+ },
],
}
« no previous file with comments | « pylib/gyp/generator/xcode.py ('k') | test/mac/gyptest-copies.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698