| 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 = false |
| 18 v8_use_snapshot = true | 18 v8_use_snapshot = true |
| 19 v8_use_external_startup_data = false | 19 v8_use_external_startup_data = false |
| 20 v8_enable_extra_checks = is_debug | 20 v8_enable_extra_checks = is_debug |
| 21 v8_target_arch = cpu_arch | 21 v8_target_arch = cpu_arch |
| 22 v8_random_seed = "314159265" | 22 v8_random_seed = "314159265" |
| 23 | 23 |
| 24 | 24 |
| 25 ############################################################################### | 25 ############################################################################### |
| 26 # Configurations | 26 # Configurations |
| 27 # | 27 # |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 ":generate_trig_table", | 338 ":generate_trig_table", |
| 339 ":run_mksnapshot", | 339 ":run_mksnapshot", |
| 340 ":v8_base", | 340 ":v8_base", |
| 341 ] | 341 ] |
| 342 | 342 |
| 343 sources = [ | 343 sources = [ |
| 344 "$target_gen_dir/libraries.cc", | 344 "$target_gen_dir/libraries.cc", |
| 345 "$target_gen_dir/experimental-libraries.cc", | 345 "$target_gen_dir/experimental-libraries.cc", |
| 346 "$target_gen_dir/trig-table.cc", | 346 "$target_gen_dir/trig-table.cc", |
| 347 "$target_gen_dir/snapshot.cc", | 347 "$target_gen_dir/snapshot.cc", |
| 348 "src/snapshot-common.cc", |
| 348 ] | 349 ] |
| 349 | 350 |
| 350 configs -= [ "//build/config/compiler:chromium_code" ] | 351 configs -= [ "//build/config/compiler:chromium_code" ] |
| 351 configs += [ "//build/config/compiler:no_chromium_code" ] | 352 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 352 configs += [ ":internal_config", ":features", ":toolchain" ] | 353 configs += [ ":internal_config", ":features", ":toolchain" ] |
| 353 } | 354 } |
| 354 | 355 |
| 355 source_set("v8_base") { | 356 source_set("v8_base") { |
| 356 visibility = ":*" # Only targets in this file can depend on this. | 357 visibility = ":*" # Only targets in this file can depend on this. |
| 357 | 358 |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 deps = [ | 1059 deps = [ |
| 1059 ":v8_base", | 1060 ":v8_base", |
| 1060 ":v8_nosnapshot", | 1061 ":v8_nosnapshot", |
| 1061 ] | 1062 ] |
| 1062 } | 1063 } |
| 1063 | 1064 |
| 1064 direct_dependent_configs = [ ":external_config" ] | 1065 direct_dependent_configs = [ ":external_config" ] |
| 1065 } | 1066 } |
| 1066 | 1067 |
| 1067 } | 1068 } |
| OLD | NEW |