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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 "src/compiler/move-optimizer.h", | 556 "src/compiler/move-optimizer.h", |
557 "src/compiler/node-aux-data-inl.h", | 557 "src/compiler/node-aux-data-inl.h", |
558 "src/compiler/node-aux-data.h", | 558 "src/compiler/node-aux-data.h", |
559 "src/compiler/node-cache.cc", | 559 "src/compiler/node-cache.cc", |
560 "src/compiler/node-cache.h", | 560 "src/compiler/node-cache.h", |
561 "src/compiler/node-matchers.h", | 561 "src/compiler/node-matchers.h", |
562 "src/compiler/node-properties-inl.h", | 562 "src/compiler/node-properties-inl.h", |
563 "src/compiler/node-properties.h", | 563 "src/compiler/node-properties.h", |
564 "src/compiler/node.cc", | 564 "src/compiler/node.cc", |
565 "src/compiler/node.h", | 565 "src/compiler/node.h", |
| 566 "src/compiler/opcodes.cc", |
566 "src/compiler/opcodes.h", | 567 "src/compiler/opcodes.h", |
567 "src/compiler/operator-properties.cc", | 568 "src/compiler/operator-properties.cc", |
568 "src/compiler/operator-properties.h", | 569 "src/compiler/operator-properties.h", |
569 "src/compiler/operator.cc", | 570 "src/compiler/operator.cc", |
570 "src/compiler/operator.h", | 571 "src/compiler/operator.h", |
571 "src/compiler/pipeline.cc", | 572 "src/compiler/pipeline.cc", |
572 "src/compiler/pipeline.h", | 573 "src/compiler/pipeline.h", |
573 "src/compiler/pipeline-statistics.cc", | 574 "src/compiler/pipeline-statistics.cc", |
574 "src/compiler/pipeline-statistics.h", | 575 "src/compiler/pipeline-statistics.h", |
575 "src/compiler/raw-machine-assembler.cc", | 576 "src/compiler/raw-machine-assembler.cc", |
(...skipping 881 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 |