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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 "interpreter/bytecode-register-optimizer-unittest.cc", | 113 "interpreter/bytecode-register-optimizer-unittest.cc", |
114 "interpreter/bytecode-utils.h", | 114 "interpreter/bytecode-utils.h", |
115 "interpreter/bytecodes-unittest.cc", | 115 "interpreter/bytecodes-unittest.cc", |
116 "interpreter/constant-array-builder-unittest.cc", | 116 "interpreter/constant-array-builder-unittest.cc", |
117 "interpreter/interpreter-assembler-unittest.cc", | 117 "interpreter/interpreter-assembler-unittest.cc", |
118 "interpreter/interpreter-assembler-unittest.h", | 118 "interpreter/interpreter-assembler-unittest.h", |
119 "libplatform/default-platform-unittest.cc", | 119 "libplatform/default-platform-unittest.cc", |
120 "libplatform/task-queue-unittest.cc", | 120 "libplatform/task-queue-unittest.cc", |
121 "libplatform/worker-thread-unittest.cc", | 121 "libplatform/worker-thread-unittest.cc", |
122 "locked-queue-unittest.cc", | 122 "locked-queue-unittest.cc", |
| 123 "object-unittest.cc", |
123 "register-configuration-unittest.cc", | 124 "register-configuration-unittest.cc", |
124 "run-all-unittests.cc", | 125 "run-all-unittests.cc", |
125 "source-position-table-unittest.cc", | 126 "source-position-table-unittest.cc", |
126 "test-utils.cc", | 127 "test-utils.cc", |
127 "test-utils.h", | 128 "test-utils.h", |
128 "unicode-unittest.cc", | 129 "unicode-unittest.cc", |
129 "value-serializer-unittest.cc", | 130 "value-serializer-unittest.cc", |
130 "wasm/asm-types-unittest.cc", | 131 "wasm/asm-types-unittest.cc", |
131 "wasm/ast-decoder-unittest.cc", | 132 "wasm/ast-decoder-unittest.cc", |
132 "wasm/control-transfer-unittest.cc", | 133 "wasm/control-transfer-unittest.cc", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 deps += [ "//third_party/icu" ] | 184 deps += [ "//third_party/icu" ] |
184 } | 185 } |
185 | 186 |
186 if (is_win) { | 187 if (is_win) { |
187 # This warning is benignly triggered by the U16 and U32 macros in | 188 # This warning is benignly triggered by the U16 and U32 macros in |
188 # bytecode-utils.h. | 189 # bytecode-utils.h. |
189 # C4309: 'static_cast': truncation of constant value | 190 # C4309: 'static_cast': truncation of constant value |
190 cflags = [ "/wd4309" ] | 191 cflags = [ "/wd4309" ] |
191 } | 192 } |
192 } | 193 } |
OLD | NEW |