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

Side by Side Diff: test/unittests/BUILD.gn

Issue 2689683002: [heap] Fix address space leak in Unmapper (Closed)
Patch Set: Windows compile fixes Created 3 years, 10 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 | « src/heap/spaces.cc ('k') | test/unittests/heap/unmapper-unittest.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 2016 The V8 project authors. All rights reserved. 1 # Copyright 2016 The V8 project 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("../../gni/v8.gni") 5 import("../../gni/v8.gni")
6 6
7 v8_executable("unittests") { 7 v8_executable("unittests") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "eh-frame-writer-unittest.cc", 98 "eh-frame-writer-unittest.cc",
99 "heap/bitmap-unittest.cc", 99 "heap/bitmap-unittest.cc",
100 "heap/embedder-tracing-unittest.cc", 100 "heap/embedder-tracing-unittest.cc",
101 "heap/gc-idle-time-handler-unittest.cc", 101 "heap/gc-idle-time-handler-unittest.cc",
102 "heap/gc-tracer-unittest.cc", 102 "heap/gc-tracer-unittest.cc",
103 "heap/heap-unittest.cc", 103 "heap/heap-unittest.cc",
104 "heap/marking-unittest.cc", 104 "heap/marking-unittest.cc",
105 "heap/memory-reducer-unittest.cc", 105 "heap/memory-reducer-unittest.cc",
106 "heap/scavenge-job-unittest.cc", 106 "heap/scavenge-job-unittest.cc",
107 "heap/slot-set-unittest.cc", 107 "heap/slot-set-unittest.cc",
108 "heap/unmapper-unittest.cc",
108 "interpreter/bytecode-array-builder-unittest.cc", 109 "interpreter/bytecode-array-builder-unittest.cc",
109 "interpreter/bytecode-array-iterator-unittest.cc", 110 "interpreter/bytecode-array-iterator-unittest.cc",
110 "interpreter/bytecode-array-random-iterator-unittest.cc", 111 "interpreter/bytecode-array-random-iterator-unittest.cc",
111 "interpreter/bytecode-array-writer-unittest.cc", 112 "interpreter/bytecode-array-writer-unittest.cc",
112 "interpreter/bytecode-dead-code-optimizer-unittest.cc", 113 "interpreter/bytecode-dead-code-optimizer-unittest.cc",
113 "interpreter/bytecode-decoder-unittest.cc", 114 "interpreter/bytecode-decoder-unittest.cc",
114 "interpreter/bytecode-operands-unittest.cc", 115 "interpreter/bytecode-operands-unittest.cc",
115 "interpreter/bytecode-peephole-optimizer-unittest.cc", 116 "interpreter/bytecode-peephole-optimizer-unittest.cc",
116 "interpreter/bytecode-pipeline-unittest.cc", 117 "interpreter/bytecode-pipeline-unittest.cc",
117 "interpreter/bytecode-register-allocator-unittest.cc", 118 "interpreter/bytecode-register-allocator-unittest.cc",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 deps += [ "//third_party/icu" ] 192 deps += [ "//third_party/icu" ]
192 } 193 }
193 194
194 if (is_win) { 195 if (is_win) {
195 # This warning is benignly triggered by the U16 and U32 macros in 196 # This warning is benignly triggered by the U16 and U32 macros in
196 # bytecode-utils.h. 197 # bytecode-utils.h.
197 # C4309: 'static_cast': truncation of constant value 198 # C4309: 'static_cast': truncation of constant value
198 cflags = [ "/wd4309" ] 199 cflags = [ "/wd4309" ]
199 } 200 }
200 } 201 }
OLDNEW
« no previous file with comments | « src/heap/spaces.cc ('k') | test/unittests/heap/unmapper-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698