| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 "src/interface-descriptors.h", | 775 "src/interface-descriptors.h", |
| 776 "src/interpreter-irregexp.cc", | 776 "src/interpreter-irregexp.cc", |
| 777 "src/interpreter-irregexp.h", | 777 "src/interpreter-irregexp.h", |
| 778 "src/isolate.cc", | 778 "src/isolate.cc", |
| 779 "src/isolate.h", | 779 "src/isolate.h", |
| 780 "src/json-parser.h", | 780 "src/json-parser.h", |
| 781 "src/json-stringifier.h", | 781 "src/json-stringifier.h", |
| 782 "src/jsregexp-inl.h", | 782 "src/jsregexp-inl.h", |
| 783 "src/jsregexp.cc", | 783 "src/jsregexp.cc", |
| 784 "src/jsregexp.h", | 784 "src/jsregexp.h", |
| 785 "src/layout-descriptor-inl.h", | |
| 786 "src/layout-descriptor.cc", | |
| 787 "src/layout-descriptor.h", | |
| 788 "src/list-inl.h", | 785 "src/list-inl.h", |
| 789 "src/list.h", | 786 "src/list.h", |
| 790 "src/lithium-allocator-inl.h", | 787 "src/lithium-allocator-inl.h", |
| 791 "src/lithium-allocator.cc", | 788 "src/lithium-allocator.cc", |
| 792 "src/lithium-allocator.h", | 789 "src/lithium-allocator.h", |
| 793 "src/lithium-codegen.cc", | 790 "src/lithium-codegen.cc", |
| 794 "src/lithium-codegen.h", | 791 "src/lithium-codegen.h", |
| 795 "src/lithium.cc", | 792 "src/lithium.cc", |
| 796 "src/lithium.h", | 793 "src/lithium.h", |
| 797 "src/liveedit.cc", | 794 "src/liveedit.cc", |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1457 deps = [ | 1454 deps = [ |
| 1458 ":v8_base", | 1455 ":v8_base", |
| 1459 ":v8_nosnapshot", | 1456 ":v8_nosnapshot", |
| 1460 ] | 1457 ] |
| 1461 } | 1458 } |
| 1462 | 1459 |
| 1463 direct_dependent_configs = [ ":external_config" ] | 1460 direct_dependent_configs = [ ":external_config" ] |
| 1464 } | 1461 } |
| 1465 | 1462 |
| 1466 } | 1463 } |
| OLD | NEW |