diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 22:17:02 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 22:17:02 +0000 |
commit | 75aa7656d8073e83e2e507bf995e9408bdf2cdac (patch) | |
tree | cf064ecc32dded5df6f98ae5d602cda67c221258 /breakpad/breakpad.gyp | |
parent | 1f99c74d17647f3f87e85113b323d83ffaa7922a (diff) | |
download | chromium_src-75aa7656d8073e83e2e507bf995e9408bdf2cdac.zip chromium_src-75aa7656d8073e83e2e507bf995e9408bdf2cdac.tar.gz chromium_src-75aa7656d8073e83e2e507bf995e9408bdf2cdac.tar.bz2 |
Stop using forked Breakpad files. This undoes the local copy of the changes
from http://breakpad.appspot.com/299001 that never got committed upstream.
Testing shows that these changes are no longer necessary, and maintaining the
fork of these files has been cumbersome. This change also brings in new
Windows dump_syms and symupload binaries.
This also updates Breakpad to r1178, picking up:
------------------------------------------------------------------------
r1178 | mark@chromium.org | 2013-05-09 17:56:18 -0400 (Thu, 09 May 2013) | 3 lines
Fix following r1175: the section name is __debug_info, not .debug_info.
Review URL: https://breakpad.appspot.com/583003
------------------------------------------------------------------------
r1177 | chrisha@chromium.org | 2013-05-09 12:29:56 -0400 (Thu, 09 May 2013) | 9 lines
Check in new Windows binaries.
These binaries include recent changes to pdb_source_line_writer for handling
PDBs with OMAP data. They were built using the GYP build files, MSVS 2010 and
DIA SDK 8.0.
Review URL: https://breakpad.appspot.com/584002/
------------------------------------------------------------------------
r1176 | thestig@chromium.org | 2013-05-08 16:24:03 -0400 (Wed, 08 May 2013) | 5 lines
Mac: Fix more errors from clang to get crash_report.xcodeproj close to compiling.
R=thestig@chromium.org
Review URL: https://breakpad.appspot.com/593002
------------------------------------------------------------------------
r1175 | thestig@chromium.org | 2013-05-08 13:41:12 -0400 (Wed, 08 May 2013) | 5 lines
Fix mac dump_syms after r1163.
Review URL: https://breakpad.appspot.com/592002
------------------------------------------------------------------------
TEST=Mac crash reports should have good stacks. So should Windows crash
reports.
Review URL: https://codereview.chromium.org/14876014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199286 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad/breakpad.gyp')
-rw-r--r-- | breakpad/breakpad.gyp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index 8ef5e9a..ea137cc 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -206,18 +206,13 @@ { 'target_name': 'dump_syms', 'type': 'executable', - 'include_dirs++': [ - # ++ ensures this comes before src brought in from target_defaults. - 'pending/src', - ], 'include_dirs': [ 'src/common/mac', ], 'sources': [ - 'pending/src/common/dwarf_cu_to_module.cc', - 'pending/src/common/module.cc', 'src/common/dwarf/bytereader.cc', 'src/common/dwarf_cfi_to_module.cc', + 'src/common/dwarf_cu_to_module.cc', 'src/common/dwarf/dwarf2diehandler.cc', 'src/common/dwarf/dwarf2reader.cc', 'src/common/dwarf_line_to_module.cc', @@ -231,6 +226,7 @@ 'src/common/mac/macho_utilities.cc', 'src/common/mac/macho_walker.cc', 'src/common/md5.cc', + 'src/common/module.cc', 'src/common/stabs_reader.cc', 'src/common/stabs_to_module.cc', 'src/tools/mac/dump_syms/dump_syms_tool.mm', |