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

Side by Side Diff: BUILD.gn

Issue 1326793002: [heap] Separate ObjectStats out into its own class. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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 | src/api.cc » ('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 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 952 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 "src/heap/heap-inl.h", 963 "src/heap/heap-inl.h",
964 "src/heap/heap.cc", 964 "src/heap/heap.cc",
965 "src/heap/heap.h", 965 "src/heap/heap.h",
966 "src/heap/incremental-marking.cc", 966 "src/heap/incremental-marking.cc",
967 "src/heap/incremental-marking.h", 967 "src/heap/incremental-marking.h",
968 "src/heap/mark-compact-inl.h", 968 "src/heap/mark-compact-inl.h",
969 "src/heap/mark-compact.cc", 969 "src/heap/mark-compact.cc",
970 "src/heap/mark-compact.h", 970 "src/heap/mark-compact.h",
971 "src/heap/memory-reducer.cc", 971 "src/heap/memory-reducer.cc",
972 "src/heap/memory-reducer.h", 972 "src/heap/memory-reducer.h",
973 "src/heap/object-stats.cc",
974 "src/heap/object-stats.h",
973 "src/heap/objects-visiting-inl.h", 975 "src/heap/objects-visiting-inl.h",
974 "src/heap/objects-visiting.cc", 976 "src/heap/objects-visiting.cc",
975 "src/heap/objects-visiting.h", 977 "src/heap/objects-visiting.h",
976 "src/heap/spaces-inl.h", 978 "src/heap/spaces-inl.h",
977 "src/heap/spaces.cc", 979 "src/heap/spaces.cc",
978 "src/heap/spaces.h", 980 "src/heap/spaces.h",
979 "src/heap/store-buffer-inl.h", 981 "src/heap/store-buffer-inl.h",
980 "src/heap/store-buffer.cc", 982 "src/heap/store-buffer.cc",
981 "src/heap/store-buffer.h", 983 "src/heap/store-buffer.h",
982 "src/hydrogen-alias-analysis.h", 984 "src/hydrogen-alias-analysis.h",
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
1836 if (!is_component_build) { 1838 if (!is_component_build) {
1837 sources += [ 1839 sources += [
1838 "$target_gen_dir/d8-js.cc", 1840 "$target_gen_dir/d8-js.cc",
1839 ] 1841 ]
1840 } 1842 }
1841 if (v8_enable_i18n_support) { 1843 if (v8_enable_i18n_support) {
1842 deps += [ "//third_party/icu" ] 1844 deps += [ "//third_party/icu" ]
1843 } 1845 }
1844 } 1846 }
1845 } 1847 }
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698