3be95b712c
There are bots on the chromium.lkgr waterfall that need to be able to set v8_target_arch to "arm" while the rest of the target build is "x86". This CL makes that argument a declare_arg(), so that we can do that. BUG=chromium:605732,chromium:474921 NOTRY=true Review-Url: https://codereview.chromium.org/2007843002 Cr-Commit-Position: refs/heads/master@{#36464}
26 lines
693 B
Plaintext
26 lines
693 B
Plaintext
# Copyright 2015 The V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//build/config/features.gni")
|
|
import("//build/config/ui.gni")
|
|
import("//gni/v8.gni")
|
|
|
|
if (is_android) {
|
|
import("//build/config/android/config.gni")
|
|
}
|
|
|
|
if (((v8_target_arch == "ia32" ||
|
|
v8_target_arch == "x64" ||
|
|
v8_target_arch=="x87") &&
|
|
(is_linux || is_mac)) ||
|
|
(v8_target_arch == "ppc64" && is_linux)) {
|
|
v8_enable_gdbjit = true
|
|
}
|
|
|
|
icu_use_data_file = false
|
|
v8_imminent_deprecation_warnings = true
|
|
v8_optimized_debug = false
|
|
v8_extra_library_files = []
|
|
v8_experimental_extra_library_files = []
|