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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 "src/objects-visiting.cc", | 671 "src/objects-visiting.cc", |
672 "src/objects-visiting.h", | 672 "src/objects-visiting.h", |
673 "src/objects.cc", | 673 "src/objects.cc", |
674 "src/objects.h", | 674 "src/objects.h", |
675 "src/optimizing-compiler-thread.cc", | 675 "src/optimizing-compiler-thread.cc", |
676 "src/optimizing-compiler-thread.h", | 676 "src/optimizing-compiler-thread.h", |
677 "src/ostreams.cc", | 677 "src/ostreams.cc", |
678 "src/ostreams.h", | 678 "src/ostreams.h", |
679 "src/parser.cc", | 679 "src/parser.cc", |
680 "src/parser.h", | 680 "src/parser.h", |
| 681 "src/perf-jit.cc", |
| 682 "src/perf-jit.h", |
681 "src/preparse-data-format.h", | 683 "src/preparse-data-format.h", |
682 "src/preparse-data.cc", | 684 "src/preparse-data.cc", |
683 "src/preparse-data.h", | 685 "src/preparse-data.h", |
684 "src/preparser.cc", | 686 "src/preparser.cc", |
685 "src/preparser.h", | 687 "src/preparser.h", |
686 "src/prettyprinter.cc", | 688 "src/prettyprinter.cc", |
687 "src/prettyprinter.h", | 689 "src/prettyprinter.h", |
688 "src/profile-generator-inl.h", | 690 "src/profile-generator-inl.h", |
689 "src/profile-generator.cc", | 691 "src/profile-generator.cc", |
690 "src/profile-generator.h", | 692 "src/profile-generator.h", |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1160 deps = [ | 1162 deps = [ |
1161 ":v8_base", | 1163 ":v8_base", |
1162 ":v8_nosnapshot", | 1164 ":v8_nosnapshot", |
1163 ] | 1165 ] |
1164 } | 1166 } |
1165 | 1167 |
1166 direct_dependent_configs = [ ":external_config" ] | 1168 direct_dependent_configs = [ ":external_config" ] |
1167 } | 1169 } |
1168 | 1170 |
1169 } | 1171 } |
OLD | NEW |