| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 } else if (v8_current_cpu == "x64") { | 270 } else if (v8_current_cpu == "x64") { |
| 271 sources += [ ### gcmole(arch:x64) ### | 271 sources += [ ### gcmole(arch:x64) ### |
| 272 "test-assembler-x64.cc", | 272 "test-assembler-x64.cc", |
| 273 "test-code-stubs-x64.cc", | 273 "test-code-stubs-x64.cc", |
| 274 "test-code-stubs.cc", | 274 "test-code-stubs.cc", |
| 275 "test-code-stubs.h", | 275 "test-code-stubs.h", |
| 276 "test-disasm-x64.cc", | 276 "test-disasm-x64.cc", |
| 277 "test-log-stack-tracer.cc", | 277 "test-log-stack-tracer.cc", |
| 278 "test-macro-assembler-x64.cc", | 278 "test-macro-assembler-x64.cc", |
| 279 "test-run-wasm-relocation-x64.cc", | 279 "test-run-wasm-relocation-x64.cc", |
| 280 "wasm/test-run-wasm-simd-lowering.cc", |
| 280 "wasm/test-run-wasm-simd.cc", | 281 "wasm/test-run-wasm-simd.cc", |
| 281 ] | 282 ] |
| 282 } else if (v8_current_cpu == "x87") { | 283 } else if (v8_current_cpu == "x87") { |
| 283 sources += [ ### gcmole(arch:x87) ### | 284 sources += [ ### gcmole(arch:x87) ### |
| 284 "test-assembler-x87.cc", | 285 "test-assembler-x87.cc", |
| 285 "test-code-stubs-x87.cc", | 286 "test-code-stubs-x87.cc", |
| 286 "test-code-stubs.cc", | 287 "test-code-stubs.cc", |
| 287 "test-code-stubs.h", | 288 "test-code-stubs.h", |
| 288 "test-disasm-x87.cc", | 289 "test-disasm-x87.cc", |
| 289 "test-log-stack-tracer.cc", | 290 "test-log-stack-tracer.cc", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 ] | 414 ] |
| 414 | 415 |
| 415 deps = [ | 416 deps = [ |
| 416 "../..:v8", | 417 "../..:v8", |
| 417 "../..:v8_libbase", | 418 "../..:v8_libbase", |
| 418 "../..:v8_libplatform", | 419 "../..:v8_libplatform", |
| 419 "//build/config/sanitizers:deps", | 420 "//build/config/sanitizers:deps", |
| 420 "//build/win:default_exe_manifest", | 421 "//build/win:default_exe_manifest", |
| 421 ] | 422 ] |
| 422 } | 423 } |
| OLD | NEW |