| 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 # Please keep this file in sync with cctest.gyp. | 5 # Please keep this file in sync with cctest.gyp. |
| 6 | 6 |
| 7 import("../../gni/v8.gni") | 7 import("../../gni/v8.gni") |
| 8 | 8 |
| 9 executable("cctest") { | 9 executable("cctest") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "compiler/test-simplified-lowering.cc", | 55 "compiler/test-simplified-lowering.cc", |
| 56 "expression-type-collector.cc", | 56 "expression-type-collector.cc", |
| 57 "expression-type-collector.h", | 57 "expression-type-collector.h", |
| 58 "gay-fixed.cc", | 58 "gay-fixed.cc", |
| 59 "gay-precision.cc", | 59 "gay-precision.cc", |
| 60 "gay-shortest.cc", | 60 "gay-shortest.cc", |
| 61 "heap/heap-tester.h", | 61 "heap/heap-tester.h", |
| 62 "heap/heap-utils.cc", | 62 "heap/heap-utils.cc", |
| 63 "heap/heap-utils.h", | 63 "heap/heap-utils.h", |
| 64 "heap/test-alloc.cc", | 64 "heap/test-alloc.cc", |
| 65 "heap/test-array-buffer-tracker.cc", |
| 65 "heap/test-compaction.cc", | 66 "heap/test-compaction.cc", |
| 66 "heap/test-heap.cc", | 67 "heap/test-heap.cc", |
| 67 "heap/test-incremental-marking.cc", | 68 "heap/test-incremental-marking.cc", |
| 68 "heap/test-lab.cc", | 69 "heap/test-lab.cc", |
| 69 "heap/test-mark-compact.cc", | 70 "heap/test-mark-compact.cc", |
| 70 "heap/test-spaces.cc", | 71 "heap/test-spaces.cc", |
| 71 "interpreter/bytecode-expectations-printer.cc", | 72 "interpreter/bytecode-expectations-printer.cc", |
| 72 "interpreter/bytecode-expectations-printer.h", | 73 "interpreter/bytecode-expectations-printer.h", |
| 73 "interpreter/interpreter-tester.cc", | 74 "interpreter/interpreter-tester.cc", |
| 74 "interpreter/test-bytecode-generator.cc", | 75 "interpreter/test-bytecode-generator.cc", |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 "$target_gen_dir/resources.cc", | 358 "$target_gen_dir/resources.cc", |
| 358 ] | 359 ] |
| 359 | 360 |
| 360 args = [ | 361 args = [ |
| 361 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 362 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
| 362 "TEST", | 363 "TEST", |
| 363 ] | 364 ] |
| 364 args += rebase_path(sources, root_build_dir) | 365 args += rebase_path(sources, root_build_dir) |
| 365 } | 366 } |
| 366 # TODO(machenbach): Migrate generate-bytecode-expectations. | 367 # TODO(machenbach): Migrate generate-bytecode-expectations. |
| OLD | NEW |