| 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 # TODO(jochen): These will need to be user-settable to support standalone V8 | 5 # TODO(jochen): These will need to be user-settable to support standalone V8 |
| 6 # builds. | 6 # builds. |
| 7 v8_compress_startup_data = "off" | 7 v8_compress_startup_data = "off" |
| 8 v8_deprecation_warnings = false | 8 v8_deprecation_warnings = false |
| 9 v8_enable_disassembler = false | 9 v8_enable_disassembler = false |
| 10 v8_enable_gdbjit = false | 10 v8_enable_gdbjit = false |
| 11 v8_enable_handle_zapping = true | 11 v8_enable_handle_zapping = true |
| 12 v8_enable_i18n_support = true | 12 v8_enable_i18n_support = true |
| 13 v8_enable_verify_heap = false | 13 v8_enable_verify_heap = false |
| 14 v8_interpreted_regexp = false | 14 v8_interpreted_regexp = false |
| 15 v8_object_print = false | 15 v8_object_print = false |
| 16 v8_postmortem_support = false | 16 #v8_postmortem_support = false |
| 17 v8_use_default_platform = true | 17 v8_use_default_platform = true |
| 18 v8_use_snapshot = true | 18 #v8_use_snapshot = true |
| 19 | 19 |
| 20 if (is_debug) { | 20 if (is_debug) { |
| 21 v8_enable_extra_checks = true | 21 v8_enable_extra_checks = true |
| 22 } else { | 22 } else { |
| 23 v8_enable_extra_checks = false | 23 v8_enable_extra_checks = false |
| 24 } | 24 } |
| 25 | 25 |
| 26 # TODO(jochen): Add support for want_seperate_host_toolset. | 26 # TODO(jochen): Add support for want_seperate_host_toolset. |
| 27 # TODO(jochen): Add toolchain.gypi support. | 27 # TODO(jochen): Add toolchain.gypi support. |
| 28 | 28 |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 ":v8_base", | 865 ":v8_base", |
| 866 ":v8_nosnapshot", | 866 ":v8_nosnapshot", |
| 867 ] | 867 ] |
| 868 | 868 |
| 869 if (v8_compress_startup_data == "bz2") { | 869 if (v8_compress_startup_data == "bz2") { |
| 870 libs = [ "bz2" ] | 870 libs = [ "bz2" ] |
| 871 } | 871 } |
| 872 } | 872 } |
| 873 | 873 |
| 874 } | 874 } |
| OLD | NEW |