| 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 |
| (...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 "src/regexp-macro-assembler-tracer.cc", | 817 "src/regexp-macro-assembler-tracer.cc", |
| 818 "src/regexp-macro-assembler-tracer.h", | 818 "src/regexp-macro-assembler-tracer.h", |
| 819 "src/regexp-macro-assembler.cc", | 819 "src/regexp-macro-assembler.cc", |
| 820 "src/regexp-macro-assembler.h", | 820 "src/regexp-macro-assembler.h", |
| 821 "src/regexp-stack.cc", | 821 "src/regexp-stack.cc", |
| 822 "src/regexp-stack.h", | 822 "src/regexp-stack.h", |
| 823 "src/rewriter.cc", | 823 "src/rewriter.cc", |
| 824 "src/rewriter.h", | 824 "src/rewriter.h", |
| 825 "src/runtime-profiler.cc", | 825 "src/runtime-profiler.cc", |
| 826 "src/runtime-profiler.h", | 826 "src/runtime-profiler.h", |
| 827 "src/runtime/runtime-classes.cc", |
| 827 "src/runtime/runtime-collections.cc", | 828 "src/runtime/runtime-collections.cc", |
| 828 "src/runtime/runtime-compiler.cc", | 829 "src/runtime/runtime-compiler.cc", |
| 829 "src/runtime/runtime-i18n.cc", | 830 "src/runtime/runtime-i18n.cc", |
| 830 "src/runtime/runtime-date.cc", | 831 "src/runtime/runtime-date.cc", |
| 831 "src/runtime/runtime-debug.cc", | 832 "src/runtime/runtime-debug.cc", |
| 832 "src/runtime/runtime-function.cc", | 833 "src/runtime/runtime-function.cc", |
| 833 "src/runtime/runtime-generator.cc", | 834 "src/runtime/runtime-generator.cc", |
| 834 "src/runtime/runtime-json.cc", | 835 "src/runtime/runtime-json.cc", |
| 835 "src/runtime/runtime-literals.cc", | 836 "src/runtime/runtime-literals.cc", |
| 836 "src/runtime/runtime-liveedit.cc", | 837 "src/runtime/runtime-liveedit.cc", |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 deps = [ | 1422 deps = [ |
| 1422 ":v8_base", | 1423 ":v8_base", |
| 1423 ":v8_nosnapshot", | 1424 ":v8_nosnapshot", |
| 1424 ] | 1425 ] |
| 1425 } | 1426 } |
| 1426 | 1427 |
| 1427 direct_dependent_configs = [ ":external_config" ] | 1428 direct_dependent_configs = [ ":external_config" ] |
| 1428 } | 1429 } |
| 1429 | 1430 |
| 1430 } | 1431 } |
| OLD | NEW |