| 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 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 "src/interface-descriptors.h", | 768 "src/interface-descriptors.h", |
| 769 "src/interpreter-irregexp.cc", | 769 "src/interpreter-irregexp.cc", |
| 770 "src/interpreter-irregexp.h", | 770 "src/interpreter-irregexp.h", |
| 771 "src/isolate.cc", | 771 "src/isolate.cc", |
| 772 "src/isolate.h", | 772 "src/isolate.h", |
| 773 "src/json-parser.h", | 773 "src/json-parser.h", |
| 774 "src/json-stringifier.h", | 774 "src/json-stringifier.h", |
| 775 "src/jsregexp-inl.h", | 775 "src/jsregexp-inl.h", |
| 776 "src/jsregexp.cc", | 776 "src/jsregexp.cc", |
| 777 "src/jsregexp.h", | 777 "src/jsregexp.h", |
| 778 "src/layout-descriptor-inl.h", |
| 779 "src/layout-descriptor.cc", |
| 780 "src/layout-descriptor.h", |
| 778 "src/list-inl.h", | 781 "src/list-inl.h", |
| 779 "src/list.h", | 782 "src/list.h", |
| 780 "src/lithium-allocator-inl.h", | 783 "src/lithium-allocator-inl.h", |
| 781 "src/lithium-allocator.cc", | 784 "src/lithium-allocator.cc", |
| 782 "src/lithium-allocator.h", | 785 "src/lithium-allocator.h", |
| 783 "src/lithium-codegen.cc", | 786 "src/lithium-codegen.cc", |
| 784 "src/lithium-codegen.h", | 787 "src/lithium-codegen.h", |
| 785 "src/lithium.cc", | 788 "src/lithium.cc", |
| 786 "src/lithium.h", | 789 "src/lithium.h", |
| 787 "src/liveedit.cc", | 790 "src/liveedit.cc", |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1447 deps = [ | 1450 deps = [ |
| 1448 ":v8_base", | 1451 ":v8_base", |
| 1449 ":v8_nosnapshot", | 1452 ":v8_nosnapshot", |
| 1450 ] | 1453 ] |
| 1451 } | 1454 } |
| 1452 | 1455 |
| 1453 direct_dependent_configs = [ ":external_config" ] | 1456 direct_dependent_configs = [ ":external_config" ] |
| 1454 } | 1457 } |
| 1455 | 1458 |
| 1456 } | 1459 } |
| OLD | NEW |