From c4134c3516a8e8618a97b6dc1d469b809b28bd75 Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Tue, 15 May 2018 11:33:19 -0700 Subject: [PATCH] refactor: breakpad #includes to work with GN and GYP (#12953) --- atom/common/crash_reporter/crash_reporter_linux.cc | 4 ++-- atom/common/crash_reporter/linux/crash_dump_handler.cc | 6 +++--- atom/common/crash_reporter/linux/crash_dump_handler.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/atom/common/crash_reporter/crash_reporter_linux.cc b/atom/common/crash_reporter/crash_reporter_linux.cc index 988f55e690c..fee322a95b9 100644 --- a/atom/common/crash_reporter/crash_reporter_linux.cc +++ b/atom/common/crash_reporter/crash_reporter_linux.cc @@ -18,8 +18,8 @@ #include "base/memory/singleton.h" #include "base/process/memory.h" #include "base/threading/thread_restrictions.h" -#include "vendor/breakpad/src/client/linux/handler/exception_handler.h" -#include "vendor/breakpad/src/common/linux/linux_libc_support.h" +#include "breakpad/src/client/linux/handler/exception_handler.h" +#include "breakpad/src/common/linux/linux_libc_support.h" using google_breakpad::ExceptionHandler; using google_breakpad::MinidumpDescriptor; diff --git a/atom/common/crash_reporter/linux/crash_dump_handler.cc b/atom/common/crash_reporter/linux/crash_dump_handler.cc index 93805280650..dea98d142dd 100644 --- a/atom/common/crash_reporter/linux/crash_dump_handler.cc +++ b/atom/common/crash_reporter/linux/crash_dump_handler.cc @@ -13,9 +13,9 @@ #include #include "base/posix/eintr_wrapper.h" -#include "vendor/breakpad/src/client/linux/minidump_writer/directory_reader.h" -#include "vendor/breakpad/src/common/linux/linux_libc_support.h" -#include "vendor/breakpad/src/common/memory.h" +#include "breakpad/src/client/linux/minidump_writer/directory_reader.h" +#include "breakpad/src/common/linux/linux_libc_support.h" +#include "breakpad/src/common/memory.h" #include "third_party/lss/linux_syscall_support.h" diff --git a/atom/common/crash_reporter/linux/crash_dump_handler.h b/atom/common/crash_reporter/linux/crash_dump_handler.h index 1978a70126f..99843c39fdf 100644 --- a/atom/common/crash_reporter/linux/crash_dump_handler.h +++ b/atom/common/crash_reporter/linux/crash_dump_handler.h @@ -11,7 +11,7 @@ #include #include "base/macros.h" -#include "vendor/breakpad/src/common/simple_string_dictionary.h" +#include "breakpad/src/common/simple_string_dictionary.h" namespace crash_reporter {