| 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 "src/compiler/register-configuration.h", | 725 "src/compiler/register-configuration.h", |
| 726 "src/compiler/representation-change.h", | 726 "src/compiler/representation-change.h", |
| 727 "src/compiler/schedule.cc", | 727 "src/compiler/schedule.cc", |
| 728 "src/compiler/schedule.h", | 728 "src/compiler/schedule.h", |
| 729 "src/compiler/scheduler.cc", | 729 "src/compiler/scheduler.cc", |
| 730 "src/compiler/scheduler.h", | 730 "src/compiler/scheduler.h", |
| 731 "src/compiler/select-lowering.cc", | 731 "src/compiler/select-lowering.cc", |
| 732 "src/compiler/select-lowering.h", | 732 "src/compiler/select-lowering.h", |
| 733 "src/compiler/simplified-lowering.cc", | 733 "src/compiler/simplified-lowering.cc", |
| 734 "src/compiler/simplified-lowering.h", | 734 "src/compiler/simplified-lowering.h", |
| 735 "src/compiler/simplified-operator-reducer.cc", |
| 736 "src/compiler/simplified-operator-reducer.h", |
| 735 "src/compiler/simplified-operator.cc", | 737 "src/compiler/simplified-operator.cc", |
| 736 "src/compiler/simplified-operator.h", | 738 "src/compiler/simplified-operator.h", |
| 737 "src/compiler/source-position.cc", | 739 "src/compiler/source-position.cc", |
| 738 "src/compiler/source-position.h", | 740 "src/compiler/source-position.h", |
| 739 "src/compiler/state-values-utils.cc", | 741 "src/compiler/state-values-utils.cc", |
| 740 "src/compiler/state-values-utils.h", | 742 "src/compiler/state-values-utils.h", |
| 741 "src/compiler/tail-call-optimization.cc", | 743 "src/compiler/tail-call-optimization.cc", |
| 742 "src/compiler/tail-call-optimization.h", | 744 "src/compiler/tail-call-optimization.h", |
| 743 "src/compiler/typer.cc", | 745 "src/compiler/typer.cc", |
| 744 "src/compiler/typer.h", | 746 "src/compiler/typer.h", |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 sources += [ | 1683 sources += [ |
| 1682 "src/d8-debug.cc", | 1684 "src/d8-debug.cc", |
| 1683 "$target_gen_dir/d8-js.cc", | 1685 "$target_gen_dir/d8-js.cc", |
| 1684 ] | 1686 ] |
| 1685 } | 1687 } |
| 1686 if (v8_enable_i18n_support) { | 1688 if (v8_enable_i18n_support) { |
| 1687 deps += [ "//third_party/icu" ] | 1689 deps += [ "//third_party/icu" ] |
| 1688 } | 1690 } |
| 1689 } | 1691 } |
| 1690 } | 1692 } |
| OLD | NEW |