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("cctest") { | 7 v8_executable("cctest") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 sources = [ | 10 sources = [ |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
183 "trace-extension.cc", | 183 "trace-extension.cc", |
184 "trace-extension.h", | 184 "trace-extension.h", |
185 "types-fuzz.h", | 185 "types-fuzz.h", |
186 "wasm/test-managed.cc", | 186 "wasm/test-managed.cc", |
187 "wasm/test-run-wasm-64.cc", | 187 "wasm/test-run-wasm-64.cc", |
188 "wasm/test-run-wasm-asmjs.cc", | 188 "wasm/test-run-wasm-asmjs.cc", |
189 "wasm/test-run-wasm-interpreter.cc", | 189 "wasm/test-run-wasm-interpreter.cc", |
190 "wasm/test-run-wasm-js.cc", | 190 "wasm/test-run-wasm-js.cc", |
191 "wasm/test-run-wasm-module.cc", | 191 "wasm/test-run-wasm-module.cc", |
192 "wasm/test-run-wasm-relocation.cc", | 192 "wasm/test-run-wasm-relocation.cc", |
193 "wasm/test-run-wasm-simd-lowering.cc", | |
193 "wasm/test-run-wasm.cc", | 194 "wasm/test-run-wasm.cc", |
194 "wasm/test-wasm-stack.cc", | 195 "wasm/test-wasm-stack.cc", |
195 "wasm/test-wasm-trap-position.cc", | 196 "wasm/test-wasm-trap-position.cc", |
196 "wasm/wasm-run-utils.h", | 197 "wasm/wasm-run-utils.h", |
197 ] | 198 ] |
198 | 199 |
199 if (v8_current_cpu == "arm") { | 200 if (v8_current_cpu == "arm") { |
200 sources += [ ### gcmole(arch:arm) ### | 201 sources += [ ### gcmole(arch:arm) ### |
201 "test-assembler-arm.cc", | 202 "test-assembler-arm.cc", |
202 "test-code-stubs-arm.cc", | 203 "test-code-stubs-arm.cc", |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
270 } else if (v8_current_cpu == "x64") { | 271 } else if (v8_current_cpu == "x64") { |
271 sources += [ ### gcmole(arch:x64) ### | 272 sources += [ ### gcmole(arch:x64) ### |
272 "test-assembler-x64.cc", | 273 "test-assembler-x64.cc", |
273 "test-code-stubs-x64.cc", | 274 "test-code-stubs-x64.cc", |
274 "test-code-stubs.cc", | 275 "test-code-stubs.cc", |
275 "test-code-stubs.h", | 276 "test-code-stubs.h", |
276 "test-disasm-x64.cc", | 277 "test-disasm-x64.cc", |
277 "test-log-stack-tracer.cc", | 278 "test-log-stack-tracer.cc", |
278 "test-macro-assembler-x64.cc", | 279 "test-macro-assembler-x64.cc", |
279 "test-run-wasm-relocation-x64.cc", | 280 "test-run-wasm-relocation-x64.cc", |
280 "wasm/test-run-wasm-simd-lowering.cc", | |
281 "wasm/test-run-wasm-simd.cc", | 281 "wasm/test-run-wasm-simd.cc", |
282 ] | 282 ] |
bbudge
2016/11/18 19:30:59
You can remove the lowering tests from sources her
gdeepti
2016/11/21 19:30:02
I was not sure which way was cleaner as most archi
| |
283 } else if (v8_current_cpu == "x87") { | 283 } else if (v8_current_cpu == "x87") { |
284 sources += [ ### gcmole(arch:x87) ### | 284 sources += [ ### gcmole(arch:x87) ### |
285 "test-assembler-x87.cc", | 285 "test-assembler-x87.cc", |
286 "test-code-stubs-x87.cc", | 286 "test-code-stubs-x87.cc", |
287 "test-code-stubs.cc", | 287 "test-code-stubs.cc", |
288 "test-code-stubs.h", | 288 "test-code-stubs.h", |
289 "test-disasm-x87.cc", | 289 "test-disasm-x87.cc", |
290 "test-log-stack-tracer.cc", | 290 "test-log-stack-tracer.cc", |
291 "test-macro-assembler-x87.cc", | 291 "test-macro-assembler-x87.cc", |
292 "test-run-wasm-relocation-x87.cc", | 292 "test-run-wasm-relocation-x87.cc", |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
414 ] | 414 ] |
415 | 415 |
416 deps = [ | 416 deps = [ |
417 "../..:v8", | 417 "../..:v8", |
418 "../..:v8_libbase", | 418 "../..:v8_libbase", |
419 "../..:v8_libplatform", | 419 "../..:v8_libplatform", |
420 "//build/config/sanitizers:deps", | 420 "//build/config/sanitizers:deps", |
421 "//build/win:default_exe_manifest", | 421 "//build/win:default_exe_manifest", |
422 ] | 422 ] |
423 } | 423 } |
OLD | NEW |