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

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
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'],
+ },
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698