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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
639 "src/heap/incremental-marking.h", | 639 "src/heap/incremental-marking.h", |
640 "src/heap/mark-compact-inl.h", | 640 "src/heap/mark-compact-inl.h", |
641 "src/heap/mark-compact.cc", | 641 "src/heap/mark-compact.cc", |
642 "src/heap/mark-compact.h", | 642 "src/heap/mark-compact.h", |
643 "src/heap/objects-visiting-inl.h", | 643 "src/heap/objects-visiting-inl.h", |
644 "src/heap/objects-visiting.cc", | 644 "src/heap/objects-visiting.cc", |
645 "src/heap/objects-visiting.h", | 645 "src/heap/objects-visiting.h", |
646 "src/heap/spaces-inl.h", | 646 "src/heap/spaces-inl.h", |
647 "src/heap/spaces.cc", | 647 "src/heap/spaces.cc", |
648 "src/heap/spaces.h", | 648 "src/heap/spaces.h", |
| 649 "src/heap/store-buffer-inl.h", |
| 650 "src/heap/store-buffer.cc", |
| 651 "src/heap/store-buffer.h", |
649 "src/heap/sweeper-thread.h", | 652 "src/heap/sweeper-thread.h", |
650 "src/heap/sweeper-thread.cc", | 653 "src/heap/sweeper-thread.cc", |
651 "src/hydrogen-alias-analysis.h", | 654 "src/hydrogen-alias-analysis.h", |
652 "src/hydrogen-bce.cc", | 655 "src/hydrogen-bce.cc", |
653 "src/hydrogen-bce.h", | 656 "src/hydrogen-bce.h", |
654 "src/hydrogen-bch.cc", | 657 "src/hydrogen-bch.cc", |
655 "src/hydrogen-bch.h", | 658 "src/hydrogen-bch.h", |
656 "src/hydrogen-canonicalize.cc", | 659 "src/hydrogen-canonicalize.cc", |
657 "src/hydrogen-canonicalize.h", | 660 "src/hydrogen-canonicalize.h", |
658 "src/hydrogen-check-elimination.cc", | 661 "src/hydrogen-check-elimination.cc", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 "src/scopeinfo.h", | 799 "src/scopeinfo.h", |
797 "src/scopes.cc", | 800 "src/scopes.cc", |
798 "src/scopes.h", | 801 "src/scopes.h", |
799 "src/serialize.cc", | 802 "src/serialize.cc", |
800 "src/serialize.h", | 803 "src/serialize.h", |
801 "src/small-pointer-list.h", | 804 "src/small-pointer-list.h", |
802 "src/smart-pointers.h", | 805 "src/smart-pointers.h", |
803 "src/snapshot-source-sink.cc", | 806 "src/snapshot-source-sink.cc", |
804 "src/snapshot-source-sink.h", | 807 "src/snapshot-source-sink.h", |
805 "src/snapshot.h", | 808 "src/snapshot.h", |
806 "src/store-buffer-inl.h", | |
807 "src/store-buffer.cc", | |
808 "src/store-buffer.h", | |
809 "src/string-search.cc", | 809 "src/string-search.cc", |
810 "src/string-search.h", | 810 "src/string-search.h", |
811 "src/string-stream.cc", | 811 "src/string-stream.cc", |
812 "src/string-stream.h", | 812 "src/string-stream.h", |
813 "src/strtod.cc", | 813 "src/strtod.cc", |
814 "src/strtod.h", | 814 "src/strtod.h", |
815 "src/stub-cache.cc", | 815 "src/stub-cache.cc", |
816 "src/stub-cache.h", | 816 "src/stub-cache.h", |
817 "src/token.cc", | 817 "src/token.cc", |
818 "src/token.h", | 818 "src/token.h", |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1272 deps = [ | 1272 deps = [ |
1273 ":v8_base", | 1273 ":v8_base", |
1274 ":v8_nosnapshot", | 1274 ":v8_nosnapshot", |
1275 ] | 1275 ] |
1276 } | 1276 } |
1277 | 1277 |
1278 direct_dependent_configs = [ ":external_config" ] | 1278 direct_dependent_configs = [ ":external_config" ] |
1279 } | 1279 } |
1280 | 1280 |
1281 } | 1281 } |
OLD | NEW |