Skip to content

Commit

Permalink
Revert 148171 - Roll breakpad DEPS r977:996
Browse files Browse the repository at this point in the history
NaCl again

BUG=137676
TEST=none
TBR=deps

Review URL: https://chromiumcodereview.appspot.com/10808107

TBR=rsesek@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10816042

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148185 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
rsesek@chromium.org committed Jul 24, 2012
1 parent 0538c70 commit 1fbaea0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 23 deletions.
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ vars = {

deps = {
"src/breakpad/src":
(Var("googlecode_url") % "google-breakpad") + "/trunk/src@996",
(Var("googlecode_url") % "google-breakpad") + "/trunk/src@977",

"src/googleurl":
(Var("googlecode_url") % "google-url") + "/trunk@175",
Expand Down
9 changes: 0 additions & 9 deletions breakpad/breakpad.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,6 @@
'src/common/linux/dump_symbols.h',
'src/common/linux/elf_symbols_to_module.cc',
'src/common/linux/elf_symbols_to_module.h',
'src/common/linux/elfutils.cc',
'src/common/linux/elfutils.h',
'src/common/linux/file_id.cc',
'src/common/linux/file_id.h',
'src/common/linux/memory_mapped_file.cc',
Expand Down Expand Up @@ -495,8 +493,6 @@
'src/common/convert_UTF.h',
'src/common/linux/elf_core_dump.cc',
'src/common/linux/elf_core_dump.h',
'src/common/linux/elfutils.cc',
'src/common/linux/elfutils.h',
'src/common/linux/file_id.cc',
'src/common/linux/file_id.h',
'src/common/linux/google_crashdump_uploader.cc',
Expand Down Expand Up @@ -554,7 +550,6 @@
'src/processor/minidump.cc',
'src/processor/pathname_stripper.cc',
'src/processor/pathname_stripper.h',
'src/processor/scoped_ptr.h',
],

'include_dirs': [
Expand Down Expand Up @@ -585,8 +580,6 @@
'src/client/linux/minidump_writer/linux_core_dumper_unittest.cc',
'src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc',
'src/client/linux/minidump_writer/minidump_writer_unittest.cc',
'src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc',
'src/client/linux/minidump_writer/minidump_writer_unittest_utils.h',
'src/common/linux/elf_core_dump_unittest.cc',
'src/common/linux/file_id_unittest.cc',
'src/common/linux/linux_libc_support_unittest.cc',
Expand All @@ -613,14 +606,12 @@
'target_name': 'linux_dumper_unittest_helper',
'type': 'executable',
'dependencies': [
'breakpad_processor_support',
],
'sources': [
'src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc',
],

'include_dirs': [
'src',
'..',
],
},
Expand Down
16 changes: 3 additions & 13 deletions webkit/tools/test_shell/test_shell_win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -182,21 +182,11 @@ void TestShell::InitializeTestShell(bool layout_test_mode,
parsed_command_line.GetSwitchValueNative(test_shell::kCrashDumps));
if (parsed_command_line.HasSwitch(test_shell::kCrashDumpsFulldump)) {
new google_breakpad::ExceptionHandler(
dir, // dump_path
NULL, // filter
&MinidumpCallback, // callback
NULL, // callback_context
google_breakpad::ExceptionHandler::HANDLER_ALL, // handler_types
kFullDumpType, // dump_type
static_cast<const wchar_t*>(NULL), // pipe_name
NULL); // custom_info
dir, 0, &MinidumpCallback, 0, true,
kFullDumpType, 0, 0);
} else {
new google_breakpad::ExceptionHandler(
dir, // dump_path
NULL, // filter
&MinidumpCallback, // callback
NULL, // callback_context
google_breakpad::ExceptionHandler::HANDLER_ALL); // handler_tpes
dir, 0, &MinidumpCallback, 0, true);
}
}
}
Expand Down

0 comments on commit 1fbaea0

Please sign in to comment.