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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 "src/lithium-codegen.h", | 567 "src/lithium-codegen.h", |
568 "src/lithium.cc", | 568 "src/lithium.cc", |
569 "src/lithium.h", | 569 "src/lithium.h", |
570 "src/liveedit.cc", | 570 "src/liveedit.cc", |
571 "src/liveedit.h", | 571 "src/liveedit.h", |
572 "src/log-inl.h", | 572 "src/log-inl.h", |
573 "src/log-utils.cc", | 573 "src/log-utils.cc", |
574 "src/log-utils.h", | 574 "src/log-utils.h", |
575 "src/log.cc", | 575 "src/log.cc", |
576 "src/log.h", | 576 "src/log.h", |
| 577 "src/lookup.cc", |
| 578 "src/lookup.h", |
577 "src/macro-assembler.h", | 579 "src/macro-assembler.h", |
578 "src/mark-compact.cc", | 580 "src/mark-compact.cc", |
579 "src/mark-compact.h", | 581 "src/mark-compact.h", |
580 "src/messages.cc", | 582 "src/messages.cc", |
581 "src/messages.h", | 583 "src/messages.h", |
582 "src/msan.h", | 584 "src/msan.h", |
583 "src/natives.h", | 585 "src/natives.h", |
584 "src/objects-debug.cc", | 586 "src/objects-debug.cc", |
585 "src/objects-inl.h", | 587 "src/objects-inl.h", |
586 "src/objects-printer.cc", | 588 "src/objects-printer.cc", |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1053 deps = [ | 1055 deps = [ |
1054 ":v8_base", | 1056 ":v8_base", |
1055 ":v8_nosnapshot", | 1057 ":v8_nosnapshot", |
1056 ] | 1058 ] |
1057 } | 1059 } |
1058 | 1060 |
1059 direct_dependent_configs = [ ":external_config" ] | 1061 direct_dependent_configs = [ ":external_config" ] |
1060 } | 1062 } |
1061 | 1063 |
1062 } | 1064 } |
OLD | NEW |