diff options
author | Gordana.Cmiljanovic <Gordana.Cmiljanovic@imgtec.com> | 2015-04-17 06:33:47 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-17 13:34:09 +0000 |
commit | 19fe7d34353d35464a6c31622fe4cdfb0d819022 (patch) | |
tree | 7f38bb1b433d3a812b556cb79d25f74e1212735a /breakpad | |
parent | 8b963f830c19d3ee593fe76af752f017159d24d8 (diff) | |
download | chromium_src-19fe7d34353d35464a6c31622fe4cdfb0d819022.zip chromium_src-19fe7d34353d35464a6c31622fe4cdfb0d819022.tar.gz chromium_src-19fe7d34353d35464a6c31622fe4cdfb0d819022.tar.bz2 |
Roll src/breakpad/src 2c37c22:ad88d96 (svn 1434:1447)
This pulls the following changes:
r1447 ad88d96 Fix call to rt_sigaction
r1446 3f8a019 MIPS64: Initial MIPS64 related change.
r1443 ecf9e2b Use __NR_rt_sigaction instead of __NR_sigaction
r1442 b8a7ea6 Microdump processor: be more tolerant for different logcat formats
r1441 d0b34ab Add address and reason for IN_PAGE_ERROR.
r1438 16c6ed2 Workaround Android sigaction bug
r1435 8828713 Fix compilation with gcc --std=c++11
Summary of changes available at:
https://chromium.googlesource.com/external/google-breakpad/src/+log/2c37c22..ad88d96
Plus modifies gn and gyp files to support changes.
BUG=system_webview_apk compile error for MIPS64
Review URL: https://codereview.chromium.org/1086423002
Cr-Commit-Position: refs/heads/master@{#325625}
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/BUILD.gn | 2 | ||||
-rw-r--r-- | breakpad/breakpad.gyp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/breakpad/BUILD.gn b/breakpad/BUILD.gn index 8103bb1..5e0fa95 100644 --- a/breakpad/BUILD.gn +++ b/breakpad/BUILD.gn @@ -173,6 +173,8 @@ if (current_toolchain == host_toolchain && !is_win) { "src/processor/exploitability_linux.h", "src/processor/exploitability_win.cc", "src/processor/exploitability_win.h", + "src/processor/symbolic_constants_win.cc", + "src/processor/symbolic_constants_win.h", ] } diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index 9c503df..de0faac 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -131,6 +131,8 @@ 'src/processor/minidump.cc', 'src/processor/minidump_processor.cc', 'src/processor/minidump_stackwalk.cc', + 'src/processor/symbolic_constants_win.cc', + 'src/processor/symbolic_constants_win.h', ], 'conditions': [ ['OS=="ios"', { |