| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 "src/code-factory.cc", | 467 "src/code-factory.cc", |
| 468 "src/code-factory.h", | 468 "src/code-factory.h", |
| 469 "src/code-stubs.cc", | 469 "src/code-stubs.cc", |
| 470 "src/code-stubs.h", | 470 "src/code-stubs.h", |
| 471 "src/code-stubs-hydrogen.cc", | 471 "src/code-stubs-hydrogen.cc", |
| 472 "src/code.h", | 472 "src/code.h", |
| 473 "src/codegen.cc", | 473 "src/codegen.cc", |
| 474 "src/codegen.h", | 474 "src/codegen.h", |
| 475 "src/compilation-cache.cc", | 475 "src/compilation-cache.cc", |
| 476 "src/compilation-cache.h", | 476 "src/compilation-cache.h", |
| 477 "src/compilation-statistics.cc", |
| 478 "src/compilation-statistics.h", |
| 477 "src/compiler/access-builder.cc", | 479 "src/compiler/access-builder.cc", |
| 478 "src/compiler/access-builder.h", | 480 "src/compiler/access-builder.h", |
| 479 "src/compiler/ast-graph-builder.cc", | 481 "src/compiler/ast-graph-builder.cc", |
| 480 "src/compiler/ast-graph-builder.h", | 482 "src/compiler/ast-graph-builder.h", |
| 481 "src/compiler/basic-block-instrumentor.cc", | 483 "src/compiler/basic-block-instrumentor.cc", |
| 482 "src/compiler/basic-block-instrumentor.h", | 484 "src/compiler/basic-block-instrumentor.h", |
| 483 "src/compiler/change-lowering.cc", | 485 "src/compiler/change-lowering.cc", |
| 484 "src/compiler/change-lowering.h", | 486 "src/compiler/change-lowering.h", |
| 485 "src/compiler/code-generator-impl.h", | 487 "src/compiler/code-generator-impl.h", |
| 486 "src/compiler/code-generator.cc", | 488 "src/compiler/code-generator.cc", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 "src/compiler/node.cc", | 555 "src/compiler/node.cc", |
| 554 "src/compiler/node.h", | 556 "src/compiler/node.h", |
| 555 "src/compiler/opcodes.h", | 557 "src/compiler/opcodes.h", |
| 556 "src/compiler/operator-properties-inl.h", | 558 "src/compiler/operator-properties-inl.h", |
| 557 "src/compiler/operator-properties.h", | 559 "src/compiler/operator-properties.h", |
| 558 "src/compiler/operator.cc", | 560 "src/compiler/operator.cc", |
| 559 "src/compiler/operator.h", | 561 "src/compiler/operator.h", |
| 560 "src/compiler/phi-reducer.h", | 562 "src/compiler/phi-reducer.h", |
| 561 "src/compiler/pipeline.cc", | 563 "src/compiler/pipeline.cc", |
| 562 "src/compiler/pipeline.h", | 564 "src/compiler/pipeline.h", |
| 565 "src/compiler/pipeline-statistics.cc", |
| 566 "src/compiler/pipeline-statistics.h", |
| 563 "src/compiler/raw-machine-assembler.cc", | 567 "src/compiler/raw-machine-assembler.cc", |
| 564 "src/compiler/raw-machine-assembler.h", | 568 "src/compiler/raw-machine-assembler.h", |
| 565 "src/compiler/register-allocator.cc", | 569 "src/compiler/register-allocator.cc", |
| 566 "src/compiler/register-allocator.h", | 570 "src/compiler/register-allocator.h", |
| 567 "src/compiler/representation-change.h", | 571 "src/compiler/representation-change.h", |
| 568 "src/compiler/schedule.cc", | 572 "src/compiler/schedule.cc", |
| 569 "src/compiler/schedule.h", | 573 "src/compiler/schedule.h", |
| 570 "src/compiler/scheduler.cc", | 574 "src/compiler/scheduler.cc", |
| 571 "src/compiler/scheduler.h", | 575 "src/compiler/scheduler.h", |
| 572 "src/compiler/simplified-lowering.cc", | 576 "src/compiler/simplified-lowering.cc", |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1443 deps = [ | 1447 deps = [ |
| 1444 ":v8_base", | 1448 ":v8_base", |
| 1445 ":v8_nosnapshot", | 1449 ":v8_nosnapshot", |
| 1446 ] | 1450 ] |
| 1447 } | 1451 } |
| 1448 | 1452 |
| 1449 direct_dependent_configs = [ ":external_config" ] | 1453 direct_dependent_configs = [ ":external_config" ] |
| 1450 } | 1454 } |
| 1451 | 1455 |
| 1452 } | 1456 } |
| OLD | NEW |