[fuchsia] Update crashpad location

... as we move crashpad from //third_party/crashpad to
//third_party/crashpad/src

Change-Id: I081520ad44334cc83397234e5d16535d0db4806d
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/4132465
Reviewed-by: Francois Rousseau <frousseau@google.com>
Commit-Queue: Jay Zhuang <jayzhuang@google.com>
This commit is contained in:
Jay Zhuang 2023-01-03 18:01:03 +08:00 committed by Crashpad LUCI CQ
parent bd479a1202
commit a41e599f33
3 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ crashpad_is_standalone = crashpad_dependencies == "standalone"
# This is the parent directory that contains the mini_chromium source dir. # This is the parent directory that contains the mini_chromium source dir.
# This variable is not used when crashpad_is_in_chromium. # This variable is not used when crashpad_is_in_chromium.
if (crashpad_is_in_fuchsia) { if (crashpad_is_in_fuchsia) {
mini_chromium_source_parent = "//third_party/crashpad/third_party/mini_chromium" mini_chromium_source_parent = "//third_party/crashpad/src/third_party/mini_chromium"
} else { } else {
mini_chromium_source_parent = "../third_party/mini_chromium" mini_chromium_source_parent = "../third_party/mini_chromium"
} }

View File

@ -20,7 +20,7 @@
#elif defined(CRASHPAD_LSS_SOURCE_EMBEDDED) #elif defined(CRASHPAD_LSS_SOURCE_EMBEDDED)
#include "third_party/lss/lss/linux_syscall_support.h" #include "third_party/lss/lss/linux_syscall_support.h"
#elif defined(CRASHPAD_LSS_SOURCE_FUCHSIA) #elif defined(CRASHPAD_LSS_SOURCE_FUCHSIA)
#include "../../../../third_party/linux-syscall-support/src/linux_syscall_support.h" #include "../../../../../third_party/linux-syscall-support/src/linux_syscall_support.h"
#else #else
#error Unknown lss source #error Unknown lss source
#endif #endif

View File

@ -562,7 +562,7 @@ crashpad_static_library("util") {
# Include generated files starting with "util". # Include generated files starting with "util".
if (crashpad_is_in_fuchsia) { if (crashpad_is_in_fuchsia) {
include_dirs = [ "$root_gen_dir/third_party/crashpad" ] include_dirs = [ "$root_gen_dir/third_party/crashpad/src" ]
} else { } else {
include_dirs = [ "$root_gen_dir/third_party/crashpad/crashpad" ] include_dirs = [ "$root_gen_dir/third_party/crashpad/crashpad" ]
} }