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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 477 "src/compilation-statistics.cc", |
478 "src/compilation-statistics.h", | 478 "src/compilation-statistics.h", |
479 "src/compiler/access-builder.cc", | 479 "src/compiler/access-builder.cc", |
480 "src/compiler/access-builder.h", | 480 "src/compiler/access-builder.h", |
481 "src/compiler/ast-graph-builder.cc", | 481 "src/compiler/ast-graph-builder.cc", |
482 "src/compiler/ast-graph-builder.h", | 482 "src/compiler/ast-graph-builder.h", |
| 483 "src/compiler/ast-loop-assignment-analyzer.cc", |
| 484 "src/compiler/ast-loop-assignment-analyzer.h", |
483 "src/compiler/basic-block-instrumentor.cc", | 485 "src/compiler/basic-block-instrumentor.cc", |
484 "src/compiler/basic-block-instrumentor.h", | 486 "src/compiler/basic-block-instrumentor.h", |
485 "src/compiler/change-lowering.cc", | 487 "src/compiler/change-lowering.cc", |
486 "src/compiler/change-lowering.h", | 488 "src/compiler/change-lowering.h", |
487 "src/compiler/code-generator-impl.h", | 489 "src/compiler/code-generator-impl.h", |
488 "src/compiler/code-generator.cc", | 490 "src/compiler/code-generator.cc", |
489 "src/compiler/code-generator.h", | 491 "src/compiler/code-generator.h", |
490 "src/compiler/common-node-cache.h", | 492 "src/compiler/common-node-cache.h", |
491 "src/compiler/common-operator.cc", | 493 "src/compiler/common-operator.cc", |
492 "src/compiler/common-operator.h", | 494 "src/compiler/common-operator.h", |
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1445 deps = [ | 1447 deps = [ |
1446 ":v8_base", | 1448 ":v8_base", |
1447 ":v8_nosnapshot", | 1449 ":v8_nosnapshot", |
1448 ] | 1450 ] |
1449 } | 1451 } |
1450 | 1452 |
1451 direct_dependent_configs = [ ":external_config" ] | 1453 direct_dependent_configs = [ ":external_config" ] |
1452 } | 1454 } |
1453 | 1455 |
1454 } | 1456 } |
OLD | NEW |