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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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.h", | 492 "src/compiler/common-node-cache.h", |
| 493 "src/compiler/common-operator-reducer.cc", |
| 494 "src/compiler/common-operator-reducer.h", |
493 "src/compiler/common-operator.cc", | 495 "src/compiler/common-operator.cc", |
494 "src/compiler/common-operator.h", | 496 "src/compiler/common-operator.h", |
495 "src/compiler/control-builders.cc", | 497 "src/compiler/control-builders.cc", |
496 "src/compiler/control-builders.h", | 498 "src/compiler/control-builders.h", |
497 "src/compiler/control-equivalence.h", | 499 "src/compiler/control-equivalence.h", |
498 "src/compiler/control-reducer.cc", | 500 "src/compiler/control-reducer.cc", |
499 "src/compiler/control-reducer.h", | 501 "src/compiler/control-reducer.h", |
500 "src/compiler/diamond.h", | 502 "src/compiler/diamond.h", |
501 "src/compiler/frame.h", | 503 "src/compiler/frame.h", |
502 "src/compiler/gap-resolver.cc", | 504 "src/compiler/gap-resolver.cc", |
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1455 deps = [ | 1457 deps = [ |
1456 ":v8_base", | 1458 ":v8_base", |
1457 ":v8_nosnapshot", | 1459 ":v8_nosnapshot", |
1458 ] | 1460 ] |
1459 } | 1461 } |
1460 | 1462 |
1461 direct_dependent_configs = [ ":external_config" ] | 1463 direct_dependent_configs = [ ":external_config" ] |
1462 } | 1464 } |
1463 | 1465 |
1464 } | 1466 } |
OLD | NEW |