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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
980 "src/heap/memory-reducer.cc", | 980 "src/heap/memory-reducer.cc", |
981 "src/heap/memory-reducer.h", | 981 "src/heap/memory-reducer.h", |
982 "src/heap/object-stats.cc", | 982 "src/heap/object-stats.cc", |
983 "src/heap/object-stats.h", | 983 "src/heap/object-stats.h", |
984 "src/heap/objects-visiting-inl.h", | 984 "src/heap/objects-visiting-inl.h", |
985 "src/heap/objects-visiting.cc", | 985 "src/heap/objects-visiting.cc", |
986 "src/heap/objects-visiting.h", | 986 "src/heap/objects-visiting.h", |
987 "src/heap/scavenger-inl.h", | 987 "src/heap/scavenger-inl.h", |
988 "src/heap/scavenger.cc", | 988 "src/heap/scavenger.cc", |
989 "src/heap/scavenger.h", | 989 "src/heap/scavenger.h", |
| 990 "src/heap/slots-buffer.cc", |
| 991 "src/heap/slots-buffer.h", |
990 "src/heap/spaces-inl.h", | 992 "src/heap/spaces-inl.h", |
991 "src/heap/spaces.cc", | 993 "src/heap/spaces.cc", |
992 "src/heap/spaces.h", | 994 "src/heap/spaces.h", |
993 "src/heap/store-buffer-inl.h", | 995 "src/heap/store-buffer-inl.h", |
994 "src/heap/store-buffer.cc", | 996 "src/heap/store-buffer.cc", |
995 "src/heap/store-buffer.h", | 997 "src/heap/store-buffer.h", |
996 "src/hydrogen-alias-analysis.h", | 998 "src/hydrogen-alias-analysis.h", |
997 "src/hydrogen-bce.cc", | 999 "src/hydrogen-bce.cc", |
998 "src/hydrogen-bce.h", | 1000 "src/hydrogen-bce.h", |
999 "src/hydrogen-bch.cc", | 1001 "src/hydrogen-bch.cc", |
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1865 if (!is_component_build) { | 1867 if (!is_component_build) { |
1866 sources += [ | 1868 sources += [ |
1867 "$target_gen_dir/d8-js.cc", | 1869 "$target_gen_dir/d8-js.cc", |
1868 ] | 1870 ] |
1869 } | 1871 } |
1870 if (v8_enable_i18n_support) { | 1872 if (v8_enable_i18n_support) { |
1871 deps += [ "//third_party/icu" ] | 1873 deps += [ "//third_party/icu" ] |
1872 } | 1874 } |
1873 } | 1875 } |
1874 } | 1876 } |
OLD | NEW |