| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 "src/compiler/operator-properties.cc", | 775 "src/compiler/operator-properties.cc", |
| 776 "src/compiler/operator-properties.h", | 776 "src/compiler/operator-properties.h", |
| 777 "src/compiler/operator.cc", | 777 "src/compiler/operator.cc", |
| 778 "src/compiler/operator.h", | 778 "src/compiler/operator.h", |
| 779 "src/compiler/osr.cc", | 779 "src/compiler/osr.cc", |
| 780 "src/compiler/osr.h", | 780 "src/compiler/osr.h", |
| 781 "src/compiler/pipeline.cc", | 781 "src/compiler/pipeline.cc", |
| 782 "src/compiler/pipeline.h", | 782 "src/compiler/pipeline.h", |
| 783 "src/compiler/pipeline-statistics.cc", | 783 "src/compiler/pipeline-statistics.cc", |
| 784 "src/compiler/pipeline-statistics.h", | 784 "src/compiler/pipeline-statistics.h", |
| 785 "src/compiler/preprocess-live-ranges.cc", |
| 786 "src/compiler/preprocess-live-ranges.h", |
| 785 "src/compiler/raw-machine-assembler.cc", | 787 "src/compiler/raw-machine-assembler.cc", |
| 786 "src/compiler/raw-machine-assembler.h", | 788 "src/compiler/raw-machine-assembler.h", |
| 787 "src/compiler/register-allocator.cc", | 789 "src/compiler/register-allocator.cc", |
| 788 "src/compiler/register-allocator.h", | 790 "src/compiler/register-allocator.h", |
| 789 "src/compiler/register-allocator-verifier.cc", | 791 "src/compiler/register-allocator-verifier.cc", |
| 790 "src/compiler/register-allocator-verifier.h", | 792 "src/compiler/register-allocator-verifier.h", |
| 791 "src/compiler/register-configuration.cc", | 793 "src/compiler/register-configuration.cc", |
| 792 "src/compiler/register-configuration.h", | 794 "src/compiler/register-configuration.h", |
| 793 "src/compiler/representation-change.h", | 795 "src/compiler/representation-change.h", |
| 794 "src/compiler/schedule.cc", | 796 "src/compiler/schedule.cc", |
| (...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1769 if (!is_component_build) { | 1771 if (!is_component_build) { |
| 1770 sources += [ | 1772 sources += [ |
| 1771 "$target_gen_dir/d8-js.cc", | 1773 "$target_gen_dir/d8-js.cc", |
| 1772 ] | 1774 ] |
| 1773 } | 1775 } |
| 1774 if (v8_enable_i18n_support) { | 1776 if (v8_enable_i18n_support) { |
| 1775 deps += [ "//third_party/icu" ] | 1777 deps += [ "//third_party/icu" ] |
| 1776 } | 1778 } |
| 1777 } | 1779 } |
| 1778 } | 1780 } |
| OLD | NEW |