| 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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 "src/objects-visiting.cc", | 658 "src/objects-visiting.cc", |
| 659 "src/objects-visiting.h", | 659 "src/objects-visiting.h", |
| 660 "src/objects.cc", | 660 "src/objects.cc", |
| 661 "src/objects.h", | 661 "src/objects.h", |
| 662 "src/optimizing-compiler-thread.cc", | 662 "src/optimizing-compiler-thread.cc", |
| 663 "src/optimizing-compiler-thread.h", | 663 "src/optimizing-compiler-thread.h", |
| 664 "src/ostreams.cc", | 664 "src/ostreams.cc", |
| 665 "src/ostreams.h", | 665 "src/ostreams.h", |
| 666 "src/parser.cc", | 666 "src/parser.cc", |
| 667 "src/parser.h", | 667 "src/parser.h", |
| 668 "src/perf-jit.cc", |
| 669 "src/perf-jit.h", |
| 668 "src/preparse-data-format.h", | 670 "src/preparse-data-format.h", |
| 669 "src/preparse-data.cc", | 671 "src/preparse-data.cc", |
| 670 "src/preparse-data.h", | 672 "src/preparse-data.h", |
| 671 "src/preparser.cc", | 673 "src/preparser.cc", |
| 672 "src/preparser.h", | 674 "src/preparser.h", |
| 673 "src/prettyprinter.cc", | 675 "src/prettyprinter.cc", |
| 674 "src/prettyprinter.h", | 676 "src/prettyprinter.h", |
| 675 "src/profile-generator-inl.h", | 677 "src/profile-generator-inl.h", |
| 676 "src/profile-generator.cc", | 678 "src/profile-generator.cc", |
| 677 "src/profile-generator.h", | 679 "src/profile-generator.h", |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1168 deps = [ | 1170 deps = [ |
| 1169 ":v8_base", | 1171 ":v8_base", |
| 1170 ":v8_nosnapshot", | 1172 ":v8_nosnapshot", |
| 1171 ] | 1173 ] |
| 1172 } | 1174 } |
| 1173 | 1175 |
| 1174 direct_dependent_configs = [ ":external_config" ] | 1176 direct_dependent_configs = [ ":external_config" ] |
| 1175 } | 1177 } |
| 1176 | 1178 |
| 1177 } | 1179 } |
| OLD | NEW |