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/v8_target_cpu.gni") | 5 # This file should be empty. |
6 | 6 |
7 if (((v8_current_cpu == "x86" || v8_current_cpu == "x64" || | 7 # TODO(brettw) http://crbug.com/684096 Remove this when all callers are updated |
8 v8_current_cpu == "x87") && (is_linux || is_mac)) || | 8 # to use the new build overrides system. |
9 (v8_current_cpu == "ppc64" && is_linux)) { | |
10 v8_enable_gdbjit_default = true | |
11 } | |
12 | |
13 v8_imminent_deprecation_warnings_default = true | |
14 | |
15 # Add simple extras solely for the purpose of the cctests. | |
16 v8_extra_library_files = [ "//test/cctest/test-extra.js" ] | |
17 v8_experimental_extra_library_files = | |
18 [ "//test/cctest/test-experimental-extra.js" ] | |
19 | |
20 v8_enable_inspector_override = true | |
21 | |
22 declare_args() { | |
23 # Use static libraries instead of source_sets. | |
24 v8_static_library = false | |
25 } | |
OLD | NEW |