| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "interpreter/interpreter-assembler-unittest.h", | 110 "interpreter/interpreter-assembler-unittest.h", |
| 111 "libplatform/default-platform-unittest.cc", | 111 "libplatform/default-platform-unittest.cc", |
| 112 "libplatform/task-queue-unittest.cc", | 112 "libplatform/task-queue-unittest.cc", |
| 113 "libplatform/worker-thread-unittest.cc", | 113 "libplatform/worker-thread-unittest.cc", |
| 114 "locked-queue-unittest.cc", | 114 "locked-queue-unittest.cc", |
| 115 "register-configuration-unittest.cc", | 115 "register-configuration-unittest.cc", |
| 116 "run-all-unittests.cc", | 116 "run-all-unittests.cc", |
| 117 "source-position-table-unittest.cc", | 117 "source-position-table-unittest.cc", |
| 118 "test-utils.cc", | 118 "test-utils.cc", |
| 119 "test-utils.h", | 119 "test-utils.h", |
| 120 "unicode-unittest.cc", |
| 120 "value-serializer-unittest.cc", | 121 "value-serializer-unittest.cc", |
| 121 "wasm/asm-types-unittest.cc", | 122 "wasm/asm-types-unittest.cc", |
| 122 "wasm/ast-decoder-unittest.cc", | 123 "wasm/ast-decoder-unittest.cc", |
| 123 "wasm/control-transfer-unittest.cc", | 124 "wasm/control-transfer-unittest.cc", |
| 124 "wasm/decoder-unittest.cc", | 125 "wasm/decoder-unittest.cc", |
| 125 "wasm/leb-helper-unittest.cc", | 126 "wasm/leb-helper-unittest.cc", |
| 126 "wasm/loop-assignment-analysis-unittest.cc", | 127 "wasm/loop-assignment-analysis-unittest.cc", |
| 127 "wasm/module-decoder-unittest.cc", | 128 "wasm/module-decoder-unittest.cc", |
| 128 "wasm/switch-logic-unittest.cc", | 129 "wasm/switch-logic-unittest.cc", |
| 129 "wasm/wasm-macro-gen-unittest.cc", | 130 "wasm/wasm-macro-gen-unittest.cc", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 183 |
| 183 # Suppress warnings about importing locally defined symbols. | 184 # Suppress warnings about importing locally defined symbols. |
| 184 if (is_component_build) { | 185 if (is_component_build) { |
| 185 ldflags = [ | 186 ldflags = [ |
| 186 "/ignore:4049", | 187 "/ignore:4049", |
| 187 "/ignore:4217", | 188 "/ignore:4217", |
| 188 ] | 189 ] |
| 189 } | 190 } |
| 190 } | 191 } |
| 191 } | 192 } |
| OLD | NEW |