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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
824 "src/flag-definitions.h", | 824 "src/flag-definitions.h", |
825 "src/flags.cc", | 825 "src/flags.cc", |
826 "src/flags.h", | 826 "src/flags.h", |
827 "src/frames-inl.h", | 827 "src/frames-inl.h", |
828 "src/frames.cc", | 828 "src/frames.cc", |
829 "src/frames.h", | 829 "src/frames.h", |
830 "src/full-codegen.cc", | 830 "src/full-codegen.cc", |
831 "src/full-codegen.h", | 831 "src/full-codegen.h", |
832 "src/func-name-inferrer.cc", | 832 "src/func-name-inferrer.cc", |
833 "src/func-name-inferrer.h", | 833 "src/func-name-inferrer.h", |
| 834 "src/futex-emulation.cc", |
| 835 "src/futex-emulation.h", |
834 "src/gdb-jit.cc", | 836 "src/gdb-jit.cc", |
835 "src/gdb-jit.h", | 837 "src/gdb-jit.h", |
836 "src/global-handles.cc", | 838 "src/global-handles.cc", |
837 "src/global-handles.h", | 839 "src/global-handles.h", |
838 "src/globals.h", | 840 "src/globals.h", |
839 "src/handles-inl.h", | 841 "src/handles-inl.h", |
840 "src/handles.cc", | 842 "src/handles.cc", |
841 "src/handles.h", | 843 "src/handles.h", |
842 "src/hashmap.h", | 844 "src/hashmap.h", |
843 "src/heap-profiler.cc", | 845 "src/heap-profiler.cc", |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1023 "src/runtime-profiler.h", | 1025 "src/runtime-profiler.h", |
1024 "src/runtime/runtime-array.cc", | 1026 "src/runtime/runtime-array.cc", |
1025 "src/runtime/runtime-atomics.cc", | 1027 "src/runtime/runtime-atomics.cc", |
1026 "src/runtime/runtime-classes.cc", | 1028 "src/runtime/runtime-classes.cc", |
1027 "src/runtime/runtime-collections.cc", | 1029 "src/runtime/runtime-collections.cc", |
1028 "src/runtime/runtime-compiler.cc", | 1030 "src/runtime/runtime-compiler.cc", |
1029 "src/runtime/runtime-date.cc", | 1031 "src/runtime/runtime-date.cc", |
1030 "src/runtime/runtime-debug.cc", | 1032 "src/runtime/runtime-debug.cc", |
1031 "src/runtime/runtime-forin.cc", | 1033 "src/runtime/runtime-forin.cc", |
1032 "src/runtime/runtime-function.cc", | 1034 "src/runtime/runtime-function.cc", |
| 1035 "src/runtime/runtime-futex.cc", |
1033 "src/runtime/runtime-generator.cc", | 1036 "src/runtime/runtime-generator.cc", |
1034 "src/runtime/runtime-i18n.cc", | 1037 "src/runtime/runtime-i18n.cc", |
1035 "src/runtime/runtime-internal.cc", | 1038 "src/runtime/runtime-internal.cc", |
1036 "src/runtime/runtime-json.cc", | 1039 "src/runtime/runtime-json.cc", |
1037 "src/runtime/runtime-literals.cc", | 1040 "src/runtime/runtime-literals.cc", |
1038 "src/runtime/runtime-liveedit.cc", | 1041 "src/runtime/runtime-liveedit.cc", |
1039 "src/runtime/runtime-maths.cc", | 1042 "src/runtime/runtime-maths.cc", |
1040 "src/runtime/runtime-numbers.cc", | 1043 "src/runtime/runtime-numbers.cc", |
1041 "src/runtime/runtime-object.cc", | 1044 "src/runtime/runtime-object.cc", |
1042 "src/runtime/runtime-observe.cc", | 1045 "src/runtime/runtime-observe.cc", |
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1712 "src/d8-debug.cc", | 1715 "src/d8-debug.cc", |
1713 "src/d8-debug.h", | 1716 "src/d8-debug.h", |
1714 "$target_gen_dir/d8-js.cc", | 1717 "$target_gen_dir/d8-js.cc", |
1715 ] | 1718 ] |
1716 } | 1719 } |
1717 if (v8_enable_i18n_support) { | 1720 if (v8_enable_i18n_support) { |
1718 deps += [ "//third_party/icu" ] | 1721 deps += [ "//third_party/icu" ] |
1719 } | 1722 } |
1720 } | 1723 } |
1721 } | 1724 } |
OLD | NEW |