| OLD | NEW |
| 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 3809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3820 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', | 3820 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', |
| 3821 'action': [ | 3821 'action': [ |
| 3822 'tools/build/mac/copy_framework_unversioned', | 3822 'tools/build/mac/copy_framework_unversioned', |
| 3823 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework', | 3823 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework', |
| 3824 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(versio
n_full)', | 3824 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(versio
n_full)', |
| 3825 ], | 3825 ], |
| 3826 }, | 3826 }, |
| 3827 { | 3827 { |
| 3828 # Modify the Info.plist as needed. The script explains why this | 3828 # Modify the Info.plist as needed. The script explains why this |
| 3829 # is needed. This is also done in the helper_app and chrome_dll | 3829 # is needed. This is also done in the helper_app and chrome_dll |
| 3830 # targets. Use -b0 and -k0 to not include any Breakpad or | 3830 # targets. Use -b0 to not include any Breakpad information; that |
| 3831 # Keystone information; that all goes into the framework's | 3831 # all goes into the framework's Info.plist. Keystone information |
| 3832 # Info.plist. Use -s1 to include Subversion information. | 3832 # is included if Keystone is enabled because the ticket will |
| 3833 # reference this Info.plist to determine the tag of the installed |
| 3834 # product. Use -s1 to include Subversion information. |
| 3833 'postbuild_name': 'Tweak Info.plist', | 3835 'postbuild_name': 'Tweak Info.plist', |
| 3834 'action': ['<(tweak_info_plist_path)', | 3836 'action': ['<(tweak_info_plist_path)', |
| 3835 '-b0', | 3837 '-b0', |
| 3836 '-k0', | 3838 '-k<(mac_keystone)', |
| 3837 '-s1', | 3839 '-s1', |
| 3838 '<(branding)', | 3840 '<(branding)', |
| 3839 '<(mac_bundle_id)'], | 3841 '<(mac_bundle_id)'], |
| 3840 }, | 3842 }, |
| 3841 { | 3843 { |
| 3842 'postbuild_name': 'Clean up old versions', | 3844 'postbuild_name': 'Clean up old versions', |
| 3843 'action': [ | 3845 'action': [ |
| 3844 'tools/build/mac/clean_up_old_versions', | 3846 'tools/build/mac/clean_up_old_versions', |
| 3845 '<(version_full)' | 3847 '<(version_full)' |
| 3846 ], | 3848 ], |
| (...skipping 3248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7095 ] | 7097 ] |
| 7096 }], | 7098 }], |
| 7097 ], # 'conditions' | 7099 ], # 'conditions' |
| 7098 } | 7100 } |
| 7099 | 7101 |
| 7100 # Local Variables: | 7102 # Local Variables: |
| 7101 # tab-width:2 | 7103 # tab-width:2 |
| 7102 # indent-tabs-mode:nil | 7104 # indent-tabs-mode:nil |
| 7103 # End: | 7105 # End: |
| 7104 # vim: set expandtab tabstop=2 shiftwidth=2: | 7106 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |