| 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 "src/heap/mark-compact.h", | 669 "src/heap/mark-compact.h", |
| 670 "src/heap/objects-visiting-inl.h", | 670 "src/heap/objects-visiting-inl.h", |
| 671 "src/heap/objects-visiting.cc", | 671 "src/heap/objects-visiting.cc", |
| 672 "src/heap/objects-visiting.h", | 672 "src/heap/objects-visiting.h", |
| 673 "src/heap/spaces-inl.h", | 673 "src/heap/spaces-inl.h", |
| 674 "src/heap/spaces.cc", | 674 "src/heap/spaces.cc", |
| 675 "src/heap/spaces.h", | 675 "src/heap/spaces.h", |
| 676 "src/heap/store-buffer-inl.h", | 676 "src/heap/store-buffer-inl.h", |
| 677 "src/heap/store-buffer.cc", | 677 "src/heap/store-buffer.cc", |
| 678 "src/heap/store-buffer.h", | 678 "src/heap/store-buffer.h", |
| 679 "src/heap/sweeper-thread.h", | |
| 680 "src/heap/sweeper-thread.cc", | |
| 681 "src/hydrogen-alias-analysis.h", | 679 "src/hydrogen-alias-analysis.h", |
| 682 "src/hydrogen-bce.cc", | 680 "src/hydrogen-bce.cc", |
| 683 "src/hydrogen-bce.h", | 681 "src/hydrogen-bce.h", |
| 684 "src/hydrogen-bch.cc", | 682 "src/hydrogen-bch.cc", |
| 685 "src/hydrogen-bch.h", | 683 "src/hydrogen-bch.h", |
| 686 "src/hydrogen-canonicalize.cc", | 684 "src/hydrogen-canonicalize.cc", |
| 687 "src/hydrogen-canonicalize.h", | 685 "src/hydrogen-canonicalize.h", |
| 688 "src/hydrogen-check-elimination.cc", | 686 "src/hydrogen-check-elimination.cc", |
| 689 "src/hydrogen-check-elimination.h", | 687 "src/hydrogen-check-elimination.h", |
| 690 "src/hydrogen-dce.cc", | 688 "src/hydrogen-dce.cc", |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1423 deps = [ | 1421 deps = [ |
| 1424 ":v8_base", | 1422 ":v8_base", |
| 1425 ":v8_nosnapshot", | 1423 ":v8_nosnapshot", |
| 1426 ] | 1424 ] |
| 1427 } | 1425 } |
| 1428 | 1426 |
| 1429 direct_dependent_configs = [ ":external_config" ] | 1427 direct_dependent_configs = [ ":external_config" ] |
| 1430 } | 1428 } |
| 1431 | 1429 |
| 1432 } | 1430 } |
| OLD | NEW |