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 if (is_android) { | 10 if (is_android) { |
(...skipping 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1023 "src/futex-emulation.h", | 1023 "src/futex-emulation.h", |
1024 "src/gdb-jit.cc", | 1024 "src/gdb-jit.cc", |
1025 "src/gdb-jit.h", | 1025 "src/gdb-jit.h", |
1026 "src/global-handles.cc", | 1026 "src/global-handles.cc", |
1027 "src/global-handles.h", | 1027 "src/global-handles.h", |
1028 "src/globals.h", | 1028 "src/globals.h", |
1029 "src/handles-inl.h", | 1029 "src/handles-inl.h", |
1030 "src/handles.cc", | 1030 "src/handles.cc", |
1031 "src/handles.h", | 1031 "src/handles.h", |
1032 "src/hashmap.h", | 1032 "src/hashmap.h", |
| 1033 "src/heap-symbols.h", |
1033 "src/heap/array-buffer-tracker.cc", | 1034 "src/heap/array-buffer-tracker.cc", |
1034 "src/heap/array-buffer-tracker.h", | 1035 "src/heap/array-buffer-tracker.h", |
1035 "src/heap/gc-idle-time-handler.cc", | 1036 "src/heap/gc-idle-time-handler.cc", |
1036 "src/heap/gc-idle-time-handler.h", | 1037 "src/heap/gc-idle-time-handler.h", |
1037 "src/heap/gc-tracer.cc", | 1038 "src/heap/gc-tracer.cc", |
1038 "src/heap/gc-tracer.h", | 1039 "src/heap/gc-tracer.h", |
1039 "src/heap/heap-inl.h", | 1040 "src/heap/heap-inl.h", |
1040 "src/heap/heap.cc", | 1041 "src/heap/heap.cc", |
1041 "src/heap/heap.h", | 1042 "src/heap/heap.h", |
1042 "src/heap/incremental-marking-job.cc", | 1043 "src/heap/incremental-marking-job.cc", |
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1903 if (!is_component_build) { | 1904 if (!is_component_build) { |
1904 sources += [ | 1905 sources += [ |
1905 "$target_gen_dir/d8-js.cc", | 1906 "$target_gen_dir/d8-js.cc", |
1906 ] | 1907 ] |
1907 } | 1908 } |
1908 if (v8_enable_i18n_support) { | 1909 if (v8_enable_i18n_support) { |
1909 deps += [ "//third_party/icu" ] | 1910 deps += [ "//third_party/icu" ] |
1910 } | 1911 } |
1911 } | 1912 } |
1912 } | 1913 } |
OLD | NEW |