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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 "src/flag-definitions.h", | 868 "src/flag-definitions.h", |
869 "src/flags.cc", | 869 "src/flags.cc", |
870 "src/flags.h", | 870 "src/flags.h", |
871 "src/frames-inl.h", | 871 "src/frames-inl.h", |
872 "src/frames.cc", | 872 "src/frames.cc", |
873 "src/frames.h", | 873 "src/frames.h", |
874 "src/full-codegen.cc", | 874 "src/full-codegen.cc", |
875 "src/full-codegen.h", | 875 "src/full-codegen.h", |
876 "src/func-name-inferrer.cc", | 876 "src/func-name-inferrer.cc", |
877 "src/func-name-inferrer.h", | 877 "src/func-name-inferrer.h", |
| 878 "src/futex-emulation.cc", |
| 879 "src/futex-emulation.h", |
878 "src/gdb-jit.cc", | 880 "src/gdb-jit.cc", |
879 "src/gdb-jit.h", | 881 "src/gdb-jit.h", |
880 "src/global-handles.cc", | 882 "src/global-handles.cc", |
881 "src/global-handles.h", | 883 "src/global-handles.h", |
882 "src/globals.h", | 884 "src/globals.h", |
883 "src/handles-inl.h", | 885 "src/handles-inl.h", |
884 "src/handles.cc", | 886 "src/handles.cc", |
885 "src/handles.h", | 887 "src/handles.h", |
886 "src/hashmap.h", | 888 "src/hashmap.h", |
887 "src/heap-profiler.cc", | 889 "src/heap-profiler.cc", |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1067 "src/runtime-profiler.h", | 1069 "src/runtime-profiler.h", |
1068 "src/runtime/runtime-array.cc", | 1070 "src/runtime/runtime-array.cc", |
1069 "src/runtime/runtime-atomics.cc", | 1071 "src/runtime/runtime-atomics.cc", |
1070 "src/runtime/runtime-classes.cc", | 1072 "src/runtime/runtime-classes.cc", |
1071 "src/runtime/runtime-collections.cc", | 1073 "src/runtime/runtime-collections.cc", |
1072 "src/runtime/runtime-compiler.cc", | 1074 "src/runtime/runtime-compiler.cc", |
1073 "src/runtime/runtime-date.cc", | 1075 "src/runtime/runtime-date.cc", |
1074 "src/runtime/runtime-debug.cc", | 1076 "src/runtime/runtime-debug.cc", |
1075 "src/runtime/runtime-forin.cc", | 1077 "src/runtime/runtime-forin.cc", |
1076 "src/runtime/runtime-function.cc", | 1078 "src/runtime/runtime-function.cc", |
| 1079 "src/runtime/runtime-futex.cc", |
1077 "src/runtime/runtime-generator.cc", | 1080 "src/runtime/runtime-generator.cc", |
1078 "src/runtime/runtime-i18n.cc", | 1081 "src/runtime/runtime-i18n.cc", |
1079 "src/runtime/runtime-internal.cc", | 1082 "src/runtime/runtime-internal.cc", |
1080 "src/runtime/runtime-json.cc", | 1083 "src/runtime/runtime-json.cc", |
1081 "src/runtime/runtime-literals.cc", | 1084 "src/runtime/runtime-literals.cc", |
1082 "src/runtime/runtime-liveedit.cc", | 1085 "src/runtime/runtime-liveedit.cc", |
1083 "src/runtime/runtime-maths.cc", | 1086 "src/runtime/runtime-maths.cc", |
1084 "src/runtime/runtime-numbers.cc", | 1087 "src/runtime/runtime-numbers.cc", |
1085 "src/runtime/runtime-object.cc", | 1088 "src/runtime/runtime-object.cc", |
1086 "src/runtime/runtime-observe.cc", | 1089 "src/runtime/runtime-observe.cc", |
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1756 "src/d8-debug.cc", | 1759 "src/d8-debug.cc", |
1757 "src/d8-debug.h", | 1760 "src/d8-debug.h", |
1758 "$target_gen_dir/d8-js.cc", | 1761 "$target_gen_dir/d8-js.cc", |
1759 ] | 1762 ] |
1760 } | 1763 } |
1761 if (v8_enable_i18n_support) { | 1764 if (v8_enable_i18n_support) { |
1762 deps += [ "//third_party/icu" ] | 1765 deps += [ "//third_party/icu" ] |
1763 } | 1766 } |
1764 } | 1767 } |
1765 } | 1768 } |
OLD | NEW |