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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 "heap/bitmap-unittest.cc", | 92 "heap/bitmap-unittest.cc", |
93 "heap/gc-idle-time-handler-unittest.cc", | 93 "heap/gc-idle-time-handler-unittest.cc", |
94 "heap/gc-tracer-unittest.cc", | 94 "heap/gc-tracer-unittest.cc", |
95 "heap/heap-unittest.cc", | 95 "heap/heap-unittest.cc", |
96 "heap/marking-unittest.cc", | 96 "heap/marking-unittest.cc", |
97 "heap/memory-reducer-unittest.cc", | 97 "heap/memory-reducer-unittest.cc", |
98 "heap/scavenge-job-unittest.cc", | 98 "heap/scavenge-job-unittest.cc", |
99 "heap/slot-set-unittest.cc", | 99 "heap/slot-set-unittest.cc", |
100 "interpreter/bytecode-array-builder-unittest.cc", | 100 "interpreter/bytecode-array-builder-unittest.cc", |
101 "interpreter/bytecode-array-iterator-unittest.cc", | 101 "interpreter/bytecode-array-iterator-unittest.cc", |
102 "interpreter/bytecode-array-reverse-iterator-unittest.cc", | 102 "interpreter/bytecode-array-random-iterator-unittest.cc", |
103 "interpreter/bytecode-array-writer-unittest.cc", | 103 "interpreter/bytecode-array-writer-unittest.cc", |
104 "interpreter/bytecode-dead-code-optimizer-unittest.cc", | 104 "interpreter/bytecode-dead-code-optimizer-unittest.cc", |
105 "interpreter/bytecode-decoder-unittest.cc", | 105 "interpreter/bytecode-decoder-unittest.cc", |
106 "interpreter/bytecode-peephole-optimizer-unittest.cc", | 106 "interpreter/bytecode-peephole-optimizer-unittest.cc", |
107 "interpreter/bytecode-pipeline-unittest.cc", | 107 "interpreter/bytecode-pipeline-unittest.cc", |
108 "interpreter/bytecode-register-allocator-unittest.cc", | 108 "interpreter/bytecode-register-allocator-unittest.cc", |
109 "interpreter/bytecode-register-optimizer-unittest.cc", | 109 "interpreter/bytecode-register-optimizer-unittest.cc", |
110 "interpreter/bytecode-utils.h", | 110 "interpreter/bytecode-utils.h", |
111 "interpreter/bytecodes-unittest.cc", | 111 "interpreter/bytecodes-unittest.cc", |
112 "interpreter/constant-array-builder-unittest.cc", | 112 "interpreter/constant-array-builder-unittest.cc", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 deps += [ "//third_party/icu" ] | 179 deps += [ "//third_party/icu" ] |
180 } | 180 } |
181 | 181 |
182 if (is_win) { | 182 if (is_win) { |
183 # This warning is benignly triggered by the U16 and U32 macros in | 183 # This warning is benignly triggered by the U16 and U32 macros in |
184 # bytecode-utils.h. | 184 # bytecode-utils.h. |
185 # C4309: 'static_cast': truncation of constant value | 185 # C4309: 'static_cast': truncation of constant value |
186 cflags = [ "/wd4309" ] | 186 cflags = [ "/wd4309" ] |
187 } | 187 } |
188 } | 188 } |
OLD | NEW |