| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 sources += [ ### gcmole(arch:arm64) ### | 217 sources += [ ### gcmole(arch:arm64) ### |
| 218 "test-assembler-arm64.cc", | 218 "test-assembler-arm64.cc", |
| 219 "test-code-stubs-arm64.cc", | 219 "test-code-stubs-arm64.cc", |
| 220 "test-code-stubs.cc", | 220 "test-code-stubs.cc", |
| 221 "test-code-stubs.h", | 221 "test-code-stubs.h", |
| 222 "test-disasm-arm64.cc", | 222 "test-disasm-arm64.cc", |
| 223 "test-fuzz-arm64.cc", | 223 "test-fuzz-arm64.cc", |
| 224 "test-javascript-arm64.cc", | 224 "test-javascript-arm64.cc", |
| 225 "test-js-arm64-variables.cc", | 225 "test-js-arm64-variables.cc", |
| 226 "test-run-wasm-relocation-arm64.cc", | 226 "test-run-wasm-relocation-arm64.cc", |
| 227 "test-simulator-arm64.cc", |
| 227 "test-utils-arm64.cc", | 228 "test-utils-arm64.cc", |
| 228 "test-utils-arm64.h", | 229 "test-utils-arm64.h", |
| 229 "wasm/test-run-wasm-simd-lowering.cc", | 230 "wasm/test-run-wasm-simd-lowering.cc", |
| 230 ] | 231 ] |
| 231 } else if (v8_current_cpu == "x86") { | 232 } else if (v8_current_cpu == "x86") { |
| 232 sources += [ ### gcmole(arch:ia32) ### | 233 sources += [ ### gcmole(arch:ia32) ### |
| 233 "test-assembler-ia32.cc", | 234 "test-assembler-ia32.cc", |
| 234 "test-code-stubs-ia32.cc", | 235 "test-code-stubs-ia32.cc", |
| 235 "test-code-stubs.cc", | 236 "test-code-stubs.cc", |
| 236 "test-code-stubs.h", | 237 "test-code-stubs.h", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 ] | 442 ] |
| 442 | 443 |
| 443 deps = [ | 444 deps = [ |
| 444 "../..:v8", | 445 "../..:v8", |
| 445 "../..:v8_libbase", | 446 "../..:v8_libbase", |
| 446 "../..:v8_libplatform", | 447 "../..:v8_libplatform", |
| 447 "//build/config/sanitizers:deps", | 448 "//build/config/sanitizers:deps", |
| 448 "//build/win:default_exe_manifest", | 449 "//build/win:default_exe_manifest", |
| 449 ] | 450 ] |
| 450 } | 451 } |
| OLD | NEW |