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 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1156 "src/profiler/heap-profiler.cc", | 1156 "src/profiler/heap-profiler.cc", |
1157 "src/profiler/heap-profiler.h", | 1157 "src/profiler/heap-profiler.h", |
1158 "src/profiler/heap-snapshot-generator-inl.h", | 1158 "src/profiler/heap-snapshot-generator-inl.h", |
1159 "src/profiler/heap-snapshot-generator.cc", | 1159 "src/profiler/heap-snapshot-generator.cc", |
1160 "src/profiler/heap-snapshot-generator.h", | 1160 "src/profiler/heap-snapshot-generator.h", |
1161 "src/profiler/profile-generator-inl.h", | 1161 "src/profiler/profile-generator-inl.h", |
1162 "src/profiler/profile-generator.cc", | 1162 "src/profiler/profile-generator.cc", |
1163 "src/profiler/profile-generator.h", | 1163 "src/profiler/profile-generator.h", |
1164 "src/profiler/sampler.cc", | 1164 "src/profiler/sampler.cc", |
1165 "src/profiler/sampler.h", | 1165 "src/profiler/sampler.h", |
1166 "src/profiler/sampling-heap-profiler.cc", | |
1167 "src/profiler/sampling-heap-profiler.h", | |
1168 "src/profiler/strings-storage.cc", | 1166 "src/profiler/strings-storage.cc", |
1169 "src/profiler/strings-storage.h", | 1167 "src/profiler/strings-storage.h", |
1170 "src/profiler/unbound-queue-inl.h", | 1168 "src/profiler/unbound-queue-inl.h", |
1171 "src/profiler/unbound-queue.h", | 1169 "src/profiler/unbound-queue.h", |
1172 "src/property-descriptor.cc", | 1170 "src/property-descriptor.cc", |
1173 "src/property-descriptor.h", | 1171 "src/property-descriptor.h", |
1174 "src/property-details.h", | 1172 "src/property-details.h", |
1175 "src/property.cc", | 1173 "src/property.cc", |
1176 "src/property.h", | 1174 "src/property.h", |
1177 "src/prototype.h", | 1175 "src/prototype.h", |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1858 if (!is_component_build) { | 1856 if (!is_component_build) { |
1859 sources += [ | 1857 sources += [ |
1860 "$target_gen_dir/d8-js.cc", | 1858 "$target_gen_dir/d8-js.cc", |
1861 ] | 1859 ] |
1862 } | 1860 } |
1863 if (v8_enable_i18n_support) { | 1861 if (v8_enable_i18n_support) { |
1864 deps += [ "//third_party/icu" ] | 1862 deps += [ "//third_party/icu" ] |
1865 } | 1863 } |
1866 } | 1864 } |
1867 } | 1865 } |
OLD | NEW |