| 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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 "src/compiler/operator-properties.cc", | 706 "src/compiler/operator-properties.cc", |
| 707 "src/compiler/operator-properties.h", | 707 "src/compiler/operator-properties.h", |
| 708 "src/compiler/operator.cc", | 708 "src/compiler/operator.cc", |
| 709 "src/compiler/operator.h", | 709 "src/compiler/operator.h", |
| 710 "src/compiler/osr.cc", | 710 "src/compiler/osr.cc", |
| 711 "src/compiler/osr.h", | 711 "src/compiler/osr.h", |
| 712 "src/compiler/pipeline.cc", | 712 "src/compiler/pipeline.cc", |
| 713 "src/compiler/pipeline.h", | 713 "src/compiler/pipeline.h", |
| 714 "src/compiler/pipeline-statistics.cc", | 714 "src/compiler/pipeline-statistics.cc", |
| 715 "src/compiler/pipeline-statistics.h", | 715 "src/compiler/pipeline-statistics.h", |
| 716 "src/compiler/raw-machine-assembler.cc", | |
| 717 "src/compiler/raw-machine-assembler.h", | |
| 718 "src/compiler/register-allocator.cc", | 716 "src/compiler/register-allocator.cc", |
| 719 "src/compiler/register-allocator.h", | 717 "src/compiler/register-allocator.h", |
| 720 "src/compiler/register-allocator-verifier.cc", | 718 "src/compiler/register-allocator-verifier.cc", |
| 721 "src/compiler/register-allocator-verifier.h", | 719 "src/compiler/register-allocator-verifier.h", |
| 722 "src/compiler/register-configuration.cc", | 720 "src/compiler/register-configuration.cc", |
| 723 "src/compiler/register-configuration.h", | 721 "src/compiler/register-configuration.h", |
| 724 "src/compiler/representation-change.h", | 722 "src/compiler/representation-change.h", |
| 725 "src/compiler/schedule.cc", | 723 "src/compiler/schedule.cc", |
| 726 "src/compiler/schedule.h", | 724 "src/compiler/schedule.h", |
| 727 "src/compiler/scheduler.cc", | 725 "src/compiler/scheduler.cc", |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1679 sources += [ | 1677 sources += [ |
| 1680 "src/d8-debug.cc", | 1678 "src/d8-debug.cc", |
| 1681 "$target_gen_dir/d8-js.cc", | 1679 "$target_gen_dir/d8-js.cc", |
| 1682 ] | 1680 ] |
| 1683 } | 1681 } |
| 1684 if (v8_enable_i18n_support) { | 1682 if (v8_enable_i18n_support) { |
| 1685 deps += [ "//third_party/icu" ] | 1683 deps += [ "//third_party/icu" ] |
| 1686 } | 1684 } |
| 1687 } | 1685 } |
| 1688 } | 1686 } |
| OLD | NEW |