| 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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 "src/regexp-stack.h", | 823 "src/regexp-stack.h", |
| 824 "src/rewriter.cc", | 824 "src/rewriter.cc", |
| 825 "src/rewriter.h", | 825 "src/rewriter.h", |
| 826 "src/runtime-profiler.cc", | 826 "src/runtime-profiler.cc", |
| 827 "src/runtime-profiler.h", | 827 "src/runtime-profiler.h", |
| 828 "src/runtime/runtime-collections.cc", | 828 "src/runtime/runtime-collections.cc", |
| 829 "src/runtime/runtime-compiler.cc", | 829 "src/runtime/runtime-compiler.cc", |
| 830 "src/runtime/runtime-i18n.cc", | 830 "src/runtime/runtime-i18n.cc", |
| 831 "src/runtime/runtime-date.cc", | 831 "src/runtime/runtime-date.cc", |
| 832 "src/runtime/runtime-debug.cc", | 832 "src/runtime/runtime-debug.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", |
| 836 "src/runtime/runtime-literals.cc", |
| 835 "src/runtime/runtime-liveedit.cc", | 837 "src/runtime/runtime-liveedit.cc", |
| 836 "src/runtime/runtime-maths.cc", | 838 "src/runtime/runtime-maths.cc", |
| 837 "src/runtime/runtime-numbers.cc", | 839 "src/runtime/runtime-numbers.cc", |
| 840 "src/runtime/runtime-observe.cc", |
| 841 "src/runtime/runtime-proxy.cc", |
| 838 "src/runtime/runtime-regexp.cc", | 842 "src/runtime/runtime-regexp.cc", |
| 843 "src/runtime/runtime-scopes.cc", |
| 839 "src/runtime/runtime-strings.cc", | 844 "src/runtime/runtime-strings.cc", |
| 845 "src/runtime/runtime-symbol.cc", |
| 840 "src/runtime/runtime-test.cc", | 846 "src/runtime/runtime-test.cc", |
| 841 "src/runtime/runtime-typedarray.cc", | 847 "src/runtime/runtime-typedarray.cc", |
| 842 "src/runtime/runtime-uri.cc", | 848 "src/runtime/runtime-uri.cc", |
| 843 "src/runtime/runtime-utils.h", | 849 "src/runtime/runtime-utils.h", |
| 844 "src/runtime/runtime.cc", | 850 "src/runtime/runtime.cc", |
| 845 "src/runtime/runtime.h", | 851 "src/runtime/runtime.h", |
| 846 "src/runtime/string-builder.h", | 852 "src/runtime/string-builder.h", |
| 847 "src/safepoint-table.cc", | 853 "src/safepoint-table.cc", |
| 848 "src/safepoint-table.h", | 854 "src/safepoint-table.h", |
| 849 "src/sampler.cc", | 855 "src/sampler.cc", |
| (...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1416 deps = [ | 1422 deps = [ |
| 1417 ":v8_base", | 1423 ":v8_base", |
| 1418 ":v8_nosnapshot", | 1424 ":v8_nosnapshot", |
| 1419 ] | 1425 ] |
| 1420 } | 1426 } |
| 1421 | 1427 |
| 1422 direct_dependent_configs = [ ":external_config" ] | 1428 direct_dependent_configs = [ ":external_config" ] |
| 1423 } | 1429 } |
| 1424 | 1430 |
| 1425 } | 1431 } |
| OLD | NEW |