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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 "src/compiler/pipeline.cc", | 816 "src/compiler/pipeline.cc", |
817 "src/compiler/pipeline.h", | 817 "src/compiler/pipeline.h", |
818 "src/compiler/pipeline-statistics.cc", | 818 "src/compiler/pipeline-statistics.cc", |
819 "src/compiler/pipeline-statistics.h", | 819 "src/compiler/pipeline-statistics.h", |
820 "src/compiler/raw-machine-assembler.cc", | 820 "src/compiler/raw-machine-assembler.cc", |
821 "src/compiler/raw-machine-assembler.h", | 821 "src/compiler/raw-machine-assembler.h", |
822 "src/compiler/register-allocator.cc", | 822 "src/compiler/register-allocator.cc", |
823 "src/compiler/register-allocator.h", | 823 "src/compiler/register-allocator.h", |
824 "src/compiler/register-allocator-verifier.cc", | 824 "src/compiler/register-allocator-verifier.cc", |
825 "src/compiler/register-allocator-verifier.h", | 825 "src/compiler/register-allocator-verifier.h", |
| 826 "src/compiler/register-configuration.cc", |
| 827 "src/compiler/register-configuration.h", |
826 "src/compiler/representation-change.h", | 828 "src/compiler/representation-change.h", |
827 "src/compiler/schedule.cc", | 829 "src/compiler/schedule.cc", |
828 "src/compiler/schedule.h", | 830 "src/compiler/schedule.h", |
829 "src/compiler/scheduler.cc", | 831 "src/compiler/scheduler.cc", |
830 "src/compiler/scheduler.h", | 832 "src/compiler/scheduler.h", |
831 "src/compiler/select-lowering.cc", | 833 "src/compiler/select-lowering.cc", |
832 "src/compiler/select-lowering.h", | 834 "src/compiler/select-lowering.h", |
833 "src/compiler/simplified-lowering.cc", | 835 "src/compiler/simplified-lowering.cc", |
834 "src/compiler/simplified-lowering.h", | 836 "src/compiler/simplified-lowering.h", |
835 "src/compiler/simplified-operator-reducer.cc", | 837 "src/compiler/simplified-operator-reducer.cc", |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 "src/regexp/jsregexp.h", | 1132 "src/regexp/jsregexp.h", |
1131 "src/regexp/regexp-macro-assembler-irregexp-inl.h", | 1133 "src/regexp/regexp-macro-assembler-irregexp-inl.h", |
1132 "src/regexp/regexp-macro-assembler-irregexp.cc", | 1134 "src/regexp/regexp-macro-assembler-irregexp.cc", |
1133 "src/regexp/regexp-macro-assembler-irregexp.h", | 1135 "src/regexp/regexp-macro-assembler-irregexp.h", |
1134 "src/regexp/regexp-macro-assembler-tracer.cc", | 1136 "src/regexp/regexp-macro-assembler-tracer.cc", |
1135 "src/regexp/regexp-macro-assembler-tracer.h", | 1137 "src/regexp/regexp-macro-assembler-tracer.h", |
1136 "src/regexp/regexp-macro-assembler.cc", | 1138 "src/regexp/regexp-macro-assembler.cc", |
1137 "src/regexp/regexp-macro-assembler.h", | 1139 "src/regexp/regexp-macro-assembler.h", |
1138 "src/regexp/regexp-stack.cc", | 1140 "src/regexp/regexp-stack.cc", |
1139 "src/regexp/regexp-stack.h", | 1141 "src/regexp/regexp-stack.h", |
1140 "src/register-configuration.cc", | |
1141 "src/register-configuration.h", | |
1142 "src/runtime-profiler.cc", | 1142 "src/runtime-profiler.cc", |
1143 "src/runtime-profiler.h", | 1143 "src/runtime-profiler.h", |
1144 "src/runtime/runtime-array.cc", | 1144 "src/runtime/runtime-array.cc", |
1145 "src/runtime/runtime-atomics.cc", | 1145 "src/runtime/runtime-atomics.cc", |
1146 "src/runtime/runtime-classes.cc", | 1146 "src/runtime/runtime-classes.cc", |
1147 "src/runtime/runtime-collections.cc", | 1147 "src/runtime/runtime-collections.cc", |
1148 "src/runtime/runtime-compiler.cc", | 1148 "src/runtime/runtime-compiler.cc", |
1149 "src/runtime/runtime-date.cc", | 1149 "src/runtime/runtime-date.cc", |
1150 "src/runtime/runtime-debug.cc", | 1150 "src/runtime/runtime-debug.cc", |
1151 "src/runtime/runtime-forin.cc", | 1151 "src/runtime/runtime-forin.cc", |
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1813 if (!is_component_build) { | 1813 if (!is_component_build) { |
1814 sources += [ | 1814 sources += [ |
1815 "$target_gen_dir/d8-js.cc", | 1815 "$target_gen_dir/d8-js.cc", |
1816 ] | 1816 ] |
1817 } | 1817 } |
1818 if (v8_enable_i18n_support) { | 1818 if (v8_enable_i18n_support) { |
1819 deps += [ "//third_party/icu" ] | 1819 deps += [ "//third_party/icu" ] |
1820 } | 1820 } |
1821 } | 1821 } |
1822 } | 1822 } |
OLD | NEW |