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

Side by Side Diff: BUILD.gn

Issue 1320503004: [heap] Move IdentityMap data structure out of heap. (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/heap/identity-map.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 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 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 "src/heap-snapshot-generator-inl.h", 947 "src/heap-snapshot-generator-inl.h",
948 "src/heap-snapshot-generator.cc", 948 "src/heap-snapshot-generator.cc",
949 "src/heap-snapshot-generator.h", 949 "src/heap-snapshot-generator.h",
950 "src/heap/gc-idle-time-handler.cc", 950 "src/heap/gc-idle-time-handler.cc",
951 "src/heap/gc-idle-time-handler.h", 951 "src/heap/gc-idle-time-handler.h",
952 "src/heap/gc-tracer.cc", 952 "src/heap/gc-tracer.cc",
953 "src/heap/gc-tracer.h", 953 "src/heap/gc-tracer.h",
954 "src/heap/heap-inl.h", 954 "src/heap/heap-inl.h",
955 "src/heap/heap.cc", 955 "src/heap/heap.cc",
956 "src/heap/heap.h", 956 "src/heap/heap.h",
957 "src/heap/identity-map.cc",
958 "src/heap/identity-map.h",
959 "src/heap/incremental-marking.cc", 957 "src/heap/incremental-marking.cc",
960 "src/heap/incremental-marking.h", 958 "src/heap/incremental-marking.h",
961 "src/heap/mark-compact-inl.h", 959 "src/heap/mark-compact-inl.h",
962 "src/heap/mark-compact.cc", 960 "src/heap/mark-compact.cc",
963 "src/heap/mark-compact.h", 961 "src/heap/mark-compact.h",
964 "src/heap/memory-reducer.cc", 962 "src/heap/memory-reducer.cc",
965 "src/heap/memory-reducer.h", 963 "src/heap/memory-reducer.h",
966 "src/heap/objects-visiting-inl.h", 964 "src/heap/objects-visiting-inl.h",
967 "src/heap/objects-visiting.cc", 965 "src/heap/objects-visiting.cc",
968 "src/heap/objects-visiting.h", 966 "src/heap/objects-visiting.h",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 "src/ic/handler-compiler.h", 1034 "src/ic/handler-compiler.h",
1037 "src/ic/ic-inl.h", 1035 "src/ic/ic-inl.h",
1038 "src/ic/ic-state.cc", 1036 "src/ic/ic-state.cc",
1039 "src/ic/ic-state.h", 1037 "src/ic/ic-state.h",
1040 "src/ic/ic.cc", 1038 "src/ic/ic.cc",
1041 "src/ic/ic.h", 1039 "src/ic/ic.h",
1042 "src/ic/ic-compiler.cc", 1040 "src/ic/ic-compiler.cc",
1043 "src/ic/ic-compiler.h", 1041 "src/ic/ic-compiler.h",
1044 "src/ic/stub-cache.cc", 1042 "src/ic/stub-cache.cc",
1045 "src/ic/stub-cache.h", 1043 "src/ic/stub-cache.h",
1044 "src/identity-map.cc",
1045 "src/identity-map.h",
1046 "src/interface-descriptors.cc", 1046 "src/interface-descriptors.cc",
1047 "src/interface-descriptors.h", 1047 "src/interface-descriptors.h",
1048 "src/interpreter/bytecodes.cc", 1048 "src/interpreter/bytecodes.cc",
1049 "src/interpreter/bytecodes.h", 1049 "src/interpreter/bytecodes.h",
1050 "src/interpreter/bytecode-array-builder.cc", 1050 "src/interpreter/bytecode-array-builder.cc",
1051 "src/interpreter/bytecode-array-builder.h", 1051 "src/interpreter/bytecode-array-builder.h",
1052 "src/interpreter/bytecode-generator.cc", 1052 "src/interpreter/bytecode-generator.cc",
1053 "src/interpreter/bytecode-generator.h", 1053 "src/interpreter/bytecode-generator.h",
1054 "src/interpreter/interpreter.cc", 1054 "src/interpreter/interpreter.cc",
1055 "src/interpreter/interpreter.h", 1055 "src/interpreter/interpreter.h",
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
1821 if (!is_component_build) { 1821 if (!is_component_build) {
1822 sources += [ 1822 sources += [
1823 "$target_gen_dir/d8-js.cc", 1823 "$target_gen_dir/d8-js.cc",
1824 ] 1824 ]
1825 } 1825 }
1826 if (v8_enable_i18n_support) { 1826 if (v8_enable_i18n_support) {
1827 deps += [ "//third_party/icu" ] 1827 deps += [ "//third_party/icu" ]
1828 } 1828 }
1829 } 1829 }
1830 } 1830 }
OLDNEW
« no previous file with comments | « no previous file | src/heap/identity-map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698