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

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

Issue 2576453002: [heap] Create a thin wrapper around wrapper tracing in V8 to avoid misuse (Closed)
Patch Set: Include Created 4 years 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/v8.gyp ('k') | test/unittests/heap/embedder-tracing-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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "compiler/state-values-utils-unittest.cc", 86 "compiler/state-values-utils-unittest.cc",
87 "compiler/tail-call-optimization-unittest.cc", 87 "compiler/tail-call-optimization-unittest.cc",
88 "compiler/typed-optimization-unittest.cc", 88 "compiler/typed-optimization-unittest.cc",
89 "compiler/typer-unittest.cc", 89 "compiler/typer-unittest.cc",
90 "compiler/value-numbering-reducer-unittest.cc", 90 "compiler/value-numbering-reducer-unittest.cc",
91 "compiler/zone-stats-unittest.cc", 91 "compiler/zone-stats-unittest.cc",
92 "counters-unittest.cc", 92 "counters-unittest.cc",
93 "eh-frame-iterator-unittest.cc", 93 "eh-frame-iterator-unittest.cc",
94 "eh-frame-writer-unittest.cc", 94 "eh-frame-writer-unittest.cc",
95 "heap/bitmap-unittest.cc", 95 "heap/bitmap-unittest.cc",
96 "heap/embedder-tracing-unittest.cc",
96 "heap/gc-idle-time-handler-unittest.cc", 97 "heap/gc-idle-time-handler-unittest.cc",
97 "heap/gc-tracer-unittest.cc", 98 "heap/gc-tracer-unittest.cc",
98 "heap/heap-unittest.cc", 99 "heap/heap-unittest.cc",
99 "heap/marking-unittest.cc", 100 "heap/marking-unittest.cc",
100 "heap/memory-reducer-unittest.cc", 101 "heap/memory-reducer-unittest.cc",
101 "heap/scavenge-job-unittest.cc", 102 "heap/scavenge-job-unittest.cc",
102 "heap/slot-set-unittest.cc", 103 "heap/slot-set-unittest.cc",
103 "interpreter/bytecode-array-builder-unittest.cc", 104 "interpreter/bytecode-array-builder-unittest.cc",
104 "interpreter/bytecode-array-iterator-unittest.cc", 105 "interpreter/bytecode-array-iterator-unittest.cc",
105 "interpreter/bytecode-array-random-iterator-unittest.cc", 106 "interpreter/bytecode-array-random-iterator-unittest.cc",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 deps += [ "//third_party/icu" ] 185 deps += [ "//third_party/icu" ]
185 } 186 }
186 187
187 if (is_win) { 188 if (is_win) {
188 # This warning is benignly triggered by the U16 and U32 macros in 189 # This warning is benignly triggered by the U16 and U32 macros in
189 # bytecode-utils.h. 190 # bytecode-utils.h.
190 # C4309: 'static_cast': truncation of constant value 191 # C4309: 'static_cast': truncation of constant value
191 cflags = [ "/wd4309" ] 192 cflags = [ "/wd4309" ]
192 } 193 }
193 } 194 }
OLDNEW
« no previous file with comments | « src/v8.gyp ('k') | test/unittests/heap/embedder-tracing-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698