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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 "src/heap/heap-inl.h", | 850 "src/heap/heap-inl.h", |
851 "src/heap/heap.cc", | 851 "src/heap/heap.cc", |
852 "src/heap/heap.h", | 852 "src/heap/heap.h", |
853 "src/heap/identity-map.cc", | 853 "src/heap/identity-map.cc", |
854 "src/heap/identity-map.h", | 854 "src/heap/identity-map.h", |
855 "src/heap/incremental-marking.cc", | 855 "src/heap/incremental-marking.cc", |
856 "src/heap/incremental-marking.h", | 856 "src/heap/incremental-marking.h", |
857 "src/heap/mark-compact-inl.h", | 857 "src/heap/mark-compact-inl.h", |
858 "src/heap/mark-compact.cc", | 858 "src/heap/mark-compact.cc", |
859 "src/heap/mark-compact.h", | 859 "src/heap/mark-compact.h", |
| 860 "src/heap/memory-reducer.cc", |
| 861 "src/heap/memory-reducer.h", |
860 "src/heap/objects-visiting-inl.h", | 862 "src/heap/objects-visiting-inl.h", |
861 "src/heap/objects-visiting.cc", | 863 "src/heap/objects-visiting.cc", |
862 "src/heap/objects-visiting.h", | 864 "src/heap/objects-visiting.h", |
863 "src/heap/spaces-inl.h", | 865 "src/heap/spaces-inl.h", |
864 "src/heap/spaces.cc", | 866 "src/heap/spaces.cc", |
865 "src/heap/spaces.h", | 867 "src/heap/spaces.h", |
866 "src/heap/store-buffer-inl.h", | 868 "src/heap/store-buffer-inl.h", |
867 "src/heap/store-buffer.cc", | 869 "src/heap/store-buffer.cc", |
868 "src/heap/store-buffer.h", | 870 "src/heap/store-buffer.h", |
869 "src/hydrogen-alias-analysis.h", | 871 "src/hydrogen-alias-analysis.h", |
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1708 "src/d8-debug.cc", | 1710 "src/d8-debug.cc", |
1709 "src/d8-debug.h", | 1711 "src/d8-debug.h", |
1710 "$target_gen_dir/d8-js.cc", | 1712 "$target_gen_dir/d8-js.cc", |
1711 ] | 1713 ] |
1712 } | 1714 } |
1713 if (v8_enable_i18n_support) { | 1715 if (v8_enable_i18n_support) { |
1714 deps += [ "//third_party/icu" ] | 1716 deps += [ "//third_party/icu" ] |
1715 } | 1717 } |
1716 } | 1718 } |
1717 } | 1719 } |
OLD | NEW |