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

Side by Side Diff: BUILD.gn

Issue 1323993004: [heap] Separate scavenger functionality into own file. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. 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/heap/heap.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 # Because standalone V8 builds are not supported, assume this is part of a 10 # Because standalone V8 builds are not supported, assume this is part of a
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 "src/heap/mark-compact-inl.h", 977 "src/heap/mark-compact-inl.h",
978 "src/heap/mark-compact.cc", 978 "src/heap/mark-compact.cc",
979 "src/heap/mark-compact.h", 979 "src/heap/mark-compact.h",
980 "src/heap/memory-reducer.cc", 980 "src/heap/memory-reducer.cc",
981 "src/heap/memory-reducer.h", 981 "src/heap/memory-reducer.h",
982 "src/heap/object-stats.cc", 982 "src/heap/object-stats.cc",
983 "src/heap/object-stats.h", 983 "src/heap/object-stats.h",
984 "src/heap/objects-visiting-inl.h", 984 "src/heap/objects-visiting-inl.h",
985 "src/heap/objects-visiting.cc", 985 "src/heap/objects-visiting.cc",
986 "src/heap/objects-visiting.h", 986 "src/heap/objects-visiting.h",
987 "src/heap/scavenger-inl.h",
988 "src/heap/scavenger.cc",
989 "src/heap/scavenger.h",
987 "src/heap/spaces-inl.h", 990 "src/heap/spaces-inl.h",
988 "src/heap/spaces.cc", 991 "src/heap/spaces.cc",
989 "src/heap/spaces.h", 992 "src/heap/spaces.h",
990 "src/heap/store-buffer-inl.h", 993 "src/heap/store-buffer-inl.h",
991 "src/heap/store-buffer.cc", 994 "src/heap/store-buffer.cc",
992 "src/heap/store-buffer.h", 995 "src/heap/store-buffer.h",
993 "src/hydrogen-alias-analysis.h", 996 "src/hydrogen-alias-analysis.h",
994 "src/hydrogen-bce.cc", 997 "src/hydrogen-bce.cc",
995 "src/hydrogen-bce.h", 998 "src/hydrogen-bce.h",
996 "src/hydrogen-bch.cc", 999 "src/hydrogen-bch.cc",
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
1862 if (!is_component_build) { 1865 if (!is_component_build) {
1863 sources += [ 1866 sources += [
1864 "$target_gen_dir/d8-js.cc", 1867 "$target_gen_dir/d8-js.cc",
1865 ] 1868 ]
1866 } 1869 }
1867 if (v8_enable_i18n_support) { 1870 if (v8_enable_i18n_support) {
1868 deps += [ "//third_party/icu" ] 1871 deps += [ "//third_party/icu" ]
1869 } 1872 }
1870 } 1873 }
1871 } 1874 }
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698