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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
231 } else if (v8_current_cpu == "x86") { | 231 } else if (v8_current_cpu == "x86") { |
232 sources += [ ### gcmole(arch:ia32) ### | 232 sources += [ ### gcmole(arch:ia32) ### |
233 "test-assembler-ia32.cc", | 233 "test-assembler-ia32.cc", |
234 "test-code-stubs-ia32.cc", | 234 "test-code-stubs-ia32.cc", |
235 "test-code-stubs.cc", | 235 "test-code-stubs.cc", |
236 "test-code-stubs.h", | 236 "test-code-stubs.h", |
237 "test-disasm-ia32.cc", | 237 "test-disasm-ia32.cc", |
238 "test-log-stack-tracer.cc", | 238 "test-log-stack-tracer.cc", |
239 "test-macro-assembler-ia32.cc", | 239 "test-macro-assembler-ia32.cc", |
240 "test-run-wasm-relocation-ia32.cc", | 240 "test-run-wasm-relocation-ia32.cc", |
241 "wasm/test-run-wasm-simd-lowering.cc", | 241 "wasm/test-run-wasm-simd.cc", |
bbudge
2017/02/15 16:00:12
Since you're switching to the native tests, you sh
Jing
2017/02/16 05:11:17
In the file tests for my implemented opcodes are b
bbudge
2017/02/17 00:44:40
That's right. OK
| |
242 ] | 242 ] |
243 } else if (v8_current_cpu == "mips") { | 243 } else if (v8_current_cpu == "mips") { |
244 sources += [ ### gcmole(arch:mips) ### | 244 sources += [ ### gcmole(arch:mips) ### |
245 "test-assembler-mips.cc", | 245 "test-assembler-mips.cc", |
246 "test-code-stubs-mips.cc", | 246 "test-code-stubs-mips.cc", |
247 "test-code-stubs.cc", | 247 "test-code-stubs.cc", |
248 "test-code-stubs.h", | 248 "test-code-stubs.h", |
249 "test-disasm-mips.cc", | 249 "test-disasm-mips.cc", |
250 "test-macro-assembler-mips.cc", | 250 "test-macro-assembler-mips.cc", |
251 "wasm/test-run-wasm-simd-lowering.cc", | 251 "wasm/test-run-wasm-simd-lowering.cc", |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
441 ] | 441 ] |
442 | 442 |
443 deps = [ | 443 deps = [ |
444 "../..:v8", | 444 "../..:v8", |
445 "../..:v8_libbase", | 445 "../..:v8_libbase", |
446 "../..:v8_libplatform", | 446 "../..:v8_libplatform", |
447 "//build/config/sanitizers:deps", | 447 "//build/config/sanitizers:deps", |
448 "//build/win:default_exe_manifest", | 448 "//build/win:default_exe_manifest", |
449 ] | 449 ] |
450 } | 450 } |
OLD | NEW |