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

Side by Side Diff: chrome/chrome_installer.gypi

Issue 2749014: Split sign.sh into two pieces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | chrome/installer/mac/make_sign_sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', 7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
8 # 'branding_dir' is set in the 'conditions' section at the bottom. 8 # 'branding_dir' is set in the 'conditions' section at the bottom.
9 }, 9 },
10 'conditions': [ 10 'conditions': [
(...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 'target_name': 'installer_packaging', 770 'target_name': 'installer_packaging',
771 'type': 'none', 771 'type': 'none',
772 'conditions': [ 772 'conditions': [
773 ['buildtype=="Official"', { 773 ['buildtype=="Official"', {
774 'actions': [ 774 'actions': [
775 { 775 {
776 # Create sign.sh, the script that the packaging system will 776 # Create sign.sh, the script that the packaging system will
777 # use to sign the .app bundle. 777 # use to sign the .app bundle.
778 'action_name': 'Make sign.sh', 778 'action_name': 'Make sign.sh',
779 'variables': { 779 'variables': {
780 'make_sign_sh_path': 'installer/mac/make_sign_sh', 780 'make_signers_sh_path': 'installer/mac/make_signers.sh',
781 'sign_sh_in_path': 'installer/mac/sign.sh.in',
782 'app_resource_rules_in_path':
783 'installer/mac/app_resource_rules.plist.in',
784 }, 781 },
785 'inputs': [ 782 'inputs': [
786 '<(make_sign_sh_path)', 783 '<(make_signers_sh_path)',
787 '<(sign_sh_in_path)', 784 'installer/mac/sign_app.sh.in',
788 '<(app_resource_rules_in_path)', 785 'installer/mac/sign_versioned_dir.sh.in',
786 'installer/mac/app_resource_rules.plist.in',
789 '<(version_path)', 787 '<(version_path)',
790 ], 788 ],
791 'outputs': [ 789 'outputs': [
792 '<(mac_packaging_dir)/sign.sh', 790 '<(mac_packaging_dir)/sign_app.sh',
791 '<(mac_packaging_dir)/sign_versioned_dir.sh',
793 '<(mac_packaging_dir)/app_resource_rules.plist', 792 '<(mac_packaging_dir)/app_resource_rules.plist',
794 ], 793 ],
795 'action': [ 794 'action': [
796 '<(make_sign_sh_path)', 795 '<(make_signers_sh_path)',
797 '<(mac_packaging_sh_dir)', 796 '<(mac_packaging_sh_dir)',
798 '<(mac_product_name)', 797 '<(mac_product_name)',
799 '<(version_full)', 798 '<(version_full)',
800 ], 799 ],
801 }, 800 },
802 ], # actions 801 ], # actions
803 }], # buildtype=="Official" 802 }], # buildtype=="Official"
804 ], # conditions 803 ], # conditions
805 'copies': [ 804 'copies': [
806 { 805 {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 }, 840 },
842 }], 841 }],
843 ], 842 ],
844 } 843 }
845 844
846 # Local Variables: 845 # Local Variables:
847 # tab-width:2 846 # tab-width:2
848 # indent-tabs-mode:nil 847 # indent-tabs-mode:nil
849 # End: 848 # End:
850 # vim: set expandtab tabstop=2 shiftwidth=2: 849 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/mac/make_sign_sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698