OLD | NEW |
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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1143 'install_name_tool', | 1143 'install_name_tool', |
1144 '-change', | 1144 '-change', |
1145 '@executable_path/../Versions/<(version_full)/<(mac_product_name
) Framework.framework/<(mac_product_name) Framework', | 1145 '@executable_path/../Versions/<(version_full)/<(mac_product_name
) Framework.framework/<(mac_product_name) Framework', |
1146 '@executable_path/../../../<(mac_product_name) Framework.framewo
rk/<(mac_product_name) Framework', | 1146 '@executable_path/../../../<(mac_product_name) Framework.framewo
rk/<(mac_product_name) Framework', |
1147 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' | 1147 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' |
1148 ], | 1148 ], |
1149 }, | 1149 }, |
1150 { | 1150 { |
1151 # Modify the Info.plist as needed. The script explains why this | 1151 # Modify the Info.plist as needed. The script explains why this |
1152 # is needed. This is also done in the chrome and chrome_dll | 1152 # is needed. This is also done in the chrome and chrome_dll |
1153 # targets. In this case, -b0 and -k0 are used because Breakpad | 1153 # targets. In this case, -b0, -k0, and -s0 are used because |
1154 # and Keystone keys are never placed into the helper, only into | 1154 # Breakpad, Keystone, and Subersion keys are never placed into |
1155 # the framework. -s0 is used because Subversion keys are only | 1155 # the helper. |
1156 # placed into the main app. | |
1157 'postbuild_name': 'Tweak Info.plist', | 1156 'postbuild_name': 'Tweak Info.plist', |
1158 'action': ['<(tweak_info_plist_path)', | 1157 'action': ['<(tweak_info_plist_path)', |
1159 '-b0', | 1158 '-b0', |
1160 '-k0', | 1159 '-k0', |
1161 '-s0', | 1160 '-s0', |
1162 '<(branding)', | 1161 '<(branding)', |
1163 '<(mac_bundle_id)'], | 1162 '<(mac_bundle_id)'], |
1164 }, | 1163 }, |
1165 ], | 1164 ], |
1166 'conditions': [ | 1165 'conditions': [ |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1731 }], # targets | 1730 }], # targets |
1732 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1731 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1733 ], # 'conditions' | 1732 ], # 'conditions' |
1734 } | 1733 } |
1735 | 1734 |
1736 # Local Variables: | 1735 # Local Variables: |
1737 # tab-width:2 | 1736 # tab-width:2 |
1738 # indent-tabs-mode:nil | 1737 # indent-tabs-mode:nil |
1739 # End: | 1738 # End: |
1740 # vim: set expandtab tabstop=2 shiftwidth=2: | 1739 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |