| 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 = [ |
| 11 "../../testing/gmock-support.h", | 11 "../../testing/gmock-support.h", |
| 12 "../../testing/gtest-support.h", | 12 "../../testing/gtest-support.h", |
| 13 "api/exception-unittest.cc", | 13 "api/exception-unittest.cc", |
| 14 "api/isolate-unittest.cc", | 14 "api/isolate-unittest.cc", |
| 15 "api/remote-object-unittest.cc", |
| 15 "api/v8-object-unittest.cc", | 16 "api/v8-object-unittest.cc", |
| 16 "base/atomic-utils-unittest.cc", | 17 "base/atomic-utils-unittest.cc", |
| 17 "base/bits-unittest.cc", | 18 "base/bits-unittest.cc", |
| 18 "base/cpu-unittest.cc", | 19 "base/cpu-unittest.cc", |
| 19 "base/division-by-constant-unittest.cc", | 20 "base/division-by-constant-unittest.cc", |
| 20 "base/flags-unittest.cc", | 21 "base/flags-unittest.cc", |
| 21 "base/functional-unittest.cc", | 22 "base/functional-unittest.cc", |
| 22 "base/ieee754-unittest.cc", | 23 "base/ieee754-unittest.cc", |
| 23 "base/iterator-unittest.cc", | 24 "base/iterator-unittest.cc", |
| 24 "base/logging-unittest.cc", | 25 "base/logging-unittest.cc", |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 deps += [ "//third_party/icu" ] | 193 deps += [ "//third_party/icu" ] |
| 193 } | 194 } |
| 194 | 195 |
| 195 if (is_win) { | 196 if (is_win) { |
| 196 # This warning is benignly triggered by the U16 and U32 macros in | 197 # This warning is benignly triggered by the U16 and U32 macros in |
| 197 # bytecode-utils.h. | 198 # bytecode-utils.h. |
| 198 # C4309: 'static_cast': truncation of constant value | 199 # C4309: 'static_cast': truncation of constant value |
| 199 cflags = [ "/wd4309" ] | 200 cflags = [ "/wd4309" ] |
| 200 } | 201 } |
| 201 } | 202 } |
| OLD | NEW |