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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "value-serializer-unittest.cc", | 120 "value-serializer-unittest.cc", |
121 "wasm/asm-types-unittest.cc", | 121 "wasm/asm-types-unittest.cc", |
122 "wasm/ast-decoder-unittest.cc", | 122 "wasm/ast-decoder-unittest.cc", |
123 "wasm/control-transfer-unittest.cc", | 123 "wasm/control-transfer-unittest.cc", |
124 "wasm/decoder-unittest.cc", | 124 "wasm/decoder-unittest.cc", |
125 "wasm/encoder-unittest.cc", | |
126 "wasm/leb-helper-unittest.cc", | 125 "wasm/leb-helper-unittest.cc", |
127 "wasm/loop-assignment-analysis-unittest.cc", | 126 "wasm/loop-assignment-analysis-unittest.cc", |
128 "wasm/module-decoder-unittest.cc", | 127 "wasm/module-decoder-unittest.cc", |
129 "wasm/switch-logic-unittest.cc", | 128 "wasm/switch-logic-unittest.cc", |
130 "wasm/wasm-macro-gen-unittest.cc", | 129 "wasm/wasm-macro-gen-unittest.cc", |
| 130 "wasm/wasm-module-builder-unittest.cc", |
131 ] | 131 ] |
132 | 132 |
133 if (v8_current_cpu == "arm") { | 133 if (v8_current_cpu == "arm") { |
134 sources += [ "compiler/arm/instruction-selector-arm-unittest.cc" ] | 134 sources += [ "compiler/arm/instruction-selector-arm-unittest.cc" ] |
135 } else if (v8_current_cpu == "arm64") { | 135 } else if (v8_current_cpu == "arm64") { |
136 sources += [ "compiler/arm64/instruction-selector-arm64-unittest.cc" ] | 136 sources += [ "compiler/arm64/instruction-selector-arm64-unittest.cc" ] |
137 } else if (v8_current_cpu == "x86") { | 137 } else if (v8_current_cpu == "x86") { |
138 sources += [ "compiler/ia32/instruction-selector-ia32-unittest.cc" ] | 138 sources += [ "compiler/ia32/instruction-selector-ia32-unittest.cc" ] |
139 } else if (v8_current_cpu == "mips" || v8_current_cpu == "mipsel") { | 139 } else if (v8_current_cpu == "mips" || v8_current_cpu == "mipsel") { |
140 sources += [ "compiler/mips/instruction-selector-mips-unittest.cc" ] | 140 sources += [ "compiler/mips/instruction-selector-mips-unittest.cc" ] |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 182 |
183 # Suppress warnings about importing locally defined symbols. | 183 # Suppress warnings about importing locally defined symbols. |
184 if (is_component_build) { | 184 if (is_component_build) { |
185 ldflags = [ | 185 ldflags = [ |
186 "/ignore:4049", | 186 "/ignore:4049", |
187 "/ignore:4217", | 187 "/ignore:4217", |
188 ] | 188 ] |
189 } | 189 } |
190 } | 190 } |
191 } | 191 } |
OLD | NEW |