| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 } else if (v8_current_cpu == "x86") { | 230 } else if (v8_current_cpu == "x86") { |
| 231 sources += [ ### gcmole(arch:ia32) ### | 231 sources += [ ### gcmole(arch:ia32) ### |
| 232 "test-assembler-ia32.cc", | 232 "test-assembler-ia32.cc", |
| 233 "test-code-stubs-ia32.cc", | 233 "test-code-stubs-ia32.cc", |
| 234 "test-code-stubs.cc", | 234 "test-code-stubs.cc", |
| 235 "test-code-stubs.h", | 235 "test-code-stubs.h", |
| 236 "test-disasm-ia32.cc", | 236 "test-disasm-ia32.cc", |
| 237 "test-log-stack-tracer.cc", | 237 "test-log-stack-tracer.cc", |
| 238 "test-macro-assembler-ia32.cc", | 238 "test-macro-assembler-ia32.cc", |
| 239 "test-run-wasm-relocation-ia32.cc", | 239 "test-run-wasm-relocation-ia32.cc", |
| 240 "wasm/test-run-wasm-simd-lowering.cc", | 240 "wasm/test-run-wasm-simd.cc", |
| 241 ] | 241 ] |
| 242 } else if (v8_current_cpu == "mips") { | 242 } else if (v8_current_cpu == "mips") { |
| 243 sources += [ ### gcmole(arch:mips) ### | 243 sources += [ ### gcmole(arch:mips) ### |
| 244 "test-assembler-mips.cc", | 244 "test-assembler-mips.cc", |
| 245 "test-code-stubs-mips.cc", | 245 "test-code-stubs-mips.cc", |
| 246 "test-code-stubs.cc", | 246 "test-code-stubs.cc", |
| 247 "test-code-stubs.h", | 247 "test-code-stubs.h", |
| 248 "test-disasm-mips.cc", | 248 "test-disasm-mips.cc", |
| 249 "test-macro-assembler-mips.cc", | 249 "test-macro-assembler-mips.cc", |
| 250 "wasm/test-run-wasm-simd-lowering.cc", | 250 "wasm/test-run-wasm-simd-lowering.cc", |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 ] | 440 ] |
| 441 | 441 |
| 442 deps = [ | 442 deps = [ |
| 443 "../..:v8", | 443 "../..:v8", |
| 444 "../..:v8_libbase", | 444 "../..:v8_libbase", |
| 445 "../..:v8_libplatform", | 445 "../..:v8_libplatform", |
| 446 "//build/config/sanitizers:deps", | 446 "//build/config/sanitizers:deps", |
| 447 "//build/win:default_exe_manifest", | 447 "//build/win:default_exe_manifest", |
| 448 ] | 448 ] |
| 449 } | 449 } |
| OLD | NEW |