OLD | NEW |
---|---|
1 # Copyright 2015 The V8 project authors. All rights reserved. | 1 # 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//gni/v8.gni") | 7 import("//gni/v8.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
11 } | 11 } |
12 | 12 |
13 if (((v8_target_arch == "ia32" || | 13 if (((v8_target_arch == "ia32" || |
14 v8_target_arch == "x64" || | 14 v8_target_arch == "x64" || |
15 v8_target_arch=="x87") && | 15 v8_target_arch=="x87") && |
16 (is_linux || is_mac)) || | 16 (is_linux || is_mac)) || |
17 (v8_target_arch == "ppc64" && is_linux)) { | 17 (v8_target_arch == "ppc64" && is_linux)) { |
18 v8_enable_gdbjit = true | 18 v8_enable_gdbjit = true |
19 } | 19 } |
20 | 20 |
21 icu_use_data_file = false | 21 icu_use_data_file = false |
22 v8_imminent_deprecation_warnings = true | 22 v8_imminent_deprecation_warnings = true |
23 v8_optimized_debug = false | 23 v8_optimized_debug = false |
24 v8_extra_library_files = [] | 24 |
25 v8_experimental_extra_library_files = [] | 25 # Add a simple extras solely for the purpose of the cctests. |
Michael Achenbach
2016/06/07 08:53:21
Ports:
https://cs.chromium.org/chromium/src/v8/gyp
| |
26 v8_extra_library_files = [ "//test/cctest/test-extra.js" ] | |
27 v8_experimental_extra_library_files = [ "//test/cctest/test-experimental-extra.j s" ] | |
OLD | NEW |