| 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", | |
| 683 "src/preparse-data-format.h", | 681 "src/preparse-data-format.h", |
| 684 "src/preparse-data.cc", | 682 "src/preparse-data.cc", |
| 685 "src/preparse-data.h", | 683 "src/preparse-data.h", |
| 686 "src/preparser.cc", | 684 "src/preparser.cc", |
| 687 "src/preparser.h", | 685 "src/preparser.h", |
| 688 "src/prettyprinter.cc", | 686 "src/prettyprinter.cc", |
| 689 "src/prettyprinter.h", | 687 "src/prettyprinter.h", |
| 690 "src/profile-generator-inl.h", | 688 "src/profile-generator-inl.h", |
| 691 "src/profile-generator.cc", | 689 "src/profile-generator.cc", |
| 692 "src/profile-generator.h", | 690 "src/profile-generator.h", |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1162 deps = [ | 1160 deps = [ |
| 1163 ":v8_base", | 1161 ":v8_base", |
| 1164 ":v8_nosnapshot", | 1162 ":v8_nosnapshot", |
| 1165 ] | 1163 ] |
| 1166 } | 1164 } |
| 1167 | 1165 |
| 1168 direct_dependent_configs = [ ":external_config" ] | 1166 direct_dependent_configs = [ ":external_config" ] |
| 1169 } | 1167 } |
| 1170 | 1168 |
| 1171 } | 1169 } |
| OLD | NEW |