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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 "src/code-stubs-hydrogen.cc", | 500 "src/code-stubs-hydrogen.cc", |
501 "src/code.h", | 501 "src/code.h", |
502 "src/codegen.cc", | 502 "src/codegen.cc", |
503 "src/codegen.h", | 503 "src/codegen.h", |
504 "src/compilation-cache.cc", | 504 "src/compilation-cache.cc", |
505 "src/compilation-cache.h", | 505 "src/compilation-cache.h", |
506 "src/compilation-statistics.cc", | 506 "src/compilation-statistics.cc", |
507 "src/compilation-statistics.h", | 507 "src/compilation-statistics.h", |
508 "src/compiler/access-builder.cc", | 508 "src/compiler/access-builder.cc", |
509 "src/compiler/access-builder.h", | 509 "src/compiler/access-builder.h", |
| 510 "src/compiler/all-nodes.cc", |
| 511 "src/compiler/all-nodes.h", |
510 "src/compiler/ast-graph-builder.cc", | 512 "src/compiler/ast-graph-builder.cc", |
511 "src/compiler/ast-graph-builder.h", | 513 "src/compiler/ast-graph-builder.h", |
512 "src/compiler/ast-loop-assignment-analyzer.cc", | 514 "src/compiler/ast-loop-assignment-analyzer.cc", |
513 "src/compiler/ast-loop-assignment-analyzer.h", | 515 "src/compiler/ast-loop-assignment-analyzer.h", |
514 "src/compiler/basic-block-instrumentor.cc", | 516 "src/compiler/basic-block-instrumentor.cc", |
515 "src/compiler/basic-block-instrumentor.h", | 517 "src/compiler/basic-block-instrumentor.h", |
516 "src/compiler/change-lowering.cc", | 518 "src/compiler/change-lowering.cc", |
517 "src/compiler/change-lowering.h", | 519 "src/compiler/change-lowering.h", |
518 "src/compiler/code-generator-impl.h", | 520 "src/compiler/code-generator-impl.h", |
519 "src/compiler/code-generator.cc", | 521 "src/compiler/code-generator.cc", |
(...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1555 sources += [ | 1557 sources += [ |
1556 "src/d8-debug.cc", | 1558 "src/d8-debug.cc", |
1557 "$target_gen_dir/d8-js.cc", | 1559 "$target_gen_dir/d8-js.cc", |
1558 ] | 1560 ] |
1559 } | 1561 } |
1560 if (v8_enable_i18n_support) { | 1562 if (v8_enable_i18n_support) { |
1561 deps += [ "//third_party/icu" ] | 1563 deps += [ "//third_party/icu" ] |
1562 } | 1564 } |
1563 } | 1565 } |
1564 } | 1566 } |
OLD | NEW |