diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-22 21:18:55 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-22 21:18:55 +0000 |
commit | cc3b1826c0dbf8aa92484a0510ecfbe98f591335 (patch) | |
tree | 23cf8a79671994333bb31d3e1393552f5a167091 /chrome/chrome.gyp | |
parent | 04f94eb6d9cd8e0049a2decc7e96cba24d6903a1 (diff) | |
download | chromium_src-cc3b1826c0dbf8aa92484a0510ecfbe98f591335.zip chromium_src-cc3b1826c0dbf8aa92484a0510ecfbe98f591335.tar.gz chromium_src-cc3b1826c0dbf8aa92484a0510ecfbe98f591335.tar.bz2 |
Last chunk of OS X Breakpad integration:
* Link agasint Breakpad from public svn repo.
* Bump DEPS to new svn rev of Breakpad with fixes for 10.5 compilation.
* Fill in code to differentiate between processes types in crash report.
Review URL: http://codereview.chromium.org/88043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14245 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.gyp')
-rw-r--r-- | chrome/chrome.gyp | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index d2613a0..b22be98 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -213,10 +213,6 @@ 'common/libxml_utils.h', 'common/logging_chrome.cc', 'common/logging_chrome.h', - 'common/mach_ipc_mac.h', - 'common/mach_ipc_mac.mm', - 'common/mach_message_source_mac.cc', - 'common/mach_message_source_mac.h', 'common/main_function_params.h', 'common/message_box_flags.h', 'common/message_router.cc', @@ -1658,6 +1654,16 @@ # "bundle_id" is the name of the variable used to replace # BUNDLE_ID in Info.plist. 'variables': {'bundle_id': 'com.google.Chrome'}, + # Only include breakpad in official builds. + 'dependencies': [ + '../breakpad/breakpad.gyp:breakpad', + ], + 'copies': [ + { + 'destination': '<(PRODUCT_DIR)/<(branding).app/Contents/Resources/', + 'files': ['<(PRODUCT_DIR)/crash_inspector', '<(PRODUCT_DIR)/crash_report_sender.app'], + }, + ] }, { # else: branding!="Chrome" 'mac_bundle_resources': ['app/theme/chromium/app.icns'], 'variables': {'bundle_id': 'org.chromium.Chromium'}, @@ -2121,7 +2127,7 @@ '..', ], 'sources': [ - 'app/breakpad_mac.mm', + 'app/breakpad_mac_stubs.mm', # All unittests in browser, common, and renderer. 'browser/autocomplete/autocomplete_unittest.cc', 'browser/autocomplete/history_contents_provider_unittest.cc', |