| 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 executable("unittests") { | 9 executable("unittests") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "base/platform/mutex-unittest.cc", | 22 "base/platform/mutex-unittest.cc", |
| 23 "base/platform/platform-unittest.cc", | 23 "base/platform/platform-unittest.cc", |
| 24 "base/platform/semaphore-unittest.cc", | 24 "base/platform/semaphore-unittest.cc", |
| 25 "base/platform/time-unittest.cc", | 25 "base/platform/time-unittest.cc", |
| 26 "base/sys-info-unittest.cc", | 26 "base/sys-info-unittest.cc", |
| 27 "base/utils/random-number-generator-unittest.cc", | 27 "base/utils/random-number-generator-unittest.cc", |
| 28 "cancelable-tasks-unittest.cc", | 28 "cancelable-tasks-unittest.cc", |
| 29 "char-predicates-unittest.cc", | 29 "char-predicates-unittest.cc", |
| 30 "compiler/branch-elimination-unittest.cc", | 30 "compiler/branch-elimination-unittest.cc", |
| 31 "compiler/checkpoint-elimination-unittest.cc", | 31 "compiler/checkpoint-elimination-unittest.cc", |
| 32 "compiler/coalesced-live-ranges-unittest.cc", | |
| 33 "compiler/common-operator-reducer-unittest.cc", | 32 "compiler/common-operator-reducer-unittest.cc", |
| 34 "compiler/common-operator-unittest.cc", | 33 "compiler/common-operator-unittest.cc", |
| 35 "compiler/compiler-test-utils.h", | 34 "compiler/compiler-test-utils.h", |
| 36 "compiler/control-equivalence-unittest.cc", | 35 "compiler/control-equivalence-unittest.cc", |
| 37 "compiler/control-flow-optimizer-unittest.cc", | 36 "compiler/control-flow-optimizer-unittest.cc", |
| 38 "compiler/dead-code-elimination-unittest.cc", | 37 "compiler/dead-code-elimination-unittest.cc", |
| 39 "compiler/diamond-unittest.cc", | 38 "compiler/diamond-unittest.cc", |
| 40 "compiler/effect-control-linearizer-unittest.cc", | 39 "compiler/effect-control-linearizer-unittest.cc", |
| 41 "compiler/escape-analysis-unittest.cc", | 40 "compiler/escape-analysis-unittest.cc", |
| 42 "compiler/graph-reducer-unittest.cc", | 41 "compiler/graph-reducer-unittest.cc", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 } | 166 } |
| 168 | 167 |
| 169 if (is_win) { | 168 if (is_win) { |
| 170 # This warning is benignly triggered by the U16 and U32 macros in | 169 # This warning is benignly triggered by the U16 and U32 macros in |
| 171 # bytecode-utils.h. | 170 # bytecode-utils.h. |
| 172 # C4309: 'static_cast': truncation of constant value | 171 # C4309: 'static_cast': truncation of constant value |
| 173 cflags = [ "/wd4309" ] | 172 cflags = [ "/wd4309" ] |
| 174 | 173 |
| 175 # Suppress warnings about importing locally defined symbols. | 174 # Suppress warnings about importing locally defined symbols. |
| 176 if (is_component_build) { | 175 if (is_component_build) { |
| 177 ldflags = [ "/ignore:4049", "/ignore:4217" ] | 176 ldflags = [ |
| 177 "/ignore:4049", |
| 178 "/ignore:4217", |
| 179 ] |
| 178 } | 180 } |
| 179 } | 181 } |
| 180 } | 182 } |
| OLD | NEW |