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

Side by Side Diff: chrome/chrome.gyp

Issue 506061: Adapt Chrome to use KeystoneRegistration 1.0.7.1306 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years 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 | « chrome/browser/cocoa/keystone_glue.mm ('k') | chrome/tools/build/mac/keystone_install.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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', 1199 'postbuild_name': 'Copy <(mac_product_name) Framework.framework',
1200 'action': [ 1200 'action': [
1201 'tools/build/mac/copy_framework_unversioned', 1201 'tools/build/mac/copy_framework_unversioned',
1202 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework', 1202 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework',
1203 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(versio n_full)', 1203 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(versio n_full)',
1204 ], 1204 ],
1205 }, 1205 },
1206 { 1206 {
1207 # Modify the Info.plist as needed. The script explains why this 1207 # Modify the Info.plist as needed. The script explains why this
1208 # is needed. This is also done in the helper_app and chrome_dll 1208 # is needed. This is also done in the helper_app and chrome_dll
1209 # targets. Use -b0 and -k0 to not include any Breakpad or 1209 # targets. Use -b0 to not include any Breakpad information; that
1210 # Keystone information; that all goes into the framework's 1210 # all goes into the framework's Info.plist. Keystone information
1211 # Info.plist. Use -s1 to include Subversion information. 1211 # is included if Keystone is enabled because the ticket will
1212 # reference this Info.plist to determine the tag of the installed
1213 # product. Use -s1 to include Subversion information.
1212 'postbuild_name': 'Tweak Info.plist', 1214 'postbuild_name': 'Tweak Info.plist',
1213 'action': ['<(tweak_info_plist_path)', 1215 'action': ['<(tweak_info_plist_path)',
1214 '-b0', 1216 '-b0',
1215 '-k0', 1217 '-k<(mac_keystone)',
1216 '-s1', 1218 '-s1',
1217 '<(branding)', 1219 '<(branding)',
1218 '<(mac_bundle_id)'], 1220 '<(mac_bundle_id)'],
1219 }, 1221 },
1220 { 1222 {
1221 'postbuild_name': 'Clean up old versions', 1223 'postbuild_name': 'Clean up old versions',
1222 'action': [ 1224 'action': [
1223 'tools/build/mac/clean_up_old_versions', 1225 'tools/build/mac/clean_up_old_versions',
1224 '<(version_full)' 1226 '<(version_full)'
1225 ], 1227 ],
(...skipping 1497 matching lines...) Expand 10 before | Expand all | Expand 10 after
2723 }], # targets 2725 }], # targets
2724 }], # OS=="linux" or OS=="freebsd" 2726 }], # OS=="linux" or OS=="freebsd"
2725 ], # 'conditions' 2727 ], # 'conditions'
2726 } 2728 }
2727 2729
2728 # Local Variables: 2730 # Local Variables:
2729 # tab-width:2 2731 # tab-width:2
2730 # indent-tabs-mode:nil 2732 # indent-tabs-mode:nil
2731 # End: 2733 # End:
2732 # vim: set expandtab tabstop=2 shiftwidth=2: 2734 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/keystone_glue.mm ('k') | chrome/tools/build/mac/keystone_install.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698