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 13 matching lines...) Expand all Loading... |
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-dispatcher/compiler-dispatcher-tracer-unittest.cc", |
33 "compiler/branch-elimination-unittest.cc", | 33 "compiler/branch-elimination-unittest.cc", |
34 "compiler/bytecode-analysis-unittest.cc", | |
35 "compiler/checkpoint-elimination-unittest.cc", | 34 "compiler/checkpoint-elimination-unittest.cc", |
36 "compiler/common-operator-reducer-unittest.cc", | 35 "compiler/common-operator-reducer-unittest.cc", |
37 "compiler/common-operator-unittest.cc", | 36 "compiler/common-operator-unittest.cc", |
38 "compiler/compiler-test-utils.h", | 37 "compiler/compiler-test-utils.h", |
39 "compiler/control-equivalence-unittest.cc", | 38 "compiler/control-equivalence-unittest.cc", |
40 "compiler/control-flow-optimizer-unittest.cc", | 39 "compiler/control-flow-optimizer-unittest.cc", |
41 "compiler/dead-code-elimination-unittest.cc", | 40 "compiler/dead-code-elimination-unittest.cc", |
42 "compiler/diamond-unittest.cc", | 41 "compiler/diamond-unittest.cc", |
43 "compiler/effect-control-linearizer-unittest.cc", | 42 "compiler/effect-control-linearizer-unittest.cc", |
44 "compiler/escape-analysis-unittest.cc", | 43 "compiler/escape-analysis-unittest.cc", |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 deps += [ "//third_party/icu" ] | 178 deps += [ "//third_party/icu" ] |
180 } | 179 } |
181 | 180 |
182 if (is_win) { | 181 if (is_win) { |
183 # This warning is benignly triggered by the U16 and U32 macros in | 182 # This warning is benignly triggered by the U16 and U32 macros in |
184 # bytecode-utils.h. | 183 # bytecode-utils.h. |
185 # C4309: 'static_cast': truncation of constant value | 184 # C4309: 'static_cast': truncation of constant value |
186 cflags = [ "/wd4309" ] | 185 cflags = [ "/wd4309" ] |
187 } | 186 } |
188 } | 187 } |
OLD | NEW |