Commit 01516516 authored by machenbach's avatar machenbach Committed by Commit bot

[gn] Port more build flags for gn

BUG=chromium:474921
LOG=n
NOTRY=true

Review-Url: https://codereview.chromium.org/1983093002
Cr-Commit-Position: refs/heads/master@{#36293}
parent f93066b3
......@@ -9,6 +9,20 @@ if (is_android) {
import("//build/config/android/config.gni")
}
declare_args() {
# V8 generates code for this architecture.
v8_target_arch = target_cpu
}
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
}
v8_imminent_deprecation_warnings = true
v8_optimized_debug = false
v8_extra_library_files = []
v8_experimental_extra_library_files = []
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