Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium 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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
| 6 # Chromium build. | 6 # Chromium build. |
| 7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 | 8 |
| 9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
| 10 # builds. | 10 # builds. |
| 11 v8_deprecation_warnings = false | 11 v8_deprecation_warnings = false |
| 12 v8_enable_disassembler = false | 12 v8_enable_disassembler = false |
| 13 v8_enable_gdbjit = false | 13 v8_enable_gdbjit = false |
| 14 v8_enable_handle_zapping = true | 14 v8_enable_handle_zapping = true |
| 15 v8_enable_i18n_support = true | 15 v8_enable_i18n_support = true |
| 16 v8_enable_verify_heap = false | 16 v8_enable_verify_heap = false |
| 17 v8_interpreted_regexp = false | 17 v8_interpreted_regexp = false |
| 18 v8_object_print = false | 18 v8_object_print = false |
| 19 v8_postmortem_support = false | 19 v8_postmortem_support = false |
| 20 v8_use_snapshot = true | 20 v8_use_snapshot = true |
| 21 v8_target_arch = cpu_arch | 21 v8_target_arch = current_cpu |
|
jochen (gone - plz use gerrit)
2015/02/23 07:49:19
is current_cpu always the target arch? i.e. is it
Dirk Pranke
2015/02/23 18:58:16
No. This change is actually "wrong" in that it pre
| |
| 22 v8_random_seed = "314159265" | 22 v8_random_seed = "314159265" |
| 23 v8_toolset_for_d8 = "host" | 23 v8_toolset_for_d8 = "host" |
| 24 | 24 |
| 25 ############################################################################### | 25 ############################################################################### |
| 26 # Configurations | 26 # Configurations |
| 27 # | 27 # |
| 28 config("internal_config") { | 28 config("internal_config") { |
| 29 visibility = [ ":*" ] # Only targets in this file can depend on this. | 29 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 30 | 30 |
| 31 include_dirs = [ "." ] | 31 include_dirs = [ "." ] |
| (...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1554 sources += [ | 1554 sources += [ |
| 1555 "src/d8-debug.cc", | 1555 "src/d8-debug.cc", |
| 1556 "$target_gen_dir/d8-js.cc", | 1556 "$target_gen_dir/d8-js.cc", |
| 1557 ] | 1557 ] |
| 1558 } | 1558 } |
| 1559 if (v8_enable_i18n_support) { | 1559 if (v8_enable_i18n_support) { |
| 1560 deps += [ "//third_party/icu" ] | 1560 deps += [ "//third_party/icu" ] |
| 1561 } | 1561 } |
| 1562 } | 1562 } |
| 1563 } | 1563 } |
| OLD | NEW |