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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
773 "src/compiler/js-type-feedback.cc", | 773 "src/compiler/js-type-feedback.cc", |
774 "src/compiler/js-type-feedback.h", | 774 "src/compiler/js-type-feedback.h", |
775 "src/compiler/js-type-feedback-lowering.cc", | 775 "src/compiler/js-type-feedback-lowering.cc", |
776 "src/compiler/js-type-feedback-lowering.h", | 776 "src/compiler/js-type-feedback-lowering.h", |
777 "src/compiler/js-typed-lowering.cc", | 777 "src/compiler/js-typed-lowering.cc", |
778 "src/compiler/js-typed-lowering.h", | 778 "src/compiler/js-typed-lowering.h", |
779 "src/compiler/jump-threading.cc", | 779 "src/compiler/jump-threading.cc", |
780 "src/compiler/jump-threading.h", | 780 "src/compiler/jump-threading.h", |
781 "src/compiler/linkage.cc", | 781 "src/compiler/linkage.cc", |
782 "src/compiler/linkage.h", | 782 "src/compiler/linkage.h", |
| 783 "src/compiler/live-range-separator.cc", |
| 784 "src/compiler/live-range-separator.h", |
783 "src/compiler/liveness-analyzer.cc", | 785 "src/compiler/liveness-analyzer.cc", |
784 "src/compiler/liveness-analyzer.h", | 786 "src/compiler/liveness-analyzer.h", |
785 "src/compiler/load-elimination.cc", | 787 "src/compiler/load-elimination.cc", |
786 "src/compiler/load-elimination.h", | 788 "src/compiler/load-elimination.h", |
787 "src/compiler/loop-peeling.cc", | 789 "src/compiler/loop-peeling.cc", |
788 "src/compiler/loop-analysis.cc", | 790 "src/compiler/loop-analysis.cc", |
789 "src/compiler/loop-analysis.h", | 791 "src/compiler/loop-analysis.h", |
790 "src/compiler/machine-operator-reducer.cc", | 792 "src/compiler/machine-operator-reducer.cc", |
791 "src/compiler/machine-operator-reducer.h", | 793 "src/compiler/machine-operator-reducer.h", |
792 "src/compiler/machine-operator.cc", | 794 "src/compiler/machine-operator.cc", |
(...skipping 18 matching lines...) Expand all Loading... |
811 "src/compiler/operator-properties.cc", | 813 "src/compiler/operator-properties.cc", |
812 "src/compiler/operator-properties.h", | 814 "src/compiler/operator-properties.h", |
813 "src/compiler/operator.cc", | 815 "src/compiler/operator.cc", |
814 "src/compiler/operator.h", | 816 "src/compiler/operator.h", |
815 "src/compiler/osr.cc", | 817 "src/compiler/osr.cc", |
816 "src/compiler/osr.h", | 818 "src/compiler/osr.h", |
817 "src/compiler/pipeline.cc", | 819 "src/compiler/pipeline.cc", |
818 "src/compiler/pipeline.h", | 820 "src/compiler/pipeline.h", |
819 "src/compiler/pipeline-statistics.cc", | 821 "src/compiler/pipeline-statistics.cc", |
820 "src/compiler/pipeline-statistics.h", | 822 "src/compiler/pipeline-statistics.h", |
821 "src/compiler/preprocess-live-ranges.cc", | |
822 "src/compiler/preprocess-live-ranges.h", | |
823 "src/compiler/raw-machine-assembler.cc", | 823 "src/compiler/raw-machine-assembler.cc", |
824 "src/compiler/raw-machine-assembler.h", | 824 "src/compiler/raw-machine-assembler.h", |
825 "src/compiler/register-allocator.cc", | 825 "src/compiler/register-allocator.cc", |
826 "src/compiler/register-allocator.h", | 826 "src/compiler/register-allocator.h", |
827 "src/compiler/register-allocator-verifier.cc", | 827 "src/compiler/register-allocator-verifier.cc", |
828 "src/compiler/register-allocator-verifier.h", | 828 "src/compiler/register-allocator-verifier.h", |
829 "src/compiler/register-configuration.cc", | 829 "src/compiler/register-configuration.cc", |
830 "src/compiler/register-configuration.h", | 830 "src/compiler/register-configuration.h", |
831 "src/compiler/representation-change.h", | 831 "src/compiler/representation-change.h", |
832 "src/compiler/schedule.cc", | 832 "src/compiler/schedule.cc", |
(...skipping 982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1815 if (!is_component_build) { | 1815 if (!is_component_build) { |
1816 sources += [ | 1816 sources += [ |
1817 "$target_gen_dir/d8-js.cc", | 1817 "$target_gen_dir/d8-js.cc", |
1818 ] | 1818 ] |
1819 } | 1819 } |
1820 if (v8_enable_i18n_support) { | 1820 if (v8_enable_i18n_support) { |
1821 deps += [ "//third_party/icu" ] | 1821 deps += [ "//third_party/icu" ] |
1822 } | 1822 } |
1823 } | 1823 } |
1824 } | 1824 } |
OLD | NEW |