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

Side by Side Diff: chrome/chrome_exe.gypi

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 | « chrome/chrome_dll.gypi ('k') | chrome/tools/build/mac/tweak_info_plist » ('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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome', 8 'target_name': 'chrome',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', 304 'postbuild_name': 'Copy <(mac_product_name) Framework.framework',
305 'action': [ 305 'action': [
306 'tools/build/mac/copy_framework_unversioned', 306 'tools/build/mac/copy_framework_unversioned',
307 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework', 307 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework',
308 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(versio n_full)', 308 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(versio n_full)',
309 ], 309 ],
310 }, 310 },
311 { 311 {
312 # Modify the Info.plist as needed. The script explains why this 312 # Modify the Info.plist as needed. The script explains why this
313 # is needed. This is also done in the helper_app and chrome_dll 313 # is needed. This is also done in the helper_app and chrome_dll
314 # targets. Use -b0 to not include any Breakpad information; that 314 # targets. Use --breakpad=0 to not include any Breakpad
315 # all goes into the framework's Info.plist. Keystone information 315 # information; that all goes into the framework's Info.plist.
316 # is included if Keystone is enabled. The application reads 316 # Keystone information is included if Keystone is enabled. The
317 # Keystone keys from this plist and not the framework's, and 317 # application reads Keystone keys from this plist and not the
318 # the ticket will reference this Info.plist to determine the tag 318 # framework's, and the ticket will reference this Info.plist to
319 # of the installed product. Use -s1 to include Subversion 319 # determine the tag of the installed product. Use -s1 to
320 # information. The -p flag controls whether to insert PDF as a 320 # include Subversion information. The -p flag controls whether
321 # supported type identifier that can be opened. 321 # to insert PDF as a supported type identifier that can be
322 # opened.
322 'postbuild_name': 'Tweak Info.plist', 323 'postbuild_name': 'Tweak Info.plist',
323 'action': ['<(tweak_info_plist_path)', 324 'action': ['<(tweak_info_plist_path)',
324 '-b0', 325 '--breakpad=0',
325 '-k<(mac_keystone)', 326 '-k<(mac_keystone)',
326 '-s1', 327 '-s1',
327 '-p<(internal_pdf)', 328 '-p<(internal_pdf)',
328 '<(branding)', 329 '<(branding)',
329 '<(mac_bundle_id)'], 330 '<(mac_bundle_id)'],
330 }, 331 },
331 { 332 {
332 'postbuild_name': 'Clean up old versions', 333 'postbuild_name': 'Clean up old versions',
333 'action': [ 334 'action': [
334 'tools/build/mac/clean_up_old_versions', 335 'tools/build/mac/clean_up_old_versions',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 'configurations': { 552 'configurations': {
552 'Common_Base': { 553 'Common_Base': {
553 'msvs_target_platform': 'x64', 554 'msvs_target_platform': 'x64',
554 }, 555 },
555 }, 556 },
556 }, 557 },
557 ], 558 ],
558 }], 559 }],
559 ], 560 ],
560 } 561 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/tools/build/mac/tweak_info_plist » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698