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

Unified Diff: build/config/ios/codesign.py

Issue 2229613003: Hack to correctly sign frameworks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/ios/codesign.py
diff --git a/build/config/ios/codesign.py b/build/config/ios/codesign.py
index 364640edca45ee0da547d8b67af3807408a9e40d..20441a9ffbb8bee0e190684a2e2e58af651c1268 100644
--- a/build/config/ios/codesign.py
+++ b/build/config/ios/codesign.py
@@ -315,6 +315,9 @@ class CodeSignBundleAction(Action):
args.entitlements_path, provisioning_profile, bundle.identifier)
entitlements.WriteTo(temporary_entitlements_file.name)
+ if args.path.endswith('framework'):
+ codesign_extra_args.extend(['--deep'])
+
CodeSignBundle(bundle.path, args.identity, codesign_extra_args)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698