| 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 15 matching lines...) Expand all Loading... |
| 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-helper.cc", | 31 "compiler-dispatcher/compiler-dispatcher-helper.cc", |
| 32 "compiler-dispatcher/compiler-dispatcher-helper.h", | 32 "compiler-dispatcher/compiler-dispatcher-helper.h", |
| 33 "compiler-dispatcher/compiler-dispatcher-job-unittest.cc", | 33 "compiler-dispatcher/compiler-dispatcher-job-unittest.cc", |
| 34 "compiler-dispatcher/compiler-dispatcher-tracer-unittest.cc", | 34 "compiler-dispatcher/compiler-dispatcher-tracer-unittest.cc", |
| 35 "compiler-dispatcher/compiler-dispatcher-unittest.cc", | 35 "compiler-dispatcher/compiler-dispatcher-unittest.cc", |
| 36 "compiler-dispatcher/optimizing-compile-dispatcher-unittest.cc", |
| 36 "compiler/branch-elimination-unittest.cc", | 37 "compiler/branch-elimination-unittest.cc", |
| 37 "compiler/bytecode-analysis-unittest.cc", | 38 "compiler/bytecode-analysis-unittest.cc", |
| 38 "compiler/checkpoint-elimination-unittest.cc", | 39 "compiler/checkpoint-elimination-unittest.cc", |
| 39 "compiler/common-operator-reducer-unittest.cc", | 40 "compiler/common-operator-reducer-unittest.cc", |
| 40 "compiler/common-operator-unittest.cc", | 41 "compiler/common-operator-unittest.cc", |
| 41 "compiler/compiler-test-utils.h", | 42 "compiler/compiler-test-utils.h", |
| 42 "compiler/control-equivalence-unittest.cc", | 43 "compiler/control-equivalence-unittest.cc", |
| 43 "compiler/control-flow-optimizer-unittest.cc", | 44 "compiler/control-flow-optimizer-unittest.cc", |
| 44 "compiler/dead-code-elimination-unittest.cc", | 45 "compiler/dead-code-elimination-unittest.cc", |
| 45 "compiler/diamond-unittest.cc", | 46 "compiler/diamond-unittest.cc", |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 deps += [ "//third_party/icu" ] | 187 deps += [ "//third_party/icu" ] |
| 187 } | 188 } |
| 188 | 189 |
| 189 if (is_win) { | 190 if (is_win) { |
| 190 # This warning is benignly triggered by the U16 and U32 macros in | 191 # This warning is benignly triggered by the U16 and U32 macros in |
| 191 # bytecode-utils.h. | 192 # bytecode-utils.h. |
| 192 # C4309: 'static_cast': truncation of constant value | 193 # C4309: 'static_cast': truncation of constant value |
| 193 cflags = [ "/wd4309" ] | 194 cflags = [ "/wd4309" ] |
| 194 } | 195 } |
| 195 } | 196 } |
| OLD | NEW |