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 11 matching lines...) Expand all Loading... |
22 "base/platform/condition-variable-unittest.cc", | 22 "base/platform/condition-variable-unittest.cc", |
23 "base/platform/mutex-unittest.cc", | 23 "base/platform/mutex-unittest.cc", |
24 "base/platform/platform-unittest.cc", | 24 "base/platform/platform-unittest.cc", |
25 "base/platform/semaphore-unittest.cc", | 25 "base/platform/semaphore-unittest.cc", |
26 "base/platform/time-unittest.cc", | 26 "base/platform/time-unittest.cc", |
27 "base/sys-info-unittest.cc", | 27 "base/sys-info-unittest.cc", |
28 "base/utils/random-number-generator-unittest.cc", | 28 "base/utils/random-number-generator-unittest.cc", |
29 "cancelable-tasks-unittest.cc", | 29 "cancelable-tasks-unittest.cc", |
30 "char-predicates-unittest.cc", | 30 "char-predicates-unittest.cc", |
31 "compiler-dispatcher/compiler-dispatcher-job-unittest.cc", | 31 "compiler-dispatcher/compiler-dispatcher-job-unittest.cc", |
| 32 "compiler-dispatcher/compiler-dispatcher-tracer-unittest.cc", |
32 "compiler/branch-elimination-unittest.cc", | 33 "compiler/branch-elimination-unittest.cc", |
33 "compiler/checkpoint-elimination-unittest.cc", | 34 "compiler/checkpoint-elimination-unittest.cc", |
34 "compiler/common-operator-reducer-unittest.cc", | 35 "compiler/common-operator-reducer-unittest.cc", |
35 "compiler/common-operator-unittest.cc", | 36 "compiler/common-operator-unittest.cc", |
36 "compiler/compiler-test-utils.h", | 37 "compiler/compiler-test-utils.h", |
37 "compiler/control-equivalence-unittest.cc", | 38 "compiler/control-equivalence-unittest.cc", |
38 "compiler/control-flow-optimizer-unittest.cc", | 39 "compiler/control-flow-optimizer-unittest.cc", |
39 "compiler/dead-code-elimination-unittest.cc", | 40 "compiler/dead-code-elimination-unittest.cc", |
40 "compiler/diamond-unittest.cc", | 41 "compiler/diamond-unittest.cc", |
41 "compiler/effect-control-linearizer-unittest.cc", | 42 "compiler/effect-control-linearizer-unittest.cc", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 184 |
184 # Suppress warnings about importing locally defined symbols. | 185 # Suppress warnings about importing locally defined symbols. |
185 if (is_component_build) { | 186 if (is_component_build) { |
186 ldflags = [ | 187 ldflags = [ |
187 "/ignore:4049", | 188 "/ignore:4049", |
188 "/ignore:4217", | 189 "/ignore:4217", |
189 ] | 190 ] |
190 } | 191 } |
191 } | 192 } |
192 } | 193 } |
OLD | NEW |