Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Unified Diff: test/cctest/cctest.gyp

Issue 2514663002: [simd] Disable Simd Scalar lowering for x64, enable tests for all other architectures. (Closed)
Patch Set: Bill's review Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/BUILD.gn ('k') | test/cctest/wasm/wasm-run-utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/cctest.gyp
diff --git a/test/cctest/cctest.gyp b/test/cctest/cctest.gyp
index 0a85ac3d6248ab0a683f58fd15586a83bb116ead..a9e4a2d6ea2c58c7c76dccd4333c25c0015d671f 100644
--- a/test/cctest/cctest.gyp
+++ b/test/cctest/cctest.gyp
@@ -225,7 +225,8 @@
'test-disasm-ia32.cc',
'test-macro-assembler-ia32.cc',
'test-log-stack-tracer.cc',
- 'test-run-wasm-relocation-ia32.cc'
+ 'test-run-wasm-relocation-ia32.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_x64': [ ### gcmole(arch:x64) ###
'test-assembler-x64.cc',
@@ -237,7 +238,6 @@
'test-log-stack-tracer.cc',
'test-run-wasm-relocation-x64.cc',
'wasm/test-run-wasm-simd.cc',
- 'wasm/test-run-wasm-simd-lowering.cc',
],
'cctest_sources_arm': [ ### gcmole(arch:arm) ###
'test-assembler-arm.cc',
@@ -246,7 +246,8 @@
'test-code-stubs-arm.cc',
'test-disasm-arm.cc',
'test-macro-assembler-arm.cc',
- 'test-run-wasm-relocation-arm.cc'
+ 'test-run-wasm-relocation-arm.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_arm64': [ ### gcmole(arch:arm64) ###
'test-utils-arm64.cc',
@@ -259,19 +260,22 @@
'test-fuzz-arm64.cc',
'test-javascript-arm64.cc',
'test-js-arm64-variables.cc',
- 'test-run-wasm-relocation-arm64.cc'
+ 'test-run-wasm-relocation-arm64.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_s390': [ ### gcmole(arch:s390) ###
'test-assembler-s390.cc',
'test-code-stubs.cc',
'test-code-stubs.h',
- 'test-disasm-s390.cc'
+ 'test-disasm-s390.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_ppc': [ ### gcmole(arch:ppc) ###
'test-assembler-ppc.cc',
'test-code-stubs.cc',
'test-code-stubs.h',
- 'test-disasm-ppc.cc'
+ 'test-disasm-ppc.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_mips': [ ### gcmole(arch:mips) ###
'test-assembler-mips.cc',
@@ -279,7 +283,8 @@
'test-code-stubs.h',
'test-code-stubs-mips.cc',
'test-disasm-mips.cc',
- 'test-macro-assembler-mips.cc'
+ 'test-macro-assembler-mips.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_mipsel': [ ### gcmole(arch:mipsel) ###
'test-assembler-mips.cc',
@@ -287,7 +292,8 @@
'test-code-stubs.h',
'test-code-stubs-mips.cc',
'test-disasm-mips.cc',
- 'test-macro-assembler-mips.cc'
+ 'test-macro-assembler-mips.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_mips64': [ ### gcmole(arch:mips64) ###
'test-assembler-mips64.cc',
@@ -295,7 +301,8 @@
'test-code-stubs.h',
'test-code-stubs-mips64.cc',
'test-disasm-mips64.cc',
- 'test-macro-assembler-mips64.cc'
+ 'test-macro-assembler-mips64.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_mips64el': [ ### gcmole(arch:mips64el) ###
'test-assembler-mips64.cc',
@@ -303,7 +310,8 @@
'test-code-stubs.h',
'test-code-stubs-mips64.cc',
'test-disasm-mips64.cc',
- 'test-macro-assembler-mips64.cc'
+ 'test-macro-assembler-mips64.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
'cctest_sources_x87': [ ### gcmole(arch:x87) ###
'test-assembler-x87.cc',
@@ -313,7 +321,8 @@
'test-disasm-x87.cc',
'test-macro-assembler-x87.cc',
'test-log-stack-tracer.cc',
- 'test-run-wasm-relocation-x87.cc'
+ 'test-run-wasm-relocation-x87.cc',
+ 'wasm/test-run-wasm-simd-lowering.cc'
],
},
'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'],
« no previous file with comments | « test/cctest/BUILD.gn ('k') | test/cctest/wasm/wasm-run-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698