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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "locked-queue-unittest.cc", | 123 "locked-queue-unittest.cc", |
124 "object-unittest.cc", | 124 "object-unittest.cc", |
125 "register-configuration-unittest.cc", | 125 "register-configuration-unittest.cc", |
126 "run-all-unittests.cc", | 126 "run-all-unittests.cc", |
127 "source-position-table-unittest.cc", | 127 "source-position-table-unittest.cc", |
128 "test-utils.cc", | 128 "test-utils.cc", |
129 "test-utils.h", | 129 "test-utils.h", |
130 "unicode-unittest.cc", | 130 "unicode-unittest.cc", |
131 "value-serializer-unittest.cc", | 131 "value-serializer-unittest.cc", |
132 "wasm/asm-types-unittest.cc", | 132 "wasm/asm-types-unittest.cc", |
133 "wasm/ast-decoder-unittest.cc", | |
134 "wasm/control-transfer-unittest.cc", | 133 "wasm/control-transfer-unittest.cc", |
135 "wasm/decoder-unittest.cc", | 134 "wasm/decoder-unittest.cc", |
| 135 "wasm/function-body-decoder-unittest.cc", |
136 "wasm/leb-helper-unittest.cc", | 136 "wasm/leb-helper-unittest.cc", |
137 "wasm/loop-assignment-analysis-unittest.cc", | 137 "wasm/loop-assignment-analysis-unittest.cc", |
138 "wasm/module-decoder-unittest.cc", | 138 "wasm/module-decoder-unittest.cc", |
139 "wasm/switch-logic-unittest.cc", | 139 "wasm/switch-logic-unittest.cc", |
140 "wasm/wasm-macro-gen-unittest.cc", | 140 "wasm/wasm-macro-gen-unittest.cc", |
141 "wasm/wasm-module-builder-unittest.cc", | 141 "wasm/wasm-module-builder-unittest.cc", |
142 "zone/segmentpool-unittest.cc", | 142 "zone/segmentpool-unittest.cc", |
143 "zone/zone-chunk-list-unittest.cc", | 143 "zone/zone-chunk-list-unittest.cc", |
144 ] | 144 ] |
145 | 145 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 deps += [ "//third_party/icu" ] | 185 deps += [ "//third_party/icu" ] |
186 } | 186 } |
187 | 187 |
188 if (is_win) { | 188 if (is_win) { |
189 # 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 |
190 # bytecode-utils.h. | 190 # bytecode-utils.h. |
191 # C4309: 'static_cast': truncation of constant value | 191 # C4309: 'static_cast': truncation of constant value |
192 cflags = [ "/wd4309" ] | 192 cflags = [ "/wd4309" ] |
193 } | 193 } |
194 } | 194 } |
OLD | NEW |