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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
8 | 8 |
9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
10 # Chromium build. | 10 # Chromium build. |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 "src/code-factory.cc", | 531 "src/code-factory.cc", |
532 "src/code-factory.h", | 532 "src/code-factory.h", |
533 "src/code-stubs.cc", | 533 "src/code-stubs.cc", |
534 "src/code-stubs.h", | 534 "src/code-stubs.h", |
535 "src/code-stubs-hydrogen.cc", | 535 "src/code-stubs-hydrogen.cc", |
536 "src/code.h", | 536 "src/code.h", |
537 "src/codegen.cc", | 537 "src/codegen.cc", |
538 "src/codegen.h", | 538 "src/codegen.h", |
539 "src/compilation-cache.cc", | 539 "src/compilation-cache.cc", |
540 "src/compilation-cache.h", | 540 "src/compilation-cache.h", |
| 541 "src/compilation-dependencies.cc", |
| 542 "src/compilation-dependencies.h", |
541 "src/compilation-statistics.cc", | 543 "src/compilation-statistics.cc", |
542 "src/compilation-statistics.h", | 544 "src/compilation-statistics.h", |
543 "src/compiler/access-builder.cc", | 545 "src/compiler/access-builder.cc", |
544 "src/compiler/access-builder.h", | 546 "src/compiler/access-builder.h", |
545 "src/compiler/all-nodes.cc", | 547 "src/compiler/all-nodes.cc", |
546 "src/compiler/all-nodes.h", | 548 "src/compiler/all-nodes.h", |
547 "src/compiler/ast-graph-builder.cc", | 549 "src/compiler/ast-graph-builder.cc", |
548 "src/compiler/ast-graph-builder.h", | 550 "src/compiler/ast-graph-builder.h", |
549 "src/compiler/ast-loop-assignment-analyzer.cc", | 551 "src/compiler/ast-loop-assignment-analyzer.cc", |
550 "src/compiler/ast-loop-assignment-analyzer.h", | 552 "src/compiler/ast-loop-assignment-analyzer.h", |
(...skipping 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1602 sources += [ | 1604 sources += [ |
1603 "src/d8-debug.cc", | 1605 "src/d8-debug.cc", |
1604 "$target_gen_dir/d8-js.cc", | 1606 "$target_gen_dir/d8-js.cc", |
1605 ] | 1607 ] |
1606 } | 1608 } |
1607 if (v8_enable_i18n_support) { | 1609 if (v8_enable_i18n_support) { |
1608 deps += [ "//third_party/icu" ] | 1610 deps += [ "//third_party/icu" ] |
1609 } | 1611 } |
1610 } | 1612 } |
1611 } | 1613 } |
OLD | NEW |