blob: 656045bca7a26618dc7bcd31311ee8ec0608258b [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +01001# Copyright 2015 The V8 project authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/features.gni")
6import("//build/config/ui.gni")
7
8if (is_android) {
9 import("//build/config/android/config.gni")
10}
11
12declare_args() {
13 # V8 generates code for this architecture.
14 v8_target_arch = target_cpu
15}
16
17if (((v8_target_arch == "ia32" ||
18 v8_target_arch == "x64" ||
19 v8_target_arch=="x87") &&
20 (is_linux || is_mac)) ||
21 (v8_target_arch == "ppc64" && is_linux)) {
22 v8_enable_gdbjit = true
23}
24
25icu_use_data_file_flag = false
26v8_imminent_deprecation_warnings = true
27v8_optimized_debug = false
28v8_extra_library_files = []
29v8_experimental_extra_library_files = []