| 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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 "src/compiler/raw-machine-assembler.h", | 539 "src/compiler/raw-machine-assembler.h", |
| 540 "src/compiler/register-allocator.cc", | 540 "src/compiler/register-allocator.cc", |
| 541 "src/compiler/register-allocator.h", | 541 "src/compiler/register-allocator.h", |
| 542 "src/compiler/representation-change.h", | 542 "src/compiler/representation-change.h", |
| 543 "src/compiler/schedule.cc", | 543 "src/compiler/schedule.cc", |
| 544 "src/compiler/schedule.h", | 544 "src/compiler/schedule.h", |
| 545 "src/compiler/scheduler.cc", | 545 "src/compiler/scheduler.cc", |
| 546 "src/compiler/scheduler.h", | 546 "src/compiler/scheduler.h", |
| 547 "src/compiler/simplified-lowering.cc", | 547 "src/compiler/simplified-lowering.cc", |
| 548 "src/compiler/simplified-lowering.h", | 548 "src/compiler/simplified-lowering.h", |
| 549 "src/compiler/simplified-node-factory.h", | |
| 550 "src/compiler/simplified-operator-reducer.cc", | 549 "src/compiler/simplified-operator-reducer.cc", |
| 551 "src/compiler/simplified-operator-reducer.h", | 550 "src/compiler/simplified-operator-reducer.h", |
| 552 "src/compiler/simplified-operator.cc", | 551 "src/compiler/simplified-operator.cc", |
| 553 "src/compiler/simplified-operator.h", | 552 "src/compiler/simplified-operator.h", |
| 554 "src/compiler/source-position.cc", | 553 "src/compiler/source-position.cc", |
| 555 "src/compiler/source-position.h", | 554 "src/compiler/source-position.h", |
| 556 "src/compiler/structured-machine-assembler.cc", | |
| 557 "src/compiler/structured-machine-assembler.h", | |
| 558 "src/compiler/typer.cc", | 555 "src/compiler/typer.cc", |
| 559 "src/compiler/typer.h", | 556 "src/compiler/typer.h", |
| 560 "src/compiler/verifier.cc", | 557 "src/compiler/verifier.cc", |
| 561 "src/compiler/verifier.h", | 558 "src/compiler/verifier.h", |
| 562 "src/compiler.cc", | 559 "src/compiler.cc", |
| 563 "src/compiler.h", | 560 "src/compiler.h", |
| 564 "src/contexts.cc", | 561 "src/contexts.cc", |
| 565 "src/contexts.h", | 562 "src/contexts.h", |
| 566 "src/conversions-inl.h", | 563 "src/conversions-inl.h", |
| 567 "src/conversions.cc", | 564 "src/conversions.cc", |
| (...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1359 deps = [ | 1356 deps = [ |
| 1360 ":v8_base", | 1357 ":v8_base", |
| 1361 ":v8_nosnapshot", | 1358 ":v8_nosnapshot", |
| 1362 ] | 1359 ] |
| 1363 } | 1360 } |
| 1364 | 1361 |
| 1365 direct_dependent_configs = [ ":external_config" ] | 1362 direct_dependent_configs = [ ":external_config" ] |
| 1366 } | 1363 } |
| 1367 | 1364 |
| 1368 } | 1365 } |
| OLD | NEW |