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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "eh-frame-writer-unittest.cc", | 102 "eh-frame-writer-unittest.cc", |
103 "heap/bitmap-unittest.cc", | 103 "heap/bitmap-unittest.cc", |
104 "heap/embedder-tracing-unittest.cc", | 104 "heap/embedder-tracing-unittest.cc", |
105 "heap/gc-idle-time-handler-unittest.cc", | 105 "heap/gc-idle-time-handler-unittest.cc", |
106 "heap/gc-tracer-unittest.cc", | 106 "heap/gc-tracer-unittest.cc", |
107 "heap/heap-unittest.cc", | 107 "heap/heap-unittest.cc", |
108 "heap/marking-unittest.cc", | 108 "heap/marking-unittest.cc", |
109 "heap/memory-reducer-unittest.cc", | 109 "heap/memory-reducer-unittest.cc", |
110 "heap/scavenge-job-unittest.cc", | 110 "heap/scavenge-job-unittest.cc", |
111 "heap/slot-set-unittest.cc", | 111 "heap/slot-set-unittest.cc", |
| 112 "heap/spaces-unittest.cc", |
112 "heap/unmapper-unittest.cc", | 113 "heap/unmapper-unittest.cc", |
113 "interpreter/bytecode-array-builder-unittest.cc", | 114 "interpreter/bytecode-array-builder-unittest.cc", |
114 "interpreter/bytecode-array-iterator-unittest.cc", | 115 "interpreter/bytecode-array-iterator-unittest.cc", |
115 "interpreter/bytecode-array-random-iterator-unittest.cc", | 116 "interpreter/bytecode-array-random-iterator-unittest.cc", |
116 "interpreter/bytecode-array-writer-unittest.cc", | 117 "interpreter/bytecode-array-writer-unittest.cc", |
117 "interpreter/bytecode-dead-code-optimizer-unittest.cc", | 118 "interpreter/bytecode-dead-code-optimizer-unittest.cc", |
118 "interpreter/bytecode-decoder-unittest.cc", | 119 "interpreter/bytecode-decoder-unittest.cc", |
119 "interpreter/bytecode-operands-unittest.cc", | 120 "interpreter/bytecode-operands-unittest.cc", |
120 "interpreter/bytecode-peephole-optimizer-unittest.cc", | 121 "interpreter/bytecode-peephole-optimizer-unittest.cc", |
121 "interpreter/bytecode-pipeline-unittest.cc", | 122 "interpreter/bytecode-pipeline-unittest.cc", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 deps += [ "//third_party/icu" ] | 198 deps += [ "//third_party/icu" ] |
198 } | 199 } |
199 | 200 |
200 if (is_win) { | 201 if (is_win) { |
201 # This warning is benignly triggered by the U16 and U32 macros in | 202 # This warning is benignly triggered by the U16 and U32 macros in |
202 # bytecode-utils.h. | 203 # bytecode-utils.h. |
203 # C4309: 'static_cast': truncation of constant value | 204 # C4309: 'static_cast': truncation of constant value |
204 cflags = [ "/wd4309" ] | 205 cflags = [ "/wd4309" ] |
205 } | 206 } |
206 } | 207 } |
OLD | NEW |