Chromium Code Reviews| 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.cc", | |
|
Michael Starzinger
2014/08/06 11:35:29
nit: Can we add the "-inl.h" file as well?
Hannes Payer (out of office)
2014/08/07 11:12:03
Done.
| |
| 660 "src/heap/objects-visiting.h", | |
| 659 "src/heap/spaces-inl.h", | 661 "src/heap/spaces-inl.h", |
| 660 "src/heap/spaces.cc", | 662 "src/heap/spaces.cc", |
| 661 "src/heap/spaces.h", | 663 "src/heap/spaces.h", |
| 662 "src/heap/sweeper-thread.h", | 664 "src/heap/sweeper-thread.h", |
| 663 "src/heap/sweeper-thread.cc", | 665 "src/heap/sweeper-thread.cc", |
| 664 "src/hydrogen-alias-analysis.h", | 666 "src/hydrogen-alias-analysis.h", |
| 665 "src/hydrogen-bce.cc", | 667 "src/hydrogen-bce.cc", |
| 666 "src/hydrogen-bce.h", | 668 "src/hydrogen-bce.h", |
| 667 "src/hydrogen-bch.cc", | 669 "src/hydrogen-bch.cc", |
| 668 "src/hydrogen-bch.h", | 670 "src/hydrogen-bch.h", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 751 "src/lookup.cc", | 753 "src/lookup.cc", |
| 752 "src/lookup.h", | 754 "src/lookup.h", |
| 753 "src/macro-assembler.h", | 755 "src/macro-assembler.h", |
| 754 "src/messages.cc", | 756 "src/messages.cc", |
| 755 "src/messages.h", | 757 "src/messages.h", |
| 756 "src/msan.h", | 758 "src/msan.h", |
| 757 "src/natives.h", | 759 "src/natives.h", |
| 758 "src/objects-debug.cc", | 760 "src/objects-debug.cc", |
| 759 "src/objects-inl.h", | 761 "src/objects-inl.h", |
| 760 "src/objects-printer.cc", | 762 "src/objects-printer.cc", |
| 761 "src/objects-visiting.cc", | |
| 762 "src/objects-visiting.h", | |
| 763 "src/objects.cc", | 763 "src/objects.cc", |
| 764 "src/objects.h", | 764 "src/objects.h", |
| 765 "src/optimizing-compiler-thread.cc", | 765 "src/optimizing-compiler-thread.cc", |
| 766 "src/optimizing-compiler-thread.h", | 766 "src/optimizing-compiler-thread.h", |
| 767 "src/ostreams.cc", | 767 "src/ostreams.cc", |
| 768 "src/ostreams.h", | 768 "src/ostreams.h", |
| 769 "src/parser.cc", | 769 "src/parser.cc", |
| 770 "src/parser.h", | 770 "src/parser.h", |
| 771 "src/perf-jit.cc", | 771 "src/perf-jit.cc", |
| 772 "src/perf-jit.h", | 772 "src/perf-jit.h", |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1285 deps = [ | 1285 deps = [ |
| 1286 ":v8_base", | 1286 ":v8_base", |
| 1287 ":v8_nosnapshot", | 1287 ":v8_nosnapshot", |
| 1288 ] | 1288 ] |
| 1289 } | 1289 } |
| 1290 | 1290 |
| 1291 direct_dependent_configs = [ ":external_config" ] | 1291 direct_dependent_configs = [ ":external_config" ] |
| 1292 } | 1292 } |
| 1293 | 1293 |
| 1294 } | 1294 } |
| OLD | NEW |