| 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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 "src/extensions/gc-extension.h", | 599 "src/extensions/gc-extension.h", |
| 600 "src/extensions/statistics-extension.cc", | 600 "src/extensions/statistics-extension.cc", |
| 601 "src/extensions/statistics-extension.h", | 601 "src/extensions/statistics-extension.h", |
| 602 "src/extensions/trigger-failure-extension.cc", | 602 "src/extensions/trigger-failure-extension.cc", |
| 603 "src/extensions/trigger-failure-extension.h", | 603 "src/extensions/trigger-failure-extension.h", |
| 604 "src/factory.cc", | 604 "src/factory.cc", |
| 605 "src/factory.h", | 605 "src/factory.h", |
| 606 "src/fast-dtoa.cc", | 606 "src/fast-dtoa.cc", |
| 607 "src/fast-dtoa.h", | 607 "src/fast-dtoa.h", |
| 608 "src/feedback-slots.h", | 608 "src/feedback-slots.h", |
| 609 "src/field-index.cc", | |
| 610 "src/field-index.h", | 609 "src/field-index.h", |
| 611 "src/field-index-inl.h", | 610 "src/field-index-inl.h", |
| 612 "src/fixed-dtoa.cc", | 611 "src/fixed-dtoa.cc", |
| 613 "src/fixed-dtoa.h", | 612 "src/fixed-dtoa.h", |
| 614 "src/flag-definitions.h", | 613 "src/flag-definitions.h", |
| 615 "src/flags.cc", | 614 "src/flags.cc", |
| 616 "src/flags.h", | 615 "src/flags.h", |
| 617 "src/frames-inl.h", | 616 "src/frames-inl.h", |
| 618 "src/frames.cc", | 617 "src/frames.cc", |
| 619 "src/frames.h", | 618 "src/frames.h", |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1342 deps = [ | 1341 deps = [ |
| 1343 ":v8_base", | 1342 ":v8_base", |
| 1344 ":v8_nosnapshot", | 1343 ":v8_nosnapshot", |
| 1345 ] | 1344 ] |
| 1346 } | 1345 } |
| 1347 | 1346 |
| 1348 direct_dependent_configs = [ ":external_config" ] | 1347 direct_dependent_configs = [ ":external_config" ] |
| 1349 } | 1348 } |
| 1350 | 1349 |
| 1351 } | 1350 } |
| OLD | NEW |