OLD | NEW |
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 Loading... |
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 deps += [ "//third_party/icu" ] | 183 deps += [ "//third_party/icu" ] |
183 } | 184 } |
184 | 185 |
185 if (is_win) { | 186 if (is_win) { |
186 # This warning is benignly triggered by the U16 and U32 macros in | 187 # This warning is benignly triggered by the U16 and U32 macros in |
187 # bytecode-utils.h. | 188 # bytecode-utils.h. |
188 # C4309: 'static_cast': truncation of constant value | 189 # C4309: 'static_cast': truncation of constant value |
189 cflags = [ "/wd4309" ] | 190 cflags = [ "/wd4309" ] |
190 } | 191 } |
191 } | 192 } |
OLD | NEW |