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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
949 "src/globals.h", | 949 "src/globals.h", |
950 "src/handles-inl.h", | 950 "src/handles-inl.h", |
951 "src/handles.cc", | 951 "src/handles.cc", |
952 "src/handles.h", | 952 "src/handles.h", |
953 "src/hashmap.h", | 953 "src/hashmap.h", |
954 "src/heap-profiler.cc", | 954 "src/heap-profiler.cc", |
955 "src/heap-profiler.h", | 955 "src/heap-profiler.h", |
956 "src/heap-snapshot-generator-inl.h", | 956 "src/heap-snapshot-generator-inl.h", |
957 "src/heap-snapshot-generator.cc", | 957 "src/heap-snapshot-generator.cc", |
958 "src/heap-snapshot-generator.h", | 958 "src/heap-snapshot-generator.h", |
| 959 "src/heap/array-buffer-tracker.cc", |
| 960 "src/heap/array-buffer-tracker.h", |
959 "src/heap/gc-idle-time-handler.cc", | 961 "src/heap/gc-idle-time-handler.cc", |
960 "src/heap/gc-idle-time-handler.h", | 962 "src/heap/gc-idle-time-handler.h", |
961 "src/heap/gc-tracer.cc", | 963 "src/heap/gc-tracer.cc", |
962 "src/heap/gc-tracer.h", | 964 "src/heap/gc-tracer.h", |
963 "src/heap/heap-inl.h", | 965 "src/heap/heap-inl.h", |
964 "src/heap/heap.cc", | 966 "src/heap/heap.cc", |
965 "src/heap/heap.h", | 967 "src/heap/heap.h", |
966 "src/heap/incremental-marking.cc", | 968 "src/heap/incremental-marking.cc", |
967 "src/heap/incremental-marking.h", | 969 "src/heap/incremental-marking.h", |
968 "src/heap/mark-compact-inl.h", | 970 "src/heap/mark-compact-inl.h", |
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1838 if (!is_component_build) { | 1840 if (!is_component_build) { |
1839 sources += [ | 1841 sources += [ |
1840 "$target_gen_dir/d8-js.cc", | 1842 "$target_gen_dir/d8-js.cc", |
1841 ] | 1843 ] |
1842 } | 1844 } |
1843 if (v8_enable_i18n_support) { | 1845 if (v8_enable_i18n_support) { |
1844 deps += [ "//third_party/icu" ] | 1846 deps += [ "//third_party/icu" ] |
1845 } | 1847 } |
1846 } | 1848 } |
1847 } | 1849 } |
OLD | NEW |