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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 "src/compiler/js-operator.h", | 542 "src/compiler/js-operator.h", |
543 "src/compiler/js-typed-lowering.cc", | 543 "src/compiler/js-typed-lowering.cc", |
544 "src/compiler/js-typed-lowering.h", | 544 "src/compiler/js-typed-lowering.h", |
545 "src/compiler/jump-threading.cc", | 545 "src/compiler/jump-threading.cc", |
546 "src/compiler/jump-threading.h", | 546 "src/compiler/jump-threading.h", |
547 "src/compiler/linkage-impl.h", | 547 "src/compiler/linkage-impl.h", |
548 "src/compiler/linkage.cc", | 548 "src/compiler/linkage.cc", |
549 "src/compiler/linkage.h", | 549 "src/compiler/linkage.h", |
550 "src/compiler/load-elimination.cc", | 550 "src/compiler/load-elimination.cc", |
551 "src/compiler/load-elimination.h", | 551 "src/compiler/load-elimination.h", |
| 552 "src/compiler/loop-peeling.cc", |
552 "src/compiler/loop-analysis.cc", | 553 "src/compiler/loop-analysis.cc", |
553 "src/compiler/loop-analysis.h", | 554 "src/compiler/loop-analysis.h", |
554 "src/compiler/machine-operator-reducer.cc", | 555 "src/compiler/machine-operator-reducer.cc", |
555 "src/compiler/machine-operator-reducer.h", | 556 "src/compiler/machine-operator-reducer.h", |
556 "src/compiler/machine-operator.cc", | 557 "src/compiler/machine-operator.cc", |
557 "src/compiler/machine-operator.h", | 558 "src/compiler/machine-operator.h", |
558 "src/compiler/machine-type.cc", | 559 "src/compiler/machine-type.cc", |
559 "src/compiler/machine-type.h", | 560 "src/compiler/machine-type.h", |
560 "src/compiler/move-optimizer.cc", | 561 "src/compiler/move-optimizer.cc", |
561 "src/compiler/move-optimizer.h", | 562 "src/compiler/move-optimizer.h", |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1485 assert(!v8_use_external_startup_data) | 1486 assert(!v8_use_external_startup_data) |
1486 deps = [ | 1487 deps = [ |
1487 ":v8_base", | 1488 ":v8_base", |
1488 ":v8_nosnapshot", | 1489 ":v8_nosnapshot", |
1489 ] | 1490 ] |
1490 } | 1491 } |
1491 | 1492 |
1492 direct_dependent_configs = [ ":external_config" ] | 1493 direct_dependent_configs = [ ":external_config" ] |
1493 } | 1494 } |
1494 } | 1495 } |
OLD | NEW |