| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "test-api.h", | 86 "test-api.h", |
| 87 "test-array-list.cc", | 87 "test-array-list.cc", |
| 88 "test-asm-validator.cc", | 88 "test-asm-validator.cc", |
| 89 "test-ast-expression-visitor.cc", | 89 "test-ast-expression-visitor.cc", |
| 90 "test-ast.cc", | 90 "test-ast.cc", |
| 91 "test-atomicops.cc", | 91 "test-atomicops.cc", |
| 92 "test-bignum-dtoa.cc", | 92 "test-bignum-dtoa.cc", |
| 93 "test-bignum.cc", | 93 "test-bignum.cc", |
| 94 "test-bit-vector.cc", | 94 "test-bit-vector.cc", |
| 95 "test-circular-queue.cc", | 95 "test-circular-queue.cc", |
| 96 "test-code-cache.cc", |
| 96 "test-compiler.cc", | 97 "test-compiler.cc", |
| 97 "test-constantpool.cc", | 98 "test-constantpool.cc", |
| 98 "test-conversions.cc", | 99 "test-conversions.cc", |
| 99 "test-cpu-profiler.cc", | 100 "test-cpu-profiler.cc", |
| 100 "test-date.cc", | 101 "test-date.cc", |
| 101 "test-debug.cc", | 102 "test-debug.cc", |
| 102 "test-decls.cc", | 103 "test-decls.cc", |
| 103 "test-deoptimization.cc", | 104 "test-deoptimization.cc", |
| 104 "test-dictionary.cc", | 105 "test-dictionary.cc", |
| 105 "test-diy-fp.cc", | 106 "test-diy-fp.cc", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 "$target_gen_dir/resources.cc", | 345 "$target_gen_dir/resources.cc", |
| 345 ] | 346 ] |
| 346 | 347 |
| 347 args = [ | 348 args = [ |
| 348 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 349 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
| 349 "TEST", | 350 "TEST", |
| 350 ] | 351 ] |
| 351 args += rebase_path(sources, root_build_dir) | 352 args += rebase_path(sources, root_build_dir) |
| 352 } | 353 } |
| 353 # TODO(machenbach): Migrate generate-bytecode-expectations. | 354 # TODO(machenbach): Migrate generate-bytecode-expectations. |
| OLD | NEW |