| 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 "src/preparser.cc", | 610 "src/preparser.cc", |
| 611 "src/preparser.h", | 611 "src/preparser.h", |
| 612 "src/prettyprinter.cc", | 612 "src/prettyprinter.cc", |
| 613 "src/prettyprinter.h", | 613 "src/prettyprinter.h", |
| 614 "src/profile-generator-inl.h", | 614 "src/profile-generator-inl.h", |
| 615 "src/profile-generator.cc", | 615 "src/profile-generator.cc", |
| 616 "src/profile-generator.h", | 616 "src/profile-generator.h", |
| 617 "src/property-details.h", | 617 "src/property-details.h", |
| 618 "src/property.cc", | 618 "src/property.cc", |
| 619 "src/property.h", | 619 "src/property.h", |
| 620 "src/prototype-iterator.h", |
| 620 "src/regexp-macro-assembler-irregexp-inl.h", | 621 "src/regexp-macro-assembler-irregexp-inl.h", |
| 621 "src/regexp-macro-assembler-irregexp.cc", | 622 "src/regexp-macro-assembler-irregexp.cc", |
| 622 "src/regexp-macro-assembler-irregexp.h", | 623 "src/regexp-macro-assembler-irregexp.h", |
| 623 "src/regexp-macro-assembler-tracer.cc", | 624 "src/regexp-macro-assembler-tracer.cc", |
| 624 "src/regexp-macro-assembler-tracer.h", | 625 "src/regexp-macro-assembler-tracer.h", |
| 625 "src/regexp-macro-assembler.cc", | 626 "src/regexp-macro-assembler.cc", |
| 626 "src/regexp-macro-assembler.h", | 627 "src/regexp-macro-assembler.h", |
| 627 "src/regexp-stack.cc", | 628 "src/regexp-stack.cc", |
| 628 "src/regexp-stack.h", | 629 "src/regexp-stack.h", |
| 629 "src/rewriter.cc", | 630 "src/rewriter.cc", |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1059 deps = [ | 1060 deps = [ |
| 1060 ":v8_base", | 1061 ":v8_base", |
| 1061 ":v8_nosnapshot", | 1062 ":v8_nosnapshot", |
| 1062 ] | 1063 ] |
| 1063 } | 1064 } |
| 1064 | 1065 |
| 1065 direct_dependent_configs = [ ":external_config" ] | 1066 direct_dependent_configs = [ ":external_config" ] |
| 1066 } | 1067 } |
| 1067 | 1068 |
| 1068 } | 1069 } |
| OLD | NEW |