| 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 "src/compiler/node-properties-inl.h", | 566 "src/compiler/node-properties-inl.h", |
| 567 "src/compiler/node-properties.h", | 567 "src/compiler/node-properties.h", |
| 568 "src/compiler/node.cc", | 568 "src/compiler/node.cc", |
| 569 "src/compiler/node.h", | 569 "src/compiler/node.h", |
| 570 "src/compiler/opcodes.cc", | 570 "src/compiler/opcodes.cc", |
| 571 "src/compiler/opcodes.h", | 571 "src/compiler/opcodes.h", |
| 572 "src/compiler/operator-properties.cc", | 572 "src/compiler/operator-properties.cc", |
| 573 "src/compiler/operator-properties.h", | 573 "src/compiler/operator-properties.h", |
| 574 "src/compiler/operator.cc", | 574 "src/compiler/operator.cc", |
| 575 "src/compiler/operator.h", | 575 "src/compiler/operator.h", |
| 576 "src/compiler/osr.cc", |
| 577 "src/compiler/osr.h", |
| 576 "src/compiler/pipeline.cc", | 578 "src/compiler/pipeline.cc", |
| 577 "src/compiler/pipeline.h", | 579 "src/compiler/pipeline.h", |
| 578 "src/compiler/pipeline-statistics.cc", | 580 "src/compiler/pipeline-statistics.cc", |
| 579 "src/compiler/pipeline-statistics.h", | 581 "src/compiler/pipeline-statistics.h", |
| 580 "src/compiler/raw-machine-assembler.cc", | 582 "src/compiler/raw-machine-assembler.cc", |
| 581 "src/compiler/raw-machine-assembler.h", | 583 "src/compiler/raw-machine-assembler.h", |
| 582 "src/compiler/register-allocator.cc", | 584 "src/compiler/register-allocator.cc", |
| 583 "src/compiler/register-allocator.h", | 585 "src/compiler/register-allocator.h", |
| 584 "src/compiler/register-allocator-verifier.cc", | 586 "src/compiler/register-allocator-verifier.cc", |
| 585 "src/compiler/register-allocator-verifier.h", | 587 "src/compiler/register-allocator-verifier.h", |
| (...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1517 assert(!v8_use_external_startup_data) | 1519 assert(!v8_use_external_startup_data) |
| 1518 deps = [ | 1520 deps = [ |
| 1519 ":v8_base", | 1521 ":v8_base", |
| 1520 ":v8_nosnapshot", | 1522 ":v8_nosnapshot", |
| 1521 ] | 1523 ] |
| 1522 } | 1524 } |
| 1523 | 1525 |
| 1524 direct_dependent_configs = [ ":external_config" ] | 1526 direct_dependent_configs = [ ":external_config" ] |
| 1525 } | 1527 } |
| 1526 } | 1528 } |
| OLD | NEW |