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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "compiler/instruction-sequence-unittest.h", | 56 "compiler/instruction-sequence-unittest.h", |
57 "compiler/instruction-unittest.cc", | 57 "compiler/instruction-unittest.cc", |
58 "compiler/int64-lowering-unittest.cc", | 58 "compiler/int64-lowering-unittest.cc", |
59 "compiler/js-builtin-reducer-unittest.cc", | 59 "compiler/js-builtin-reducer-unittest.cc", |
60 "compiler/js-create-lowering-unittest.cc", | 60 "compiler/js-create-lowering-unittest.cc", |
61 "compiler/js-intrinsic-lowering-unittest.cc", | 61 "compiler/js-intrinsic-lowering-unittest.cc", |
62 "compiler/js-operator-unittest.cc", | 62 "compiler/js-operator-unittest.cc", |
63 "compiler/js-typed-lowering-unittest.cc", | 63 "compiler/js-typed-lowering-unittest.cc", |
64 "compiler/linkage-tail-call-unittest.cc", | 64 "compiler/linkage-tail-call-unittest.cc", |
65 "compiler/live-range-builder.h", | 65 "compiler/live-range-builder.h", |
66 "compiler/live-range-unittest.cc", | |
67 "compiler/liveness-analyzer-unittest.cc", | 66 "compiler/liveness-analyzer-unittest.cc", |
68 "compiler/load-elimination-unittest.cc", | 67 "compiler/load-elimination-unittest.cc", |
69 "compiler/loop-peeling-unittest.cc", | 68 "compiler/loop-peeling-unittest.cc", |
70 "compiler/machine-operator-reducer-unittest.cc", | 69 "compiler/machine-operator-reducer-unittest.cc", |
71 "compiler/machine-operator-unittest.cc", | 70 "compiler/machine-operator-unittest.cc", |
72 "compiler/move-optimizer-unittest.cc", | |
73 "compiler/node-cache-unittest.cc", | 71 "compiler/node-cache-unittest.cc", |
74 "compiler/node-matchers-unittest.cc", | 72 "compiler/node-matchers-unittest.cc", |
75 "compiler/node-properties-unittest.cc", | 73 "compiler/node-properties-unittest.cc", |
76 "compiler/node-test-utils.cc", | 74 "compiler/node-test-utils.cc", |
77 "compiler/node-test-utils.h", | 75 "compiler/node-test-utils.h", |
78 "compiler/node-unittest.cc", | 76 "compiler/node-unittest.cc", |
79 "compiler/opcodes-unittest.cc", | 77 "compiler/opcodes-unittest.cc", |
80 "compiler/register-allocator-unittest.cc", | 78 "compiler/regalloc/live-range-unittest.cc", |
| 79 "compiler/regalloc/move-optimizer-unittest.cc", |
| 80 "compiler/regalloc/register-allocator-unittest.cc", |
81 "compiler/schedule-unittest.cc", | 81 "compiler/schedule-unittest.cc", |
82 "compiler/scheduler-rpo-unittest.cc", | 82 "compiler/scheduler-rpo-unittest.cc", |
83 "compiler/scheduler-unittest.cc", | 83 "compiler/scheduler-unittest.cc", |
84 "compiler/simplified-operator-reducer-unittest.cc", | 84 "compiler/simplified-operator-reducer-unittest.cc", |
85 "compiler/simplified-operator-unittest.cc", | 85 "compiler/simplified-operator-unittest.cc", |
86 "compiler/state-values-utils-unittest.cc", | 86 "compiler/state-values-utils-unittest.cc", |
87 "compiler/tail-call-optimization-unittest.cc", | 87 "compiler/tail-call-optimization-unittest.cc", |
88 "compiler/typed-optimization-unittest.cc", | 88 "compiler/typed-optimization-unittest.cc", |
89 "compiler/typer-unittest.cc", | 89 "compiler/typer-unittest.cc", |
90 "compiler/value-numbering-reducer-unittest.cc", | 90 "compiler/value-numbering-reducer-unittest.cc", |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 deps += [ "//third_party/icu" ] | 183 deps += [ "//third_party/icu" ] |
184 } | 184 } |
185 | 185 |
186 if (is_win) { | 186 if (is_win) { |
187 # This warning is benignly triggered by the U16 and U32 macros in | 187 # This warning is benignly triggered by the U16 and U32 macros in |
188 # bytecode-utils.h. | 188 # bytecode-utils.h. |
189 # C4309: 'static_cast': truncation of constant value | 189 # C4309: 'static_cast': truncation of constant value |
190 cflags = [ "/wd4309" ] | 190 cflags = [ "/wd4309" ] |
191 } | 191 } |
192 } | 192 } |
OLD | NEW |