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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 # Because standalone V8 builds are not supported, assume this is part of a | 10 # Because standalone V8 builds are not supported, assume this is part of a |
(...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 "src/compiler/pipeline.cc", | 812 "src/compiler/pipeline.cc", |
813 "src/compiler/pipeline.h", | 813 "src/compiler/pipeline.h", |
814 "src/compiler/pipeline-statistics.cc", | 814 "src/compiler/pipeline-statistics.cc", |
815 "src/compiler/pipeline-statistics.h", | 815 "src/compiler/pipeline-statistics.h", |
816 "src/compiler/raw-machine-assembler.cc", | 816 "src/compiler/raw-machine-assembler.cc", |
817 "src/compiler/raw-machine-assembler.h", | 817 "src/compiler/raw-machine-assembler.h", |
818 "src/compiler/register-allocator.cc", | 818 "src/compiler/register-allocator.cc", |
819 "src/compiler/register-allocator.h", | 819 "src/compiler/register-allocator.h", |
820 "src/compiler/register-allocator-verifier.cc", | 820 "src/compiler/register-allocator-verifier.cc", |
821 "src/compiler/register-allocator-verifier.h", | 821 "src/compiler/register-allocator-verifier.h", |
| 822 "src/compiler/register-configuration.cc", |
| 823 "src/compiler/register-configuration.h", |
822 "src/compiler/representation-change.h", | 824 "src/compiler/representation-change.h", |
823 "src/compiler/schedule.cc", | 825 "src/compiler/schedule.cc", |
824 "src/compiler/schedule.h", | 826 "src/compiler/schedule.h", |
825 "src/compiler/scheduler.cc", | 827 "src/compiler/scheduler.cc", |
826 "src/compiler/scheduler.h", | 828 "src/compiler/scheduler.h", |
827 "src/compiler/select-lowering.cc", | 829 "src/compiler/select-lowering.cc", |
828 "src/compiler/select-lowering.h", | 830 "src/compiler/select-lowering.h", |
829 "src/compiler/simplified-lowering.cc", | 831 "src/compiler/simplified-lowering.cc", |
830 "src/compiler/simplified-lowering.h", | 832 "src/compiler/simplified-lowering.h", |
831 "src/compiler/simplified-operator-reducer.cc", | 833 "src/compiler/simplified-operator-reducer.cc", |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1141 "src/regexp/jsregexp.h", | 1143 "src/regexp/jsregexp.h", |
1142 "src/regexp/regexp-macro-assembler-irregexp-inl.h", | 1144 "src/regexp/regexp-macro-assembler-irregexp-inl.h", |
1143 "src/regexp/regexp-macro-assembler-irregexp.cc", | 1145 "src/regexp/regexp-macro-assembler-irregexp.cc", |
1144 "src/regexp/regexp-macro-assembler-irregexp.h", | 1146 "src/regexp/regexp-macro-assembler-irregexp.h", |
1145 "src/regexp/regexp-macro-assembler-tracer.cc", | 1147 "src/regexp/regexp-macro-assembler-tracer.cc", |
1146 "src/regexp/regexp-macro-assembler-tracer.h", | 1148 "src/regexp/regexp-macro-assembler-tracer.h", |
1147 "src/regexp/regexp-macro-assembler.cc", | 1149 "src/regexp/regexp-macro-assembler.cc", |
1148 "src/regexp/regexp-macro-assembler.h", | 1150 "src/regexp/regexp-macro-assembler.h", |
1149 "src/regexp/regexp-stack.cc", | 1151 "src/regexp/regexp-stack.cc", |
1150 "src/regexp/regexp-stack.h", | 1152 "src/regexp/regexp-stack.h", |
1151 "src/register-configuration.cc", | |
1152 "src/register-configuration.h", | |
1153 "src/runtime-profiler.cc", | 1153 "src/runtime-profiler.cc", |
1154 "src/runtime-profiler.h", | 1154 "src/runtime-profiler.h", |
1155 "src/runtime/runtime-array.cc", | 1155 "src/runtime/runtime-array.cc", |
1156 "src/runtime/runtime-atomics.cc", | 1156 "src/runtime/runtime-atomics.cc", |
1157 "src/runtime/runtime-classes.cc", | 1157 "src/runtime/runtime-classes.cc", |
1158 "src/runtime/runtime-collections.cc", | 1158 "src/runtime/runtime-collections.cc", |
1159 "src/runtime/runtime-compiler.cc", | 1159 "src/runtime/runtime-compiler.cc", |
1160 "src/runtime/runtime-date.cc", | 1160 "src/runtime/runtime-date.cc", |
1161 "src/runtime/runtime-debug.cc", | 1161 "src/runtime/runtime-debug.cc", |
1162 "src/runtime/runtime-forin.cc", | 1162 "src/runtime/runtime-forin.cc", |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1819 if (!is_component_build) { | 1819 if (!is_component_build) { |
1820 sources += [ | 1820 sources += [ |
1821 "$target_gen_dir/d8-js.cc", | 1821 "$target_gen_dir/d8-js.cc", |
1822 ] | 1822 ] |
1823 } | 1823 } |
1824 if (v8_enable_i18n_support) { | 1824 if (v8_enable_i18n_support) { |
1825 deps += [ "//third_party/icu" ] | 1825 deps += [ "//third_party/icu" ] |
1826 } | 1826 } |
1827 } | 1827 } |
1828 } | 1828 } |
OLD | NEW |