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 # Please keep this file in sync with unittests.gyp. | 5 # Please keep this file in sync with unittests.gyp. |
6 | 6 |
7 import("../../gni/v8.gni") | 7 import("../../gni/v8.gni") |
8 | 8 |
9 v8_executable("unittests") { | 9 v8_executable("unittests") { |
10 testonly = true | 10 testonly = true |
11 | 11 |
12 sources = [ | 12 sources = [ |
13 "base/atomic-utils-unittest.cc", | 13 "base/atomic-utils-unittest.cc", |
14 "base/bits-unittest.cc", | 14 "base/bits-unittest.cc", |
15 "base/cpu-unittest.cc", | 15 "base/cpu-unittest.cc", |
16 "base/division-by-constant-unittest.cc", | 16 "base/division-by-constant-unittest.cc", |
17 "base/flags-unittest.cc", | 17 "base/flags-unittest.cc", |
18 "base/functional-unittest.cc", | 18 "base/functional-unittest.cc", |
| 19 "base/ieee754-unittest.cc", |
19 "base/iterator-unittest.cc", | 20 "base/iterator-unittest.cc", |
20 "base/logging-unittest.cc", | 21 "base/logging-unittest.cc", |
21 "base/platform/condition-variable-unittest.cc", | 22 "base/platform/condition-variable-unittest.cc", |
22 "base/platform/mutex-unittest.cc", | 23 "base/platform/mutex-unittest.cc", |
23 "base/platform/platform-unittest.cc", | 24 "base/platform/platform-unittest.cc", |
24 "base/platform/semaphore-unittest.cc", | 25 "base/platform/semaphore-unittest.cc", |
25 "base/platform/time-unittest.cc", | 26 "base/platform/time-unittest.cc", |
26 "base/sys-info-unittest.cc", | 27 "base/sys-info-unittest.cc", |
27 "base/utils/random-number-generator-unittest.cc", | 28 "base/utils/random-number-generator-unittest.cc", |
28 "cancelable-tasks-unittest.cc", | 29 "cancelable-tasks-unittest.cc", |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "interpreter/bytecode-register-optimizer-unittest.cc", | 98 "interpreter/bytecode-register-optimizer-unittest.cc", |
98 "interpreter/bytecodes-unittest.cc", | 99 "interpreter/bytecodes-unittest.cc", |
99 "interpreter/constant-array-builder-unittest.cc", | 100 "interpreter/constant-array-builder-unittest.cc", |
100 "interpreter/interpreter-assembler-unittest.cc", | 101 "interpreter/interpreter-assembler-unittest.cc", |
101 "interpreter/interpreter-assembler-unittest.h", | 102 "interpreter/interpreter-assembler-unittest.h", |
102 "interpreter/source-position-table-unittest.cc", | 103 "interpreter/source-position-table-unittest.cc", |
103 "libplatform/default-platform-unittest.cc", | 104 "libplatform/default-platform-unittest.cc", |
104 "libplatform/task-queue-unittest.cc", | 105 "libplatform/task-queue-unittest.cc", |
105 "libplatform/worker-thread-unittest.cc", | 106 "libplatform/worker-thread-unittest.cc", |
106 "locked-queue-unittest.cc", | 107 "locked-queue-unittest.cc", |
| 108 "register-configuration-unittest.cc", |
107 "run-all-unittests.cc", | 109 "run-all-unittests.cc", |
108 "test-utils.cc", | 110 "test-utils.cc", |
109 "test-utils.h", | 111 "test-utils.h", |
110 "wasm/asm-types-unittest.cc", | 112 "wasm/asm-types-unittest.cc", |
111 "wasm/ast-decoder-unittest.cc", | 113 "wasm/ast-decoder-unittest.cc", |
112 "wasm/control-transfer-unittest.cc", | 114 "wasm/control-transfer-unittest.cc", |
113 "wasm/decoder-unittest.cc", | 115 "wasm/decoder-unittest.cc", |
114 "wasm/encoder-unittest.cc", | 116 "wasm/encoder-unittest.cc", |
115 "wasm/leb-helper-unittest.cc", | 117 "wasm/leb-helper-unittest.cc", |
116 "wasm/loop-assignment-analysis-unittest.cc", | 118 "wasm/loop-assignment-analysis-unittest.cc", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 | 173 |
172 # Suppress warnings about importing locally defined symbols. | 174 # Suppress warnings about importing locally defined symbols. |
173 if (is_component_build) { | 175 if (is_component_build) { |
174 ldflags = [ | 176 ldflags = [ |
175 "/ignore:4049", | 177 "/ignore:4049", |
176 "/ignore:4217", | 178 "/ignore:4217", |
177 ] | 179 ] |
178 } | 180 } |
179 } | 181 } |
180 } | 182 } |
OLD | NEW |