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

Side by Side Diff: chrome/installer/mac/sign_versioned_dir.sh.in

Issue 10704231: Merge trunk r145370 to the 21.0.1180 branch. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash -p 1 #!/bin/bash -p
2 2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Using codesign, sign the contents of the versioned directory. Namely, this 7 # Using codesign, sign the contents of the versioned directory. Namely, this
8 # includes the framework and helper app. After signing, the signatures are 8 # includes the framework and helper app. After signing, the signatures are
9 # verified. 9 # verified.
10 10
(...skipping 27 matching lines...) Expand all
38 # framework bundle requires that each version within be signed individually. 38 # framework bundle requires that each version within be signed individually.
39 # http://developer.apple.com/mac/library/technotes/tn2007/tn2206.html#TNTAG13 39 # http://developer.apple.com/mac/library/technotes/tn2007/tn2206.html#TNTAG13
40 # In Chrome's case, the framework bundle is unversioned, so it too can be 40 # In Chrome's case, the framework bundle is unversioned, so it too can be
41 # signed directly. See copy_framework_unversioned.sh. 41 # signed directly. See copy_framework_unversioned.sh.
42 42
43 framework="${versioned_dir}/@MAC_PRODUCT_NAME@ Framework.framework" 43 framework="${versioned_dir}/@MAC_PRODUCT_NAME@ Framework.framework"
44 helper_app="${versioned_dir}/@MAC_PRODUCT_NAME@ Helper.app" 44 helper_app="${versioned_dir}/@MAC_PRODUCT_NAME@ Helper.app"
45 helper_eh_app="${versioned_dir}/@MAC_PRODUCT_NAME@ Helper EH.app" 45 helper_eh_app="${versioned_dir}/@MAC_PRODUCT_NAME@ Helper EH.app"
46 helper_np_app="${versioned_dir}/@MAC_PRODUCT_NAME@ Helper NP.app" 46 helper_np_app="${versioned_dir}/@MAC_PRODUCT_NAME@ Helper NP.app"
47 47
48 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" "${framework}" 48 requirement_suffix="\
49 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" "${helper_app}" 49 and certificate leaf = H\"85cee8254216185620ddc8851c7a9fc4dfe120ef\"\
50 "
51
52 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" "${framework}" \
53 -r="designated => identifier \"com.google.Chrome.framework\" \
54 ${requirement_suffix}"
55 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" "${helper_app}" \
56 -r="designated => identifier \"com.google.Chrome.helper\" \
57 ${requirement_suffix}"
50 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" \ 58 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" \
51 "${helper_eh_app}" 59 "${helper_eh_app}" \
60 -r="designated => identifier \"com.google.Chrome.helper.EH\" \
61 ${requirement_suffix}"
52 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" \ 62 codesign -s "${codesign_id}" --keychain "${codesign_keychain}" \
53 "${helper_np_app}" 63 "${helper_np_app}" \
64 -r="designated => identifier \"com.google.Chrome.helper.NP\" \
65 ${requirement_suffix}"
54 66
55 # Verify everything. 67 # Verify everything.
56 codesign -v "${framework}" 68 codesign -v "${framework}"
57 codesign -v "${helper_app}" 69 codesign -v "${helper_app}"
58 codesign -v "${helper_eh_app}" 70 codesign -v "${helper_eh_app}"
59 codesign -v "${helper_np_app}" 71 codesign -v "${helper_np_app}"
OLDNEW
« 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