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 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 "src/profiler/heap-profiler.cc", | 1178 "src/profiler/heap-profiler.cc", |
1179 "src/profiler/heap-profiler.h", | 1179 "src/profiler/heap-profiler.h", |
1180 "src/profiler/heap-snapshot-generator-inl.h", | 1180 "src/profiler/heap-snapshot-generator-inl.h", |
1181 "src/profiler/heap-snapshot-generator.cc", | 1181 "src/profiler/heap-snapshot-generator.cc", |
1182 "src/profiler/heap-snapshot-generator.h", | 1182 "src/profiler/heap-snapshot-generator.h", |
1183 "src/profiler/profile-generator-inl.h", | 1183 "src/profiler/profile-generator-inl.h", |
1184 "src/profiler/profile-generator.cc", | 1184 "src/profiler/profile-generator.cc", |
1185 "src/profiler/profile-generator.h", | 1185 "src/profiler/profile-generator.h", |
1186 "src/profiler/sampler.cc", | 1186 "src/profiler/sampler.cc", |
1187 "src/profiler/sampler.h", | 1187 "src/profiler/sampler.h", |
| 1188 "src/profiler/sampling-heap-profiler.cc", |
| 1189 "src/profiler/sampling-heap-profiler.h", |
1188 "src/profiler/strings-storage.cc", | 1190 "src/profiler/strings-storage.cc", |
1189 "src/profiler/strings-storage.h", | 1191 "src/profiler/strings-storage.h", |
1190 "src/profiler/unbound-queue-inl.h", | 1192 "src/profiler/unbound-queue-inl.h", |
1191 "src/profiler/unbound-queue.h", | 1193 "src/profiler/unbound-queue.h", |
1192 "src/property-descriptor.cc", | 1194 "src/property-descriptor.cc", |
1193 "src/property-descriptor.h", | 1195 "src/property-descriptor.h", |
1194 "src/property-details.h", | 1196 "src/property-details.h", |
1195 "src/property.cc", | 1197 "src/property.cc", |
1196 "src/property.h", | 1198 "src/property.h", |
1197 "src/prototype.h", | 1199 "src/prototype.h", |
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1901 if (!is_component_build) { | 1903 if (!is_component_build) { |
1902 sources += [ | 1904 sources += [ |
1903 "$target_gen_dir/d8-js.cc", | 1905 "$target_gen_dir/d8-js.cc", |
1904 ] | 1906 ] |
1905 } | 1907 } |
1906 if (v8_enable_i18n_support) { | 1908 if (v8_enable_i18n_support) { |
1907 deps += [ "//third_party/icu" ] | 1909 deps += [ "//third_party/icu" ] |
1908 } | 1910 } |
1909 } | 1911 } |
1910 } | 1912 } |
OLD | NEW |