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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "interpreter/interpreter-assembler-unittest.cc", | 99 "interpreter/interpreter-assembler-unittest.cc", |
100 "interpreter/interpreter-assembler-unittest.h", | 100 "interpreter/interpreter-assembler-unittest.h", |
101 "interpreter/source-position-table-unittest.cc", | 101 "interpreter/source-position-table-unittest.cc", |
102 "libplatform/default-platform-unittest.cc", | 102 "libplatform/default-platform-unittest.cc", |
103 "libplatform/task-queue-unittest.cc", | 103 "libplatform/task-queue-unittest.cc", |
104 "libplatform/worker-thread-unittest.cc", | 104 "libplatform/worker-thread-unittest.cc", |
105 "locked-queue-unittest.cc", | 105 "locked-queue-unittest.cc", |
106 "run-all-unittests.cc", | 106 "run-all-unittests.cc", |
107 "test-utils.cc", | 107 "test-utils.cc", |
108 "test-utils.h", | 108 "test-utils.h", |
| 109 "wasm/asm-types-unittest.cc", |
109 "wasm/ast-decoder-unittest.cc", | 110 "wasm/ast-decoder-unittest.cc", |
110 "wasm/control-transfer-unittest.cc", | 111 "wasm/control-transfer-unittest.cc", |
111 "wasm/decoder-unittest.cc", | 112 "wasm/decoder-unittest.cc", |
112 "wasm/encoder-unittest.cc", | 113 "wasm/encoder-unittest.cc", |
113 "wasm/leb-helper-unittest.cc", | 114 "wasm/leb-helper-unittest.cc", |
114 "wasm/loop-assignment-analysis-unittest.cc", | 115 "wasm/loop-assignment-analysis-unittest.cc", |
115 "wasm/module-decoder-unittest.cc", | 116 "wasm/module-decoder-unittest.cc", |
116 "wasm/switch-logic-unittest.cc", | 117 "wasm/switch-logic-unittest.cc", |
117 "wasm/wasm-macro-gen-unittest.cc", | 118 "wasm/wasm-macro-gen-unittest.cc", |
118 ] | 119 ] |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 | 174 |
174 # Suppress warnings about importing locally defined symbols. | 175 # Suppress warnings about importing locally defined symbols. |
175 if (is_component_build) { | 176 if (is_component_build) { |
176 ldflags = [ | 177 ldflags = [ |
177 "/ignore:4049", | 178 "/ignore:4049", |
178 "/ignore:4217", | 179 "/ignore:4217", |
179 ] | 180 ] |
180 } | 181 } |
181 } | 182 } |
182 } | 183 } |
OLD | NEW |