| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "interpreter/interpreter-assembler-unittest.h", | 112 "interpreter/interpreter-assembler-unittest.h", |
| 113 "libplatform/default-platform-unittest.cc", | 113 "libplatform/default-platform-unittest.cc", |
| 114 "libplatform/task-queue-unittest.cc", | 114 "libplatform/task-queue-unittest.cc", |
| 115 "libplatform/worker-thread-unittest.cc", | 115 "libplatform/worker-thread-unittest.cc", |
| 116 "locked-queue-unittest.cc", | 116 "locked-queue-unittest.cc", |
| 117 "register-configuration-unittest.cc", | 117 "register-configuration-unittest.cc", |
| 118 "run-all-unittests.cc", | 118 "run-all-unittests.cc", |
| 119 "source-position-table-unittest.cc", | 119 "source-position-table-unittest.cc", |
| 120 "test-utils.cc", | 120 "test-utils.cc", |
| 121 "test-utils.h", | 121 "test-utils.h", |
| 122 "unicode-unittest.cc", |
| 122 "value-serializer-unittest.cc", | 123 "value-serializer-unittest.cc", |
| 123 "wasm/asm-types-unittest.cc", | 124 "wasm/asm-types-unittest.cc", |
| 124 "wasm/ast-decoder-unittest.cc", | 125 "wasm/ast-decoder-unittest.cc", |
| 125 "wasm/control-transfer-unittest.cc", | 126 "wasm/control-transfer-unittest.cc", |
| 126 "wasm/decoder-unittest.cc", | 127 "wasm/decoder-unittest.cc", |
| 127 "wasm/leb-helper-unittest.cc", | 128 "wasm/leb-helper-unittest.cc", |
| 128 "wasm/loop-assignment-analysis-unittest.cc", | 129 "wasm/loop-assignment-analysis-unittest.cc", |
| 129 "wasm/module-decoder-unittest.cc", | 130 "wasm/module-decoder-unittest.cc", |
| 130 "wasm/switch-logic-unittest.cc", | 131 "wasm/switch-logic-unittest.cc", |
| 131 "wasm/wasm-macro-gen-unittest.cc", | 132 "wasm/wasm-macro-gen-unittest.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 deps += [ "//third_party/icu" ] | 177 deps += [ "//third_party/icu" ] |
| 177 } | 178 } |
| 178 | 179 |
| 179 if (is_win) { | 180 if (is_win) { |
| 180 # This warning is benignly triggered by the U16 and U32 macros in | 181 # This warning is benignly triggered by the U16 and U32 macros in |
| 181 # bytecode-utils.h. | 182 # bytecode-utils.h. |
| 182 # C4309: 'static_cast': truncation of constant value | 183 # C4309: 'static_cast': truncation of constant value |
| 183 cflags = [ "/wd4309" ] | 184 cflags = [ "/wd4309" ] |
| 184 } | 185 } |
| 185 } | 186 } |
| OLD | NEW |