| 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 "src/globals.h", | 621 "src/globals.h", |
| 622 "src/handles-inl.h", | 622 "src/handles-inl.h", |
| 623 "src/handles.cc", | 623 "src/handles.cc", |
| 624 "src/handles.h", | 624 "src/handles.h", |
| 625 "src/hashmap.h", | 625 "src/hashmap.h", |
| 626 "src/heap-profiler.cc", | 626 "src/heap-profiler.cc", |
| 627 "src/heap-profiler.h", | 627 "src/heap-profiler.h", |
| 628 "src/heap-snapshot-generator-inl.h", | 628 "src/heap-snapshot-generator-inl.h", |
| 629 "src/heap-snapshot-generator.cc", | 629 "src/heap-snapshot-generator.cc", |
| 630 "src/heap-snapshot-generator.h", | 630 "src/heap-snapshot-generator.h", |
| 631 "src/heap/gc-idle-time-handler.cc", |
| 632 "src/heap/gc-idle-time-handler.h", |
| 631 "src/heap/gc-tracer.cc", | 633 "src/heap/gc-tracer.cc", |
| 632 "src/heap/gc-tracer.h", | 634 "src/heap/gc-tracer.h", |
| 633 "src/heap/heap-inl.h", | 635 "src/heap/heap-inl.h", |
| 634 "src/heap/heap.cc", | 636 "src/heap/heap.cc", |
| 635 "src/heap/heap.h", | 637 "src/heap/heap.h", |
| 636 "src/heap/incremental-marking.cc", | 638 "src/heap/incremental-marking.cc", |
| 637 "src/heap/incremental-marking.h", | 639 "src/heap/incremental-marking.h", |
| 638 "src/heap/mark-compact-inl.h", | 640 "src/heap/mark-compact-inl.h", |
| 639 "src/heap/mark-compact.cc", | 641 "src/heap/mark-compact.cc", |
| 640 "src/heap/mark-compact.h", | 642 "src/heap/mark-compact.h", |
| (...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1271 deps = [ | 1273 deps = [ |
| 1272 ":v8_base", | 1274 ":v8_base", |
| 1273 ":v8_nosnapshot", | 1275 ":v8_nosnapshot", |
| 1274 ] | 1276 ] |
| 1275 } | 1277 } |
| 1276 | 1278 |
| 1277 direct_dependent_configs = [ ":external_config" ] | 1279 direct_dependent_configs = [ ":external_config" ] |
| 1278 } | 1280 } |
| 1279 | 1281 |
| 1280 } | 1282 } |
| OLD | NEW |