| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 "src/compiler/all-nodes.cc", | 615 "src/compiler/all-nodes.cc", |
| 616 "src/compiler/all-nodes.h", | 616 "src/compiler/all-nodes.h", |
| 617 "src/compiler/ast-graph-builder.cc", | 617 "src/compiler/ast-graph-builder.cc", |
| 618 "src/compiler/ast-graph-builder.h", | 618 "src/compiler/ast-graph-builder.h", |
| 619 "src/compiler/ast-loop-assignment-analyzer.cc", | 619 "src/compiler/ast-loop-assignment-analyzer.cc", |
| 620 "src/compiler/ast-loop-assignment-analyzer.h", | 620 "src/compiler/ast-loop-assignment-analyzer.h", |
| 621 "src/compiler/basic-block-instrumentor.cc", | 621 "src/compiler/basic-block-instrumentor.cc", |
| 622 "src/compiler/basic-block-instrumentor.h", | 622 "src/compiler/basic-block-instrumentor.h", |
| 623 "src/compiler/change-lowering.cc", | 623 "src/compiler/change-lowering.cc", |
| 624 "src/compiler/change-lowering.h", | 624 "src/compiler/change-lowering.h", |
| 625 "src/compiler/coalesced-live-ranges.cc", |
| 626 "src/compiler/coalesced-live-ranges.h", |
| 625 "src/compiler/code-generator-impl.h", | 627 "src/compiler/code-generator-impl.h", |
| 626 "src/compiler/code-generator.cc", | 628 "src/compiler/code-generator.cc", |
| 627 "src/compiler/code-generator.h", | 629 "src/compiler/code-generator.h", |
| 628 "src/compiler/common-node-cache.cc", | 630 "src/compiler/common-node-cache.cc", |
| 629 "src/compiler/common-node-cache.h", | 631 "src/compiler/common-node-cache.h", |
| 630 "src/compiler/common-operator-reducer.cc", | 632 "src/compiler/common-operator-reducer.cc", |
| 631 "src/compiler/common-operator-reducer.h", | 633 "src/compiler/common-operator-reducer.h", |
| 632 "src/compiler/common-operator.cc", | 634 "src/compiler/common-operator.cc", |
| 633 "src/compiler/common-operator.h", | 635 "src/compiler/common-operator.h", |
| 634 "src/compiler/control-builders.cc", | 636 "src/compiler/control-builders.cc", |
| (...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 "src/d8-debug.cc", | 1706 "src/d8-debug.cc", |
| 1705 "src/d8-debug.h", | 1707 "src/d8-debug.h", |
| 1706 "$target_gen_dir/d8-js.cc", | 1708 "$target_gen_dir/d8-js.cc", |
| 1707 ] | 1709 ] |
| 1708 } | 1710 } |
| 1709 if (v8_enable_i18n_support) { | 1711 if (v8_enable_i18n_support) { |
| 1710 deps += [ "//third_party/icu" ] | 1712 deps += [ "//third_party/icu" ] |
| 1711 } | 1713 } |
| 1712 } | 1714 } |
| 1713 } | 1715 } |
| OLD | NEW |