Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Side by Side Diff: BUILD.gn

Issue 1555553002: [profiler] Implement POC Sampling Heap Profiler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove unused variable Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | include/v8-profiler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
1166 "src/profiler/strings-storage.cc", 1168 "src/profiler/strings-storage.cc",
1167 "src/profiler/strings-storage.h", 1169 "src/profiler/strings-storage.h",
1168 "src/profiler/unbound-queue-inl.h", 1170 "src/profiler/unbound-queue-inl.h",
1169 "src/profiler/unbound-queue.h", 1171 "src/profiler/unbound-queue.h",
1170 "src/property-descriptor.cc", 1172 "src/property-descriptor.cc",
1171 "src/property-descriptor.h", 1173 "src/property-descriptor.h",
1172 "src/property-details.h", 1174 "src/property-details.h",
1173 "src/property.cc", 1175 "src/property.cc",
1174 "src/property.h", 1176 "src/property.h",
1175 "src/prototype.h", 1177 "src/prototype.h",
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
1856 if (!is_component_build) { 1858 if (!is_component_build) {
1857 sources += [ 1859 sources += [
1858 "$target_gen_dir/d8-js.cc", 1860 "$target_gen_dir/d8-js.cc",
1859 ] 1861 ]
1860 } 1862 }
1861 if (v8_enable_i18n_support) { 1863 if (v8_enable_i18n_support) {
1862 deps += [ "//third_party/icu" ] 1864 deps += [ "//third_party/icu" ]
1863 } 1865 }
1864 } 1866 }
1865 } 1867 }
OLDNEW
« no previous file with comments | « no previous file | include/v8-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698