| 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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 "src/compiler/operator-properties.cc", | 724 "src/compiler/operator-properties.cc", |
| 725 "src/compiler/operator-properties.h", | 725 "src/compiler/operator-properties.h", |
| 726 "src/compiler/operator.cc", | 726 "src/compiler/operator.cc", |
| 727 "src/compiler/operator.h", | 727 "src/compiler/operator.h", |
| 728 "src/compiler/osr.cc", | 728 "src/compiler/osr.cc", |
| 729 "src/compiler/osr.h", | 729 "src/compiler/osr.h", |
| 730 "src/compiler/pipeline.cc", | 730 "src/compiler/pipeline.cc", |
| 731 "src/compiler/pipeline.h", | 731 "src/compiler/pipeline.h", |
| 732 "src/compiler/pipeline-statistics.cc", | 732 "src/compiler/pipeline-statistics.cc", |
| 733 "src/compiler/pipeline-statistics.h", | 733 "src/compiler/pipeline-statistics.h", |
| 734 "src/compiler/raw-machine-assembler.cc", |
| 735 "src/compiler/raw-machine-assembler.h", |
| 734 "src/compiler/register-allocator.cc", | 736 "src/compiler/register-allocator.cc", |
| 735 "src/compiler/register-allocator.h", | 737 "src/compiler/register-allocator.h", |
| 736 "src/compiler/register-allocator-verifier.cc", | 738 "src/compiler/register-allocator-verifier.cc", |
| 737 "src/compiler/register-allocator-verifier.h", | 739 "src/compiler/register-allocator-verifier.h", |
| 738 "src/compiler/register-configuration.cc", | 740 "src/compiler/register-configuration.cc", |
| 739 "src/compiler/register-configuration.h", | 741 "src/compiler/register-configuration.h", |
| 740 "src/compiler/representation-change.h", | 742 "src/compiler/representation-change.h", |
| 741 "src/compiler/schedule.cc", | 743 "src/compiler/schedule.cc", |
| 742 "src/compiler/schedule.h", | 744 "src/compiler/schedule.h", |
| 743 "src/compiler/scheduler.cc", | 745 "src/compiler/scheduler.cc", |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1710 "src/d8-debug.cc", | 1712 "src/d8-debug.cc", |
| 1711 "src/d8-debug.h", | 1713 "src/d8-debug.h", |
| 1712 "$target_gen_dir/d8-js.cc", | 1714 "$target_gen_dir/d8-js.cc", |
| 1713 ] | 1715 ] |
| 1714 } | 1716 } |
| 1715 if (v8_enable_i18n_support) { | 1717 if (v8_enable_i18n_support) { |
| 1716 deps += [ "//third_party/icu" ] | 1718 deps += [ "//third_party/icu" ] |
| 1717 } | 1719 } |
| 1718 } | 1720 } |
| 1719 } | 1721 } |
| OLD | NEW |