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 949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
960 "src/heap/mark-compact-inl.h", | 960 "src/heap/mark-compact-inl.h", |
961 "src/heap/mark-compact.cc", | 961 "src/heap/mark-compact.cc", |
962 "src/heap/mark-compact.h", | 962 "src/heap/mark-compact.h", |
963 "src/heap/memory-reducer.cc", | 963 "src/heap/memory-reducer.cc", |
964 "src/heap/memory-reducer.h", | 964 "src/heap/memory-reducer.h", |
965 "src/heap/object-stats.cc", | 965 "src/heap/object-stats.cc", |
966 "src/heap/object-stats.h", | 966 "src/heap/object-stats.h", |
967 "src/heap/objects-visiting-inl.h", | 967 "src/heap/objects-visiting-inl.h", |
968 "src/heap/objects-visiting.cc", | 968 "src/heap/objects-visiting.cc", |
969 "src/heap/objects-visiting.h", | 969 "src/heap/objects-visiting.h", |
| 970 "src/heap/scavenge-job.h", |
| 971 "src/heap/scavenge-job.cc", |
970 "src/heap/scavenger-inl.h", | 972 "src/heap/scavenger-inl.h", |
971 "src/heap/scavenger.cc", | 973 "src/heap/scavenger.cc", |
972 "src/heap/scavenger.h", | 974 "src/heap/scavenger.h", |
973 "src/heap/slots-buffer.cc", | 975 "src/heap/slots-buffer.cc", |
974 "src/heap/slots-buffer.h", | 976 "src/heap/slots-buffer.h", |
975 "src/heap/spaces-inl.h", | 977 "src/heap/spaces-inl.h", |
976 "src/heap/spaces.cc", | 978 "src/heap/spaces.cc", |
977 "src/heap/spaces.h", | 979 "src/heap/spaces.h", |
978 "src/heap/store-buffer-inl.h", | 980 "src/heap/store-buffer-inl.h", |
979 "src/heap/store-buffer.cc", | 981 "src/heap/store-buffer.cc", |
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1813 if (!is_component_build) { | 1815 if (!is_component_build) { |
1814 sources += [ | 1816 sources += [ |
1815 "$target_gen_dir/d8-js.cc", | 1817 "$target_gen_dir/d8-js.cc", |
1816 ] | 1818 ] |
1817 } | 1819 } |
1818 if (v8_enable_i18n_support) { | 1820 if (v8_enable_i18n_support) { |
1819 deps += [ "//third_party/icu" ] | 1821 deps += [ "//third_party/icu" ] |
1820 } | 1822 } |
1821 } | 1823 } |
1822 } | 1824 } |
OLD | NEW |