| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "compiler/test-run-load-store.cc", | 53 "compiler/test-run-load-store.cc", |
| 54 "compiler/test-run-machops.cc", | 54 "compiler/test-run-machops.cc", |
| 55 "compiler/test-run-native-calls.cc", | 55 "compiler/test-run-native-calls.cc", |
| 56 "compiler/test-run-stackcheck.cc", | 56 "compiler/test-run-stackcheck.cc", |
| 57 "compiler/test-run-stubs.cc", | 57 "compiler/test-run-stubs.cc", |
| 58 "compiler/test-run-unwinding-info.cc", | 58 "compiler/test-run-unwinding-info.cc", |
| 59 "compiler/test-run-variables.cc", | 59 "compiler/test-run-variables.cc", |
| 60 "compiler/test-run-wasm-machops.cc", | 60 "compiler/test-run-wasm-machops.cc", |
| 61 "compiler/value-helper.h", | 61 "compiler/value-helper.h", |
| 62 "expression-type-collector-macros.h", | 62 "expression-type-collector-macros.h", |
| 63 "ffi/test-ffi.cc", |
| 63 "gay-fixed.cc", | 64 "gay-fixed.cc", |
| 64 "gay-fixed.h", | 65 "gay-fixed.h", |
| 65 "gay-precision.cc", | 66 "gay-precision.cc", |
| 66 "gay-precision.h", | 67 "gay-precision.h", |
| 67 "gay-shortest.cc", | 68 "gay-shortest.cc", |
| 68 "gay-shortest.h", | 69 "gay-shortest.h", |
| 69 "heap/heap-tester.h", | 70 "heap/heap-tester.h", |
| 70 "heap/heap-utils.cc", | 71 "heap/heap-utils.cc", |
| 71 "heap/heap-utils.h", | 72 "heap/heap-utils.h", |
| 72 "heap/test-alloc.cc", | 73 "heap/test-alloc.cc", |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 ] | 437 ] |
| 437 | 438 |
| 438 deps = [ | 439 deps = [ |
| 439 "../..:v8", | 440 "../..:v8", |
| 440 "../..:v8_libbase", | 441 "../..:v8_libbase", |
| 441 "../..:v8_libplatform", | 442 "../..:v8_libplatform", |
| 442 "//build/config/sanitizers:deps", | 443 "//build/config/sanitizers:deps", |
| 443 "//build/win:default_exe_manifest", | 444 "//build/win:default_exe_manifest", |
| 444 ] | 445 ] |
| 445 } | 446 } |
| OLD | NEW |