Commit dae9d101 authored by Peter Collingbourne's avatar Peter Collingbourne Committed by Commit Bot

Roll src/third_party/breakpad/breakpad/ 1c6d16139..072f86ca8 (12 commits)

https://chromium.googlesource.com/breakpad/breakpad.git/+log/1c6d1613966e..072f86ca83bb

$ git log 1c6d16139..072f86ca8 --date=short --no-merges --format='%ad %ae %s'
2017-10-18 tobiasjs Provide helper wrappers for basename(3) and dirname(3)
2017-10-17 pcc Move main executable handling out of procmaps parser loop.
2017-10-17 ted Rename src/common/memory.h to memory_allocator.h.
2017-10-16 tobiasjs Add -s flag to microdump_stackwalk for dumping stack contents.
2017-10-13 tobiasjs Convert {mini|micro}dump_stackwalk argument parsing to getopt.
2017-10-11 adamharrison ios: Adds a no-Mach exception handler
2017-10-06 jperaza Android: Use sys/types.h instead of stdint.h for sys/user.h
2017-10-05 mark Fix minidump_dump_test after 6d0287851fab
2017-09-27 mark Dump Crashpad extension structures in minidump_dump
2017-09-27 mark Only run GYP for Windows targets on Windows
2017-08-28 orgads Fix MSVC build on 64-bit
2017-08-28 orgads Refresh refresh_binaries.bat

Created with:
  roll-dep src/third_party/breakpad/breakpad

Bug: 469376
Change-Id: I18c48cca483500d350709119c41b04a79efeae17
Reviewed-on: https://chromium-review.googlesource.com/723850
Commit-Queue: Peter Collingbourne <pcc@chromium.org>
Reviewed-by: default avatarMark Mentovai <mark@chromium.org>
Reviewed-by: default avatarMike Frysinger <vapier@chromium.org>
Cr-Commit-Position: refs/heads/master@{#510255}
parent edd1ebe0
...@@ -241,7 +241,7 @@ deps = { ...@@ -241,7 +241,7 @@ deps = {
Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
'src/third_party/breakpad/breakpad': 'src/third_party/breakpad/breakpad':
Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '1c6d1613966eab5d77531e85f3b60c40124b43f0', Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '072f86ca83bb7138fe33f10b6380badd9ef7f065',
'src/third_party/catapult': 'src/third_party/catapult':
Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
#include "third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.h" #include "third_party/breakpad/breakpad/src/client/linux/handler/exception_handler.h"
#include "third_party/breakpad/breakpad/src/client/linux/minidump_writer/directory_reader.h" #include "third_party/breakpad/breakpad/src/client/linux/minidump_writer/directory_reader.h"
#include "third_party/breakpad/breakpad/src/common/linux/linux_libc_support.h" #include "third_party/breakpad/breakpad/src/common/linux/linux_libc_support.h"
#include "third_party/breakpad/breakpad/src/common/memory.h" #include "third_party/breakpad/breakpad/src/common/memory_allocator.h"
#if defined(OS_ANDROID) #if defined(OS_ANDROID)
#include <android/log.h> #include <android/log.h>
......
...@@ -68,6 +68,8 @@ if (!is_win) { ...@@ -68,6 +68,8 @@ if (!is_win) {
# Always want these files included regardless of platform. # Always want these files included regardless of platform.
set_sources_assignment_filter([]) set_sources_assignment_filter([])
sources = [ sources = [
"breakpad/src/common/path_helper.cc",
"breakpad/src/common/path_helper.h",
"breakpad/src/processor/basic_code_module.h", "breakpad/src/processor/basic_code_module.h",
"breakpad/src/processor/basic_code_modules.cc", "breakpad/src/processor/basic_code_modules.cc",
"breakpad/src/processor/basic_code_modules.h", "breakpad/src/processor/basic_code_modules.h",
...@@ -297,6 +299,8 @@ if (is_mac) { ...@@ -297,6 +299,8 @@ if (is_mac) {
"breakpad/src/common/mac/macho_walker.cc", "breakpad/src/common/mac/macho_walker.cc",
"breakpad/src/common/md5.cc", "breakpad/src/common/md5.cc",
"breakpad/src/common/module.cc", "breakpad/src/common/module.cc",
"breakpad/src/common/path_helper.cc",
"breakpad/src/common/path_helper.h",
"breakpad/src/common/stabs_reader.cc", "breakpad/src/common/stabs_reader.cc",
"breakpad/src/common/stabs_to_module.cc", "breakpad/src/common/stabs_to_module.cc",
"breakpad/src/tools/mac/dump_syms/dump_syms_tool.cc", "breakpad/src/tools/mac/dump_syms/dump_syms_tool.cc",
...@@ -520,6 +524,8 @@ if (is_linux || is_android) { ...@@ -520,6 +524,8 @@ if (is_linux || is_android) {
"breakpad/src/common/linux/memory_mapped_file.h", "breakpad/src/common/linux/memory_mapped_file.h",
"breakpad/src/common/module.cc", "breakpad/src/common/module.cc",
"breakpad/src/common/module.h", "breakpad/src/common/module.h",
"breakpad/src/common/path_helper.cc",
"breakpad/src/common/path_helper.h",
"breakpad/src/common/stabs_reader.cc", "breakpad/src/common/stabs_reader.cc",
"breakpad/src/common/stabs_reader.h", "breakpad/src/common/stabs_reader.h",
"breakpad/src/common/stabs_to_module.cc", "breakpad/src/common/stabs_to_module.cc",
...@@ -613,7 +619,7 @@ if (is_linux || is_android) { ...@@ -613,7 +619,7 @@ if (is_linux || is_android) {
"breakpad/src/common/linux/memory_mapped_file.h", "breakpad/src/common/linux/memory_mapped_file.h",
"breakpad/src/common/linux/safe_readlink.cc", "breakpad/src/common/linux/safe_readlink.cc",
"breakpad/src/common/linux/safe_readlink.h", "breakpad/src/common/linux/safe_readlink.h",
"breakpad/src/common/memory.h", "breakpad/src/common/memory_allocator.h",
"breakpad/src/common/simple_string_dictionary.cc", "breakpad/src/common/simple_string_dictionary.cc",
"breakpad/src/common/simple_string_dictionary.h", "breakpad/src/common/simple_string_dictionary.h",
"breakpad/src/common/string_conversion.cc", "breakpad/src/common/string_conversion.cc",
...@@ -696,8 +702,8 @@ if (is_linux || is_android) { ...@@ -696,8 +702,8 @@ if (is_linux || is_android) {
"breakpad/src/common/linux/tests/auto_testfile.h", "breakpad/src/common/linux/tests/auto_testfile.h",
"breakpad/src/common/linux/tests/crash_generator.cc", "breakpad/src/common/linux/tests/crash_generator.cc",
"breakpad/src/common/linux/tests/crash_generator.h", "breakpad/src/common/linux/tests/crash_generator.h",
"breakpad/src/common/memory_allocator_unittest.cc",
"breakpad/src/common/memory_range.h", "breakpad/src/common/memory_range.h",
"breakpad/src/common/memory_unittest.cc",
"breakpad/src/common/simple_string_dictionary_unittest.cc", "breakpad/src/common/simple_string_dictionary_unittest.cc",
"breakpad/src/common/test_assembler.cc", "breakpad/src/common/test_assembler.cc",
"breakpad/src/common/tests/file_utils.cc", "breakpad/src/common/tests/file_utils.cc",
...@@ -799,6 +805,8 @@ if (is_linux || is_android) { ...@@ -799,6 +805,8 @@ if (is_linux || is_android) {
executable("minidump-2-core") { executable("minidump-2-core") {
set_sources_assignment_filter([]) set_sources_assignment_filter([])
sources = [ sources = [
"breakpad/src/common/path_helper.cc",
"breakpad/src/common/path_helper.h",
"breakpad/src/tools/linux/md2core/minidump-2-core.cc", "breakpad/src/tools/linux/md2core/minidump-2-core.cc",
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment