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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
6 # Chromium build. | 6 # Chromium build. |
7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 | 8 |
9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
10 # builds. | 10 # builds. |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 "src/compiler/ast-graph-builder.h", | 482 "src/compiler/ast-graph-builder.h", |
483 "src/compiler/ast-loop-assignment-analyzer.cc", | 483 "src/compiler/ast-loop-assignment-analyzer.cc", |
484 "src/compiler/ast-loop-assignment-analyzer.h", | 484 "src/compiler/ast-loop-assignment-analyzer.h", |
485 "src/compiler/basic-block-instrumentor.cc", | 485 "src/compiler/basic-block-instrumentor.cc", |
486 "src/compiler/basic-block-instrumentor.h", | 486 "src/compiler/basic-block-instrumentor.h", |
487 "src/compiler/change-lowering.cc", | 487 "src/compiler/change-lowering.cc", |
488 "src/compiler/change-lowering.h", | 488 "src/compiler/change-lowering.h", |
489 "src/compiler/code-generator-impl.h", | 489 "src/compiler/code-generator-impl.h", |
490 "src/compiler/code-generator.cc", | 490 "src/compiler/code-generator.cc", |
491 "src/compiler/code-generator.h", | 491 "src/compiler/code-generator.h", |
| 492 "src/compiler/common-node-cache.cc", |
492 "src/compiler/common-node-cache.h", | 493 "src/compiler/common-node-cache.h", |
493 "src/compiler/common-operator-reducer.cc", | 494 "src/compiler/common-operator-reducer.cc", |
494 "src/compiler/common-operator-reducer.h", | 495 "src/compiler/common-operator-reducer.h", |
495 "src/compiler/common-operator.cc", | 496 "src/compiler/common-operator.cc", |
496 "src/compiler/common-operator.h", | 497 "src/compiler/common-operator.h", |
497 "src/compiler/control-builders.cc", | 498 "src/compiler/control-builders.cc", |
498 "src/compiler/control-builders.h", | 499 "src/compiler/control-builders.h", |
499 "src/compiler/control-equivalence.h", | 500 "src/compiler/control-equivalence.h", |
500 "src/compiler/control-reducer.cc", | 501 "src/compiler/control-reducer.cc", |
501 "src/compiler/control-reducer.h", | 502 "src/compiler/control-reducer.h", |
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1457 deps = [ | 1458 deps = [ |
1458 ":v8_base", | 1459 ":v8_base", |
1459 ":v8_nosnapshot", | 1460 ":v8_nosnapshot", |
1460 ] | 1461 ] |
1461 } | 1462 } |
1462 | 1463 |
1463 direct_dependent_configs = [ ":external_config" ] | 1464 direct_dependent_configs = [ ":external_config" ] |
1464 } | 1465 } |
1465 | 1466 |
1466 } | 1467 } |
OLD | NEW |