| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "gay-precision.cc", | 66 "gay-precision.cc", |
| 67 "gay-precision.h", | 67 "gay-precision.h", |
| 68 "gay-shortest.cc", | 68 "gay-shortest.cc", |
| 69 "gay-shortest.h", | 69 "gay-shortest.h", |
| 70 "heap/heap-tester.h", | 70 "heap/heap-tester.h", |
| 71 "heap/heap-utils.cc", | 71 "heap/heap-utils.cc", |
| 72 "heap/heap-utils.h", | 72 "heap/heap-utils.h", |
| 73 "heap/test-alloc.cc", | 73 "heap/test-alloc.cc", |
| 74 "heap/test-array-buffer-tracker.cc", | 74 "heap/test-array-buffer-tracker.cc", |
| 75 "heap/test-compaction.cc", | 75 "heap/test-compaction.cc", |
| 76 "heap/test-concurrent-marking.cc", |
| 76 "heap/test-heap.cc", | 77 "heap/test-heap.cc", |
| 77 "heap/test-incremental-marking.cc", | 78 "heap/test-incremental-marking.cc", |
| 78 "heap/test-lab.cc", | 79 "heap/test-lab.cc", |
| 79 "heap/test-mark-compact.cc", | 80 "heap/test-mark-compact.cc", |
| 80 "heap/test-page-promotion.cc", | 81 "heap/test-page-promotion.cc", |
| 81 "heap/test-spaces.cc", | 82 "heap/test-spaces.cc", |
| 82 "interpreter/bytecode-expectations-printer.cc", | 83 "interpreter/bytecode-expectations-printer.cc", |
| 83 "interpreter/bytecode-expectations-printer.h", | 84 "interpreter/bytecode-expectations-printer.h", |
| 84 "interpreter/interpreter-tester.cc", | 85 "interpreter/interpreter-tester.cc", |
| 85 "interpreter/interpreter-tester.h", | 86 "interpreter/interpreter-tester.h", |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 ] | 433 ] |
| 433 | 434 |
| 434 deps = [ | 435 deps = [ |
| 435 "../..:v8", | 436 "../..:v8", |
| 436 "../..:v8_libbase", | 437 "../..:v8_libbase", |
| 437 "../..:v8_libplatform", | 438 "../..:v8_libplatform", |
| 438 "//build/config/sanitizers:deps", | 439 "//build/config/sanitizers:deps", |
| 439 "//build/win:default_exe_manifest", | 440 "//build/win:default_exe_manifest", |
| 440 ] | 441 ] |
| 441 } | 442 } |
| OLD | NEW |