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 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
957 "src/heap-snapshot-generator-inl.h", | 957 "src/heap-snapshot-generator-inl.h", |
958 "src/heap-snapshot-generator.cc", | 958 "src/heap-snapshot-generator.cc", |
959 "src/heap-snapshot-generator.h", | 959 "src/heap-snapshot-generator.h", |
960 "src/heap/gc-idle-time-handler.cc", | 960 "src/heap/gc-idle-time-handler.cc", |
961 "src/heap/gc-idle-time-handler.h", | 961 "src/heap/gc-idle-time-handler.h", |
962 "src/heap/gc-tracer.cc", | 962 "src/heap/gc-tracer.cc", |
963 "src/heap/gc-tracer.h", | 963 "src/heap/gc-tracer.h", |
964 "src/heap/heap-inl.h", | 964 "src/heap/heap-inl.h", |
965 "src/heap/heap.cc", | 965 "src/heap/heap.cc", |
966 "src/heap/heap.h", | 966 "src/heap/heap.h", |
| 967 "src/heap/incremental-marking-job.cc", |
| 968 "src/heap/incremental-marking-job.h", |
967 "src/heap/incremental-marking.cc", | 969 "src/heap/incremental-marking.cc", |
968 "src/heap/incremental-marking.h", | 970 "src/heap/incremental-marking.h", |
969 "src/heap/mark-compact-inl.h", | 971 "src/heap/mark-compact-inl.h", |
970 "src/heap/mark-compact.cc", | 972 "src/heap/mark-compact.cc", |
971 "src/heap/mark-compact.h", | 973 "src/heap/mark-compact.h", |
972 "src/heap/memory-reducer.cc", | 974 "src/heap/memory-reducer.cc", |
973 "src/heap/memory-reducer.h", | 975 "src/heap/memory-reducer.h", |
974 "src/heap/object-stats.cc", | 976 "src/heap/object-stats.cc", |
975 "src/heap/object-stats.h", | 977 "src/heap/object-stats.h", |
976 "src/heap/objects-visiting-inl.h", | 978 "src/heap/objects-visiting-inl.h", |
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1839 if (!is_component_build) { | 1841 if (!is_component_build) { |
1840 sources += [ | 1842 sources += [ |
1841 "$target_gen_dir/d8-js.cc", | 1843 "$target_gen_dir/d8-js.cc", |
1842 ] | 1844 ] |
1843 } | 1845 } |
1844 if (v8_enable_i18n_support) { | 1846 if (v8_enable_i18n_support) { |
1845 deps += [ "//third_party/icu" ] | 1847 deps += [ "//third_party/icu" ] |
1846 } | 1848 } |
1847 } | 1849 } |
1848 } | 1850 } |
OLD | NEW |