Commit 18c77ce5 authored by Eric Holk's avatar Eric Holk Committed by Commit Bot

Fixing Android x64 build.

BUG= chromium:701590

Change-Id: Ia0a3a7a532a8acd001cb1dc79991f7cc08fc973d
Reviewed-on: https://chromium-review.googlesource.com/456456Reviewed-by: 's avatarBrad Nelson <bradnelson@chromium.org>
Commit-Queue: Brad Nelson <bradnelson@chromium.org>
Cr-Commit-Position: refs/heads/master@{#43873}
parent dee16f86
...@@ -7619,7 +7619,7 @@ class V8_EXPORT V8 { ...@@ -7619,7 +7619,7 @@ class V8_EXPORT V8 {
*/ */
static void ShutdownPlatform(); static void ShutdownPlatform();
#if V8_OS_LINUX && V8_TARGET_ARCH_X64 #if V8_OS_LINUX && V8_TARGET_ARCH_X64 && !V8_OS_ANDROID
/** /**
* Give the V8 signal handler a chance to handle a fault. * Give the V8 signal handler a chance to handle a fault.
* *
......
...@@ -6142,7 +6142,7 @@ bool v8::V8::Initialize() { ...@@ -6142,7 +6142,7 @@ bool v8::V8::Initialize() {
return true; return true;
} }
#if V8_OS_LINUX && V8_TARGET_ARCH_X64 #if V8_OS_LINUX && V8_TARGET_ARCH_X64 && !V8_OS_ANDROID
bool V8::TryHandleSignal(int signum, void* info, void* context) { bool V8::TryHandleSignal(int signum, void* info, void* context) {
return v8::internal::trap_handler::TryHandleSignal( return v8::internal::trap_handler::TryHandleSignal(
signum, static_cast<siginfo_t*>(info), static_cast<ucontext_t*>(context)); signum, static_cast<siginfo_t*>(info), static_cast<ucontext_t*>(context));
......
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