| 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 import("//build/config/v8_target_cpu.gni") |
| 6 | 6 |
| 7 if (((v8_current_cpu == "x86" || v8_current_cpu == "x64" || | 7 if (((v8_current_cpu == "x86" || v8_current_cpu == "x64" || |
| 8 v8_current_cpu == "x87") && (is_linux || is_mac)) || | 8 v8_current_cpu == "x87") && (is_linux || is_mac)) || |
| 9 (v8_current_cpu == "ppc64" && is_linux)) { | 9 (v8_current_cpu == "ppc64" && is_linux)) { |
| 10 v8_enable_gdbjit_default = true | 10 v8_enable_gdbjit_default = true |
| 11 } | 11 } |
| 12 | 12 |
| 13 v8_imminent_deprecation_warnings_default = true | 13 v8_imminent_deprecation_warnings_default = true |
| 14 | 14 |
| 15 # Add simple extras solely for the purpose of the cctests. | 15 # Add simple extras solely for the purpose of the cctests. |
| 16 v8_extra_library_files = [ "//test/cctest/test-extra.js" ] | 16 v8_extra_library_files = [ "//test/cctest/test-extra.js" ] |
| 17 v8_experimental_extra_library_files = | 17 v8_experimental_extra_library_files = |
| 18 [ "//test/cctest/test-experimental-extra.js" ] | 18 [ "//test/cctest/test-experimental-extra.js" ] |
| 19 | 19 |
| 20 v8_enable_inspector_override = true | 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 |