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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 "src/compiler/machine-type.h", | 539 "src/compiler/machine-type.h", |
540 "src/compiler/move-optimizer.cc", | 540 "src/compiler/move-optimizer.cc", |
541 "src/compiler/move-optimizer.h", | 541 "src/compiler/move-optimizer.h", |
542 "src/compiler/node-aux-data-inl.h", | 542 "src/compiler/node-aux-data-inl.h", |
543 "src/compiler/node-aux-data.h", | 543 "src/compiler/node-aux-data.h", |
544 "src/compiler/node-cache.cc", | 544 "src/compiler/node-cache.cc", |
545 "src/compiler/node-cache.h", | 545 "src/compiler/node-cache.h", |
546 "src/compiler/node-marker.cc", | 546 "src/compiler/node-marker.cc", |
547 "src/compiler/node-marker.h", | 547 "src/compiler/node-marker.h", |
548 "src/compiler/node-matchers.h", | 548 "src/compiler/node-matchers.h", |
| 549 "src/compiler/node-properties.cc", |
549 "src/compiler/node-properties-inl.h", | 550 "src/compiler/node-properties-inl.h", |
550 "src/compiler/node-properties.h", | 551 "src/compiler/node-properties.h", |
551 "src/compiler/node.cc", | 552 "src/compiler/node.cc", |
552 "src/compiler/node.h", | 553 "src/compiler/node.h", |
553 "src/compiler/opcodes.cc", | 554 "src/compiler/opcodes.cc", |
554 "src/compiler/opcodes.h", | 555 "src/compiler/opcodes.h", |
555 "src/compiler/operator-properties.cc", | 556 "src/compiler/operator-properties.cc", |
556 "src/compiler/operator-properties.h", | 557 "src/compiler/operator-properties.h", |
557 "src/compiler/operator.cc", | 558 "src/compiler/operator.cc", |
558 "src/compiler/operator.h", | 559 "src/compiler/operator.h", |
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1465 assert(!v8_use_external_startup_data) | 1466 assert(!v8_use_external_startup_data) |
1466 deps = [ | 1467 deps = [ |
1467 ":v8_base", | 1468 ":v8_base", |
1468 ":v8_nosnapshot", | 1469 ":v8_nosnapshot", |
1469 ] | 1470 ] |
1470 } | 1471 } |
1471 | 1472 |
1472 direct_dependent_configs = [ ":external_config" ] | 1473 direct_dependent_configs = [ ":external_config" ] |
1473 } | 1474 } |
1474 } | 1475 } |
OLD | NEW |