Commit eee4843a authored by Oliver Chang's avatar Oliver Chang Committed by Commit Bot

Fix V8 arm build.

TBR=inferno@chromium.org,rockot@chromium.org

Bug: 856188
Change-Id: Ic215f12810032592df4ed6832ecc40f92068bbc8
Reviewed-on: https://chromium-review.googlesource.com/1113710
Commit-Queue: Oliver Chang <ochang@chromium.org>
Reviewed-by: default avatarOliver Chang <ochang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#570329}
parent 30cc75af
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
# found in the LICENSE file. # found in the LICENSE file.
import("//build/buildflag_header.gni") import("//build/buildflag_header.gni")
import("//build/config/nacl/config.gni")
import("//tools/ipc_fuzzer/ipc_fuzzer.gni") import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
declare_args() { declare_args() {
...@@ -167,7 +168,7 @@ component("bindings") { ...@@ -167,7 +168,7 @@ component("bindings") {
"unique_ptr_impl_ref_traits.h", "unique_ptr_impl_ref_traits.h",
] ]
if (enable_ipc_fuzzer && current_toolchain == host_toolchain) { if (enable_ipc_fuzzer && !is_nacl_nonsfi) {
sources += [ sources += [
"lib/message_dumper.cc", "lib/message_dumper.cc",
"message_dumper.h", "message_dumper.h",
......
...@@ -2,10 +2,11 @@ ...@@ -2,10 +2,11 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
import("//build/config/nacl/config.gni")
import("//tools/ipc_fuzzer/ipc_fuzzer.gni") import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
config("ipc_fuzzer_config") { config("ipc_fuzzer_config") {
if (current_toolchain == host_toolchain) { if (!is_nacl_nonsfi) {
defines = [ "ENABLE_IPC_FUZZER" ] defines = [ "ENABLE_IPC_FUZZER" ]
} }
} }
......
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