From 4255384abc7de33656049061f7ba16866c039d00 Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Tue, 26 Jun 2018 07:03:56 +0200 Subject: [PATCH] chore: [gn] remove vendor/ from windows include paths (#13432) --- atom/common/crash_reporter/crash_reporter_win.h | 2 +- atom/common/crash_reporter/win/crash_service.cc | 6 +++--- atom/common/node_bindings_win.cc | 4 ---- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/atom/common/crash_reporter/crash_reporter_win.h b/atom/common/crash_reporter/crash_reporter_win.h index 3509ebbd3710..a6fe33fcd5cd 100644 --- a/atom/common/crash_reporter/crash_reporter_win.h +++ b/atom/common/crash_reporter/crash_reporter_win.h @@ -11,7 +11,7 @@ #include "atom/common/crash_reporter/crash_reporter.h" #include "base/compiler_specific.h" -#include "vendor/breakpad/src/client/windows/handler/exception_handler.h" +#include "breakpad/src/client/windows/handler/exception_handler.h" namespace base { template diff --git a/atom/common/crash_reporter/win/crash_service.cc b/atom/common/crash_reporter/win/crash_service.cc index aade5951abaa..d13111f495be 100644 --- a/atom/common/crash_reporter/win/crash_service.cc +++ b/atom/common/crash_reporter/win/crash_service.cc @@ -17,9 +17,9 @@ #include "base/strings/string_util.h" #include "base/time/time.h" #include "base/win/windows_version.h" -#include "vendor/breakpad/src/client/windows/crash_generation/client_info.h" -#include "vendor/breakpad/src/client/windows/crash_generation/crash_generation_server.h" -#include "vendor/breakpad/src/client/windows/sender/crash_report_sender.h" +#include "breakpad/src/client/windows/crash_generation/client_info.h" +#include "breakpad/src/client/windows/crash_generation/crash_generation_server.h" +#include "breakpad/src/client/windows/sender/crash_report_sender.h" namespace breakpad { diff --git a/atom/common/node_bindings_win.cc b/atom/common/node_bindings_win.cc index 4a5ff5c51406..e41fb585f571 100644 --- a/atom/common/node_bindings_win.cc +++ b/atom/common/node_bindings_win.cc @@ -8,10 +8,6 @@ #include "base/logging.h" -extern "C" { -#include "vendor/node/deps/uv/src/win/internal.h" -} - namespace atom { NodeBindingsWin::NodeBindingsWin(BrowserEnvironment browser_env)