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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 "test-array-list.cc", | 93 "test-array-list.cc", |
94 "test-asm-validator.cc", | 94 "test-asm-validator.cc", |
95 "test-ast-expression-visitor.cc", | 95 "test-ast-expression-visitor.cc", |
96 "test-ast.cc", | 96 "test-ast.cc", |
97 "test-atomicops.cc", | 97 "test-atomicops.cc", |
98 "test-bignum-dtoa.cc", | 98 "test-bignum-dtoa.cc", |
99 "test-bignum.cc", | 99 "test-bignum.cc", |
100 "test-bit-vector.cc", | 100 "test-bit-vector.cc", |
101 "test-circular-queue.cc", | 101 "test-circular-queue.cc", |
102 "test-code-cache.cc", | 102 "test-code-cache.cc", |
| 103 "test-code-layout.cc", |
103 "test-code-stub-assembler.cc", | 104 "test-code-stub-assembler.cc", |
104 "test-compiler.cc", | 105 "test-compiler.cc", |
105 "test-constantpool.cc", | 106 "test-constantpool.cc", |
106 "test-conversions.cc", | 107 "test-conversions.cc", |
107 "test-cpu-profiler.cc", | 108 "test-cpu-profiler.cc", |
108 "test-date.cc", | 109 "test-date.cc", |
109 "test-debug.cc", | 110 "test-debug.cc", |
110 "test-decls.cc", | 111 "test-decls.cc", |
111 "test-deoptimization.cc", | 112 "test-deoptimization.cc", |
112 "test-dictionary.cc", | 113 "test-dictionary.cc", |
113 "test-diy-fp.cc", | 114 "test-diy-fp.cc", |
114 "test-double.cc", | 115 "test-double.cc", |
115 "test-dtoa.cc", | 116 "test-dtoa.cc", |
| 117 "test-eh-frame-hdr.cc", |
116 "test-elements-kind.cc", | 118 "test-elements-kind.cc", |
117 "test-fast-dtoa.cc", | 119 "test-fast-dtoa.cc", |
118 "test-feedback-vector.cc", | 120 "test-feedback-vector.cc", |
119 "test-field-type-tracking.cc", | 121 "test-field-type-tracking.cc", |
120 "test-fixed-dtoa.cc", | 122 "test-fixed-dtoa.cc", |
121 "test-flags.cc", | 123 "test-flags.cc", |
122 "test-func-name-inference.cc", | 124 "test-func-name-inference.cc", |
123 "test-global-handles.cc", | 125 "test-global-handles.cc", |
124 "test-global-object.cc", | 126 "test-global-object.cc", |
125 "test-hashing.cc", | 127 "test-hashing.cc", |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 "$target_gen_dir/resources.cc", | 366 "$target_gen_dir/resources.cc", |
365 ] | 367 ] |
366 | 368 |
367 args = [ | 369 args = [ |
368 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 370 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
369 "TEST", | 371 "TEST", |
370 ] | 372 ] |
371 args += rebase_path(sources, root_build_dir) | 373 args += rebase_path(sources, root_build_dir) |
372 } | 374 } |
373 # TODO(machenbach): Migrate generate-bytecode-expectations. | 375 # TODO(machenbach): Migrate generate-bytecode-expectations. |
OLD | NEW |