| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 if (v8_current_cpu == "arm") { | 199 if (v8_current_cpu == "arm") { |
| 200 sources += [ ### gcmole(arch:arm) ### | 200 sources += [ ### gcmole(arch:arm) ### |
| 201 "test-assembler-arm.cc", | 201 "test-assembler-arm.cc", |
| 202 "test-code-stubs-arm.cc", | 202 "test-code-stubs-arm.cc", |
| 203 "test-code-stubs.cc", | 203 "test-code-stubs.cc", |
| 204 "test-code-stubs.h", | 204 "test-code-stubs.h", |
| 205 "test-disasm-arm.cc", | 205 "test-disasm-arm.cc", |
| 206 "test-macro-assembler-arm.cc", | 206 "test-macro-assembler-arm.cc", |
| 207 "test-run-wasm-relocation-arm.cc", | 207 "test-run-wasm-relocation-arm.cc", |
| 208 "wasm/test-run-wasm-simd-lowering.cc", | 208 "wasm/test-run-wasm-simd.cc", |
| 209 ] | 209 ] |
| 210 } else if (v8_current_cpu == "arm64") { | 210 } else if (v8_current_cpu == "arm64") { |
| 211 sources += [ ### gcmole(arch:arm64) ### | 211 sources += [ ### gcmole(arch:arm64) ### |
| 212 "test-assembler-arm64.cc", | 212 "test-assembler-arm64.cc", |
| 213 "test-code-stubs-arm64.cc", | 213 "test-code-stubs-arm64.cc", |
| 214 "test-code-stubs.cc", | 214 "test-code-stubs.cc", |
| 215 "test-code-stubs.h", | 215 "test-code-stubs.h", |
| 216 "test-disasm-arm64.cc", | 216 "test-disasm-arm64.cc", |
| 217 "test-fuzz-arm64.cc", | 217 "test-fuzz-arm64.cc", |
| 218 "test-javascript-arm64.cc", | 218 "test-javascript-arm64.cc", |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 ] | 425 ] |
| 426 | 426 |
| 427 deps = [ | 427 deps = [ |
| 428 "../..:v8", | 428 "../..:v8", |
| 429 "../..:v8_libbase", | 429 "../..:v8_libbase", |
| 430 "../..:v8_libplatform", | 430 "../..:v8_libplatform", |
| 431 "//build/config/sanitizers:deps", | 431 "//build/config/sanitizers:deps", |
| 432 "//build/win:default_exe_manifest", | 432 "//build/win:default_exe_manifest", |
| 433 ] | 433 ] |
| 434 } | 434 } |
| OLD | NEW |