| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 "src/compiler/operator.h", | 564 "src/compiler/operator.h", |
| 565 "src/compiler/phi-reducer.h", | 565 "src/compiler/phi-reducer.h", |
| 566 "src/compiler/pipeline.cc", | 566 "src/compiler/pipeline.cc", |
| 567 "src/compiler/pipeline.h", | 567 "src/compiler/pipeline.h", |
| 568 "src/compiler/pipeline-statistics.cc", | 568 "src/compiler/pipeline-statistics.cc", |
| 569 "src/compiler/pipeline-statistics.h", | 569 "src/compiler/pipeline-statistics.h", |
| 570 "src/compiler/raw-machine-assembler.cc", | 570 "src/compiler/raw-machine-assembler.cc", |
| 571 "src/compiler/raw-machine-assembler.h", | 571 "src/compiler/raw-machine-assembler.h", |
| 572 "src/compiler/register-allocator.cc", | 572 "src/compiler/register-allocator.cc", |
| 573 "src/compiler/register-allocator.h", | 573 "src/compiler/register-allocator.h", |
| 574 "src/compiler/register-configuration.cc", |
| 575 "src/compiler/register-configuration.h", |
| 574 "src/compiler/representation-change.h", | 576 "src/compiler/representation-change.h", |
| 575 "src/compiler/schedule.cc", | 577 "src/compiler/schedule.cc", |
| 576 "src/compiler/schedule.h", | 578 "src/compiler/schedule.h", |
| 577 "src/compiler/scheduler.cc", | 579 "src/compiler/scheduler.cc", |
| 578 "src/compiler/scheduler.h", | 580 "src/compiler/scheduler.h", |
| 579 "src/compiler/select-lowering.cc", | 581 "src/compiler/select-lowering.cc", |
| 580 "src/compiler/select-lowering.h", | 582 "src/compiler/select-lowering.h", |
| 581 "src/compiler/simplified-lowering.cc", | 583 "src/compiler/simplified-lowering.cc", |
| 582 "src/compiler/simplified-lowering.h", | 584 "src/compiler/simplified-lowering.h", |
| 583 "src/compiler/simplified-operator-reducer.cc", | 585 "src/compiler/simplified-operator-reducer.cc", |
| (...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 deps = [ | 1451 deps = [ |
| 1450 ":v8_base", | 1452 ":v8_base", |
| 1451 ":v8_nosnapshot", | 1453 ":v8_nosnapshot", |
| 1452 ] | 1454 ] |
| 1453 } | 1455 } |
| 1454 | 1456 |
| 1455 direct_dependent_configs = [ ":external_config" ] | 1457 direct_dependent_configs = [ ":external_config" ] |
| 1456 } | 1458 } |
| 1457 | 1459 |
| 1458 } | 1460 } |
| OLD | NEW |