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 v8_executable("cctest") { | 9 v8_executable("cctest") { |
10 testonly = true | 10 testonly = true |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "heap/heap-tester.h", | 63 "heap/heap-tester.h", |
64 "heap/heap-utils.cc", | 64 "heap/heap-utils.cc", |
65 "heap/heap-utils.h", | 65 "heap/heap-utils.h", |
66 "heap/test-alloc.cc", | 66 "heap/test-alloc.cc", |
67 "heap/test-array-buffer-tracker.cc", | 67 "heap/test-array-buffer-tracker.cc", |
68 "heap/test-compaction.cc", | 68 "heap/test-compaction.cc", |
69 "heap/test-heap.cc", | 69 "heap/test-heap.cc", |
70 "heap/test-incremental-marking.cc", | 70 "heap/test-incremental-marking.cc", |
71 "heap/test-lab.cc", | 71 "heap/test-lab.cc", |
72 "heap/test-mark-compact.cc", | 72 "heap/test-mark-compact.cc", |
| 73 "heap/test-page-promotion.cc", |
73 "heap/test-spaces.cc", | 74 "heap/test-spaces.cc", |
74 "interpreter/bytecode-expectations-printer.cc", | 75 "interpreter/bytecode-expectations-printer.cc", |
75 "interpreter/bytecode-expectations-printer.h", | 76 "interpreter/bytecode-expectations-printer.h", |
76 "interpreter/interpreter-tester.cc", | 77 "interpreter/interpreter-tester.cc", |
77 "interpreter/source-position-matcher.cc", | 78 "interpreter/source-position-matcher.cc", |
78 "interpreter/source-position-matcher.h", | 79 "interpreter/source-position-matcher.h", |
79 "interpreter/test-bytecode-generator.cc", | 80 "interpreter/test-bytecode-generator.cc", |
80 "interpreter/test-interpreter-intrinsics.cc", | 81 "interpreter/test-interpreter-intrinsics.cc", |
81 "interpreter/test-interpreter.cc", | 82 "interpreter/test-interpreter.cc", |
82 "interpreter/test-source-positions.cc", | 83 "interpreter/test-source-positions.cc", |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 "$target_gen_dir/resources.cc", | 364 "$target_gen_dir/resources.cc", |
364 ] | 365 ] |
365 | 366 |
366 args = [ | 367 args = [ |
367 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 368 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
368 "TEST", | 369 "TEST", |
369 ] | 370 ] |
370 args += rebase_path(sources, root_build_dir) | 371 args += rebase_path(sources, root_build_dir) |
371 } | 372 } |
372 # TODO(machenbach): Migrate generate-bytecode-expectations. | 373 # TODO(machenbach): Migrate generate-bytecode-expectations. |
OLD | NEW |