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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 "src/heap/gc-tracer.cc", | 649 "src/heap/gc-tracer.cc", |
650 "src/heap/gc-tracer.h", | 650 "src/heap/gc-tracer.h", |
651 "src/heap/heap-inl.h", | 651 "src/heap/heap-inl.h", |
652 "src/heap/heap.cc", | 652 "src/heap/heap.cc", |
653 "src/heap/heap.h", | 653 "src/heap/heap.h", |
654 "src/heap/incremental-marking.cc", | 654 "src/heap/incremental-marking.cc", |
655 "src/heap/incremental-marking.h", | 655 "src/heap/incremental-marking.h", |
656 "src/heap/mark-compact-inl.h", | 656 "src/heap/mark-compact-inl.h", |
657 "src/heap/mark-compact.cc", | 657 "src/heap/mark-compact.cc", |
658 "src/heap/mark-compact.h", | 658 "src/heap/mark-compact.h", |
| 659 "src/heap/objects-visiting-inl.h", |
| 660 "src/heap/objects-visiting.cc", |
| 661 "src/heap/objects-visiting.h", |
659 "src/heap/spaces-inl.h", | 662 "src/heap/spaces-inl.h", |
660 "src/heap/spaces.cc", | 663 "src/heap/spaces.cc", |
661 "src/heap/spaces.h", | 664 "src/heap/spaces.h", |
662 "src/heap/sweeper-thread.h", | 665 "src/heap/sweeper-thread.h", |
663 "src/heap/sweeper-thread.cc", | 666 "src/heap/sweeper-thread.cc", |
664 "src/hydrogen-alias-analysis.h", | 667 "src/hydrogen-alias-analysis.h", |
665 "src/hydrogen-bce.cc", | 668 "src/hydrogen-bce.cc", |
666 "src/hydrogen-bce.h", | 669 "src/hydrogen-bce.h", |
667 "src/hydrogen-bch.cc", | 670 "src/hydrogen-bch.cc", |
668 "src/hydrogen-bch.h", | 671 "src/hydrogen-bch.h", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
751 "src/lookup.cc", | 754 "src/lookup.cc", |
752 "src/lookup.h", | 755 "src/lookup.h", |
753 "src/macro-assembler.h", | 756 "src/macro-assembler.h", |
754 "src/messages.cc", | 757 "src/messages.cc", |
755 "src/messages.h", | 758 "src/messages.h", |
756 "src/msan.h", | 759 "src/msan.h", |
757 "src/natives.h", | 760 "src/natives.h", |
758 "src/objects-debug.cc", | 761 "src/objects-debug.cc", |
759 "src/objects-inl.h", | 762 "src/objects-inl.h", |
760 "src/objects-printer.cc", | 763 "src/objects-printer.cc", |
761 "src/objects-visiting.cc", | |
762 "src/objects-visiting.h", | |
763 "src/objects.cc", | 764 "src/objects.cc", |
764 "src/objects.h", | 765 "src/objects.h", |
765 "src/optimizing-compiler-thread.cc", | 766 "src/optimizing-compiler-thread.cc", |
766 "src/optimizing-compiler-thread.h", | 767 "src/optimizing-compiler-thread.h", |
767 "src/ostreams.cc", | 768 "src/ostreams.cc", |
768 "src/ostreams.h", | 769 "src/ostreams.h", |
769 "src/parser.cc", | 770 "src/parser.cc", |
770 "src/parser.h", | 771 "src/parser.h", |
771 "src/perf-jit.cc", | 772 "src/perf-jit.cc", |
772 "src/perf-jit.h", | 773 "src/perf-jit.h", |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 deps = [ | 1286 deps = [ |
1286 ":v8_base", | 1287 ":v8_base", |
1287 ":v8_nosnapshot", | 1288 ":v8_nosnapshot", |
1288 ] | 1289 ] |
1289 } | 1290 } |
1290 | 1291 |
1291 direct_dependent_configs = [ ":external_config" ] | 1292 direct_dependent_configs = [ ":external_config" ] |
1292 } | 1293 } |
1293 | 1294 |
1294 } | 1295 } |
OLD | NEW |