| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "heap/test-alloc.cc", | 64 "heap/test-alloc.cc", |
| 65 "heap/test-compaction.cc", | 65 "heap/test-compaction.cc", |
| 66 "heap/test-heap.cc", | 66 "heap/test-heap.cc", |
| 67 "heap/test-incremental-marking.cc", | 67 "heap/test-incremental-marking.cc", |
| 68 "heap/test-lab.cc", | 68 "heap/test-lab.cc", |
| 69 "heap/test-mark-compact.cc", | 69 "heap/test-mark-compact.cc", |
| 70 "heap/test-spaces.cc", | 70 "heap/test-spaces.cc", |
| 71 "interpreter/bytecode-expectations-printer.cc", | 71 "interpreter/bytecode-expectations-printer.cc", |
| 72 "interpreter/bytecode-expectations-printer.h", | 72 "interpreter/bytecode-expectations-printer.h", |
| 73 "interpreter/interpreter-tester.cc", | 73 "interpreter/interpreter-tester.cc", |
| 74 "interpreter/source-position-matcher.cc", |
| 75 "interpreter/source-position-matcher.h", |
| 74 "interpreter/test-bytecode-generator.cc", | 76 "interpreter/test-bytecode-generator.cc", |
| 75 "interpreter/test-interpreter-intrinsics.cc", | 77 "interpreter/test-interpreter-intrinsics.cc", |
| 76 "interpreter/test-interpreter.cc", | 78 "interpreter/test-interpreter.cc", |
| 79 "interpreter/test-source-positions.cc", |
| 77 "libsampler/test-sampler.cc", | 80 "libsampler/test-sampler.cc", |
| 78 "print-extension.cc", | 81 "print-extension.cc", |
| 79 "profiler-extension.cc", | 82 "profiler-extension.cc", |
| 80 "test-accessors.cc", | 83 "test-accessors.cc", |
| 81 "test-api-accessors.cc", | 84 "test-api-accessors.cc", |
| 82 "test-api-fast-accessor-builder.cc", | 85 "test-api-fast-accessor-builder.cc", |
| 83 "test-api-interceptors.cc", | 86 "test-api-interceptors.cc", |
| 84 "test-api.cc", | 87 "test-api.cc", |
| 85 "test-api.h", | 88 "test-api.h", |
| 86 "test-array-list.cc", | 89 "test-array-list.cc", |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 "$target_gen_dir/resources.cc", | 360 "$target_gen_dir/resources.cc", |
| 358 ] | 361 ] |
| 359 | 362 |
| 360 args = [ | 363 args = [ |
| 361 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 364 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
| 362 "TEST", | 365 "TEST", |
| 363 ] | 366 ] |
| 364 args += rebase_path(sources, root_build_dir) | 367 args += rebase_path(sources, root_build_dir) |
| 365 } | 368 } |
| 366 # TODO(machenbach): Migrate generate-bytecode-expectations. | 369 # TODO(machenbach): Migrate generate-bytecode-expectations. |
| OLD | NEW |