diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 18:04:55 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 18:04:55 +0000 |
commit | d688d9043693340f14485241fdef825180984b24 (patch) | |
tree | 893aa9fcaacd5f6f47219b8d5ebca2e2794124ac /breakpad | |
parent | 4e38f1aed9c88c7501d4fa54ae92697871916a78 (diff) | |
download | chromium_src-d688d9043693340f14485241fdef825180984b24.zip chromium_src-d688d9043693340f14485241fdef825180984b24.tar.gz chromium_src-d688d9043693340f14485241fdef825180984b24.tar.bz2 |
Save real .dSYMs for Breakpad's crash_inspector and crash_report_sender.app
for proper debugging and Breakpadding.
Dump symbols for Breakpad for these new files and for libffmpegsumo.dylib, and
save all of their .dSYMs in the .dSYM archive.
BUG=58310
TEST=none
Review URL: http://codereview.chromium.org/3516022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61808 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/breakpad.gyp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index 2b058ec..155a361 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -47,6 +47,9 @@ { 'target_name': 'crash_inspector', 'type': 'executable', + 'variables': { + 'mac_real_dsym': 1, + }, 'dependencies': [ 'breakpad_utilities', ], @@ -67,6 +70,9 @@ 'target_name': 'crash_report_sender', 'type': 'executable', 'mac_bundle': 1, + 'variables': { + 'mac_real_dsym': 1, + }, 'include_dirs': [ 'src/common/mac', ], |