| 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 "src/preparser.cc", | 679 "src/preparser.cc", |
| 680 "src/preparser.h", | 680 "src/preparser.h", |
| 681 "src/prettyprinter.cc", | 681 "src/prettyprinter.cc", |
| 682 "src/prettyprinter.h", | 682 "src/prettyprinter.h", |
| 683 "src/profile-generator-inl.h", | 683 "src/profile-generator-inl.h", |
| 684 "src/profile-generator.cc", | 684 "src/profile-generator.cc", |
| 685 "src/profile-generator.h", | 685 "src/profile-generator.h", |
| 686 "src/property-details.h", | 686 "src/property-details.h", |
| 687 "src/property.cc", | 687 "src/property.cc", |
| 688 "src/property.h", | 688 "src/property.h", |
| 689 "src/prototype.h", |
| 689 "src/regexp-macro-assembler-irregexp-inl.h", | 690 "src/regexp-macro-assembler-irregexp-inl.h", |
| 690 "src/regexp-macro-assembler-irregexp.cc", | 691 "src/regexp-macro-assembler-irregexp.cc", |
| 691 "src/regexp-macro-assembler-irregexp.h", | 692 "src/regexp-macro-assembler-irregexp.h", |
| 692 "src/regexp-macro-assembler-tracer.cc", | 693 "src/regexp-macro-assembler-tracer.cc", |
| 693 "src/regexp-macro-assembler-tracer.h", | 694 "src/regexp-macro-assembler-tracer.h", |
| 694 "src/regexp-macro-assembler.cc", | 695 "src/regexp-macro-assembler.cc", |
| 695 "src/regexp-macro-assembler.h", | 696 "src/regexp-macro-assembler.h", |
| 696 "src/regexp-stack.cc", | 697 "src/regexp-stack.cc", |
| 697 "src/regexp-stack.h", | 698 "src/regexp-stack.h", |
| 698 "src/rewriter.cc", | 699 "src/rewriter.cc", |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1176 deps = [ | 1177 deps = [ |
| 1177 ":v8_base", | 1178 ":v8_base", |
| 1178 ":v8_nosnapshot", | 1179 ":v8_nosnapshot", |
| 1179 ] | 1180 ] |
| 1180 } | 1181 } |
| 1181 | 1182 |
| 1182 direct_dependent_configs = [ ":external_config" ] | 1183 direct_dependent_configs = [ ":external_config" ] |
| 1183 } | 1184 } |
| 1184 | 1185 |
| 1185 } | 1186 } |
| OLD | NEW |