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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 "src/compiler/node-matchers.h", | 556 "src/compiler/node-matchers.h", |
557 "src/compiler/node-properties-inl.h", | 557 "src/compiler/node-properties-inl.h", |
558 "src/compiler/node-properties.h", | 558 "src/compiler/node-properties.h", |
559 "src/compiler/node.cc", | 559 "src/compiler/node.cc", |
560 "src/compiler/node.h", | 560 "src/compiler/node.h", |
561 "src/compiler/opcodes.h", | 561 "src/compiler/opcodes.h", |
562 "src/compiler/operator-properties-inl.h", | 562 "src/compiler/operator-properties-inl.h", |
563 "src/compiler/operator-properties.h", | 563 "src/compiler/operator-properties.h", |
564 "src/compiler/operator.cc", | 564 "src/compiler/operator.cc", |
565 "src/compiler/operator.h", | 565 "src/compiler/operator.h", |
566 "src/compiler/phi-reducer.h", | |
567 "src/compiler/pipeline.cc", | 566 "src/compiler/pipeline.cc", |
568 "src/compiler/pipeline.h", | 567 "src/compiler/pipeline.h", |
569 "src/compiler/pipeline-statistics.cc", | 568 "src/compiler/pipeline-statistics.cc", |
570 "src/compiler/pipeline-statistics.h", | 569 "src/compiler/pipeline-statistics.h", |
571 "src/compiler/raw-machine-assembler.cc", | 570 "src/compiler/raw-machine-assembler.cc", |
572 "src/compiler/raw-machine-assembler.h", | 571 "src/compiler/raw-machine-assembler.h", |
573 "src/compiler/register-allocator.cc", | 572 "src/compiler/register-allocator.cc", |
574 "src/compiler/register-allocator.h", | 573 "src/compiler/register-allocator.h", |
575 "src/compiler/register-allocator-verifier.cc", | 574 "src/compiler/register-allocator-verifier.cc", |
576 "src/compiler/register-allocator-verifier.h", | 575 "src/compiler/register-allocator-verifier.h", |
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1454 deps = [ | 1453 deps = [ |
1455 ":v8_base", | 1454 ":v8_base", |
1456 ":v8_nosnapshot", | 1455 ":v8_nosnapshot", |
1457 ] | 1456 ] |
1458 } | 1457 } |
1459 | 1458 |
1460 direct_dependent_configs = [ ":external_config" ] | 1459 direct_dependent_configs = [ ":external_config" ] |
1461 } | 1460 } |
1462 | 1461 |
1463 } | 1462 } |
OLD | NEW |