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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 "src/extensions/gc-extension.cc", | 634 "src/extensions/gc-extension.cc", |
635 "src/extensions/gc-extension.h", | 635 "src/extensions/gc-extension.h", |
636 "src/extensions/statistics-extension.cc", | 636 "src/extensions/statistics-extension.cc", |
637 "src/extensions/statistics-extension.h", | 637 "src/extensions/statistics-extension.h", |
638 "src/extensions/trigger-failure-extension.cc", | 638 "src/extensions/trigger-failure-extension.cc", |
639 "src/extensions/trigger-failure-extension.h", | 639 "src/extensions/trigger-failure-extension.h", |
640 "src/factory.cc", | 640 "src/factory.cc", |
641 "src/factory.h", | 641 "src/factory.h", |
642 "src/fast-dtoa.cc", | 642 "src/fast-dtoa.cc", |
643 "src/fast-dtoa.h", | 643 "src/fast-dtoa.h", |
644 "src/feedback-slots.h", | |
645 "src/field-index.h", | 644 "src/field-index.h", |
646 "src/field-index-inl.h", | 645 "src/field-index-inl.h", |
647 "src/fixed-dtoa.cc", | 646 "src/fixed-dtoa.cc", |
648 "src/fixed-dtoa.h", | 647 "src/fixed-dtoa.h", |
649 "src/flag-definitions.h", | 648 "src/flag-definitions.h", |
650 "src/flags.cc", | 649 "src/flags.cc", |
651 "src/flags.h", | 650 "src/flags.h", |
652 "src/frames-inl.h", | 651 "src/frames-inl.h", |
653 "src/frames.cc", | 652 "src/frames.cc", |
654 "src/frames.h", | 653 "src/frames.h", |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
910 "src/typing.cc", | 909 "src/typing.cc", |
911 "src/typing.h", | 910 "src/typing.h", |
912 "src/unbound-queue-inl.h", | 911 "src/unbound-queue-inl.h", |
913 "src/unbound-queue.h", | 912 "src/unbound-queue.h", |
914 "src/unicode-inl.h", | 913 "src/unicode-inl.h", |
915 "src/unicode.cc", | 914 "src/unicode.cc", |
916 "src/unicode.h", | 915 "src/unicode.h", |
917 "src/unicode-decoder.cc", | 916 "src/unicode-decoder.cc", |
918 "src/unicode-decoder.h", | 917 "src/unicode-decoder.h", |
919 "src/unique.h", | 918 "src/unique.h", |
920 "src/uri.h", | |
921 "src/utils-inl.h", | 919 "src/utils-inl.h", |
922 "src/utils.cc", | 920 "src/utils.cc", |
923 "src/utils.h", | 921 "src/utils.h", |
924 "src/v8.cc", | 922 "src/v8.cc", |
925 "src/v8.h", | 923 "src/v8.h", |
926 "src/v8memory.h", | 924 "src/v8memory.h", |
927 "src/v8threads.cc", | 925 "src/v8threads.cc", |
928 "src/v8threads.h", | 926 "src/v8threads.h", |
929 "src/variables.cc", | 927 "src/variables.cc", |
930 "src/variables.h", | 928 "src/variables.h", |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1447 deps = [ | 1445 deps = [ |
1448 ":v8_base", | 1446 ":v8_base", |
1449 ":v8_nosnapshot", | 1447 ":v8_nosnapshot", |
1450 ] | 1448 ] |
1451 } | 1449 } |
1452 | 1450 |
1453 direct_dependent_configs = [ ":external_config" ] | 1451 direct_dependent_configs = [ ":external_config" ] |
1454 } | 1452 } |
1455 | 1453 |
1456 } | 1454 } |
OLD | NEW |