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

Side by Side Diff: chrome/chrome.gyp

Issue 8824003: Breakpad: Compile Breakpad into Chromium by default on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Swap around Gyp options; use mac_breakpad_compiled_in Created 9 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 | « build/common.gypi ('k') | chrome/chrome_dll.gypi » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 'install_name_tool', 763 'install_name_tool',
764 '-change', 764 '-change',
765 '@executable_path/../Versions/<(version_full)/<(mac_product_name ) Framework.framework/<(mac_product_name) Framework', 765 '@executable_path/../Versions/<(version_full)/<(mac_product_name ) Framework.framework/<(mac_product_name) Framework',
766 '@executable_path/../../../<(mac_product_name) Framework.framewo rk/<(mac_product_name) Framework', 766 '@executable_path/../../../<(mac_product_name) Framework.framewo rk/<(mac_product_name) Framework',
767 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' 767 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}'
768 ], 768 ],
769 }, 769 },
770 { 770 {
771 # Modify the Info.plist as needed. The script explains why this 771 # Modify the Info.plist as needed. The script explains why this
772 # is needed. This is also done in the chrome and chrome_dll 772 # is needed. This is also done in the chrome and chrome_dll
773 # targets. In this case, -b0, -k0, and -s0 are used because 773 # targets. In this case, --breakpad=0, -k0, and -s0 are used
774 # Breakpad, Keystone, and Subersion keys are never placed into 774 # because Breakpad, Keystone, and Subersion keys are never
775 # the helper. 775 # placed into the helper.
776 'postbuild_name': 'Tweak Info.plist', 776 'postbuild_name': 'Tweak Info.plist',
777 'action': ['<(tweak_info_plist_path)', 777 'action': ['<(tweak_info_plist_path)',
778 '-b0', 778 '--breakpad=0',
779 '-k0', 779 '-k0',
780 '-s0', 780 '-s0',
781 '<(branding)', 781 '<(branding)',
782 '<(mac_bundle_id)'], 782 '<(mac_bundle_id)'],
783 }, 783 },
784 { 784 {
785 # Make sure there isn't any Objective-C in the helper app's 785 # Make sure there isn't any Objective-C in the helper app's
786 # executable. 786 # executable.
787 'postbuild_name': 'Verify No Objective-C', 787 'postbuild_name': 'Verify No Objective-C',
788 'action': [ 788 'action': [
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 'configurations': { 1301 'configurations': {
1302 'Common_Base': { 1302 'Common_Base': {
1303 'msvs_target_platform': 'x64', 1303 'msvs_target_platform': 'x64',
1304 }, 1304 },
1305 }, 1305 },
1306 }, 1306 },
1307 ]}, # 'targets' 1307 ]}, # 'targets'
1308 ], # OS=="win" 1308 ], # OS=="win"
1309 ], # 'conditions' 1309 ], # 'conditions'
1310 } 1310 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698