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

Side by Side Diff: test/cctest/BUILD.gn

Issue 2294743003: [wasm] simd scalar lowering F32x4Add and I32x4Add (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [wasm] simd scalar lowering F32x4Add and I32x4Add Created 4 years, 2 months 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 unified diff | Download patch
OLDNEW
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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 } else if (v8_current_cpu == "x64") { 269 } else if (v8_current_cpu == "x64") {
270 sources += [ ### gcmole(arch:x64) ### 270 sources += [ ### gcmole(arch:x64) ###
271 "test-assembler-x64.cc", 271 "test-assembler-x64.cc",
272 "test-code-stubs-x64.cc", 272 "test-code-stubs-x64.cc",
273 "test-code-stubs.cc", 273 "test-code-stubs.cc",
274 "test-code-stubs.h", 274 "test-code-stubs.h",
275 "test-disasm-x64.cc", 275 "test-disasm-x64.cc",
276 "test-log-stack-tracer.cc", 276 "test-log-stack-tracer.cc",
277 "test-macro-assembler-x64.cc", 277 "test-macro-assembler-x64.cc",
278 "test-run-wasm-relocation-x64.cc", 278 "test-run-wasm-relocation-x64.cc",
279 "wasm/test-run-wasm-simd-lowering.cc",
279 "wasm/test-run-wasm-simd.cc", 280 "wasm/test-run-wasm-simd.cc",
280 ] 281 ]
281 } else if (v8_current_cpu == "x87") { 282 } else if (v8_current_cpu == "x87") {
282 sources += [ ### gcmole(arch:x87) ### 283 sources += [ ### gcmole(arch:x87) ###
283 "test-assembler-x87.cc", 284 "test-assembler-x87.cc",
284 "test-code-stubs-x87.cc", 285 "test-code-stubs-x87.cc",
285 "test-code-stubs.cc", 286 "test-code-stubs.cc",
286 "test-code-stubs.h", 287 "test-code-stubs.h",
287 "test-disasm-x87.cc", 288 "test-disasm-x87.cc",
288 "test-log-stack-tracer.cc", 289 "test-log-stack-tracer.cc",
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 if (is_win) { 433 if (is_win) {
433 # Suppress warnings about importing locally defined symbols. 434 # Suppress warnings about importing locally defined symbols.
434 if (is_component_build) { 435 if (is_component_build) {
435 ldflags = [ 436 ldflags = [
436 "/ignore:4049", 437 "/ignore:4049",
437 "/ignore:4217", 438 "/ignore:4217",
438 ] 439 ]
439 } 440 }
440 } 441 }
441 } 442 }
OLDNEW
« src/wasm/ast-decoder.cc ('K') | « src/wasm/wasm-module.h ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698