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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "interpreter/interpreter-tester.cc", | 77 "interpreter/interpreter-tester.cc", |
78 "interpreter/source-position-matcher.cc", | 78 "interpreter/source-position-matcher.cc", |
79 "interpreter/source-position-matcher.h", | 79 "interpreter/source-position-matcher.h", |
80 "interpreter/test-bytecode-generator.cc", | 80 "interpreter/test-bytecode-generator.cc", |
81 "interpreter/test-interpreter-intrinsics.cc", | 81 "interpreter/test-interpreter-intrinsics.cc", |
82 "interpreter/test-interpreter.cc", | 82 "interpreter/test-interpreter.cc", |
83 "interpreter/test-source-positions.cc", | 83 "interpreter/test-source-positions.cc", |
84 "libsampler/test-sampler.cc", | 84 "libsampler/test-sampler.cc", |
85 "print-extension.cc", | 85 "print-extension.cc", |
86 "profiler-extension.cc", | 86 "profiler-extension.cc", |
| 87 "test-access-checks.cc", |
87 "test-accessors.cc", | 88 "test-accessors.cc", |
88 "test-api-accessors.cc", | 89 "test-api-accessors.cc", |
89 "test-api-fast-accessor-builder.cc", | 90 "test-api-fast-accessor-builder.cc", |
90 "test-api-interceptors.cc", | 91 "test-api-interceptors.cc", |
91 "test-api.cc", | 92 "test-api.cc", |
92 "test-api.h", | 93 "test-api.h", |
93 "test-array-list.cc", | 94 "test-array-list.cc", |
94 "test-asm-validator.cc", | 95 "test-asm-validator.cc", |
95 "test-ast-expression-visitor.cc", | 96 "test-ast-expression-visitor.cc", |
96 "test-ast.cc", | 97 "test-ast.cc", |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 "$target_gen_dir/resources.cc", | 365 "$target_gen_dir/resources.cc", |
365 ] | 366 ] |
366 | 367 |
367 args = [ | 368 args = [ |
368 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 369 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
369 "TEST", | 370 "TEST", |
370 ] | 371 ] |
371 args += rebase_path(sources, root_build_dir) | 372 args += rebase_path(sources, root_build_dir) |
372 } | 373 } |
373 # TODO(machenbach): Migrate generate-bytecode-expectations. | 374 # TODO(machenbach): Migrate generate-bytecode-expectations. |
OLD | NEW |