| 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 |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "$target_gen_dir/resources.cc", | 13 "$target_gen_dir/resources.cc", |
| 14 "cctest.cc", | 14 "cctest.cc", |
| 15 "compiler/c-signature.h", | 15 "compiler/c-signature.h", |
| 16 "compiler/codegen-tester.cc", | 16 "compiler/codegen-tester.cc", |
| 17 "compiler/codegen-tester.h", | 17 "compiler/codegen-tester.h", |
| 18 "compiler/function-tester.h", | 18 "compiler/function-tester.h", |
| 19 "compiler/graph-builder-tester.h", | 19 "compiler/graph-builder-tester.h", |
| 20 "compiler/test-basic-block-profiler.cc", | 20 "compiler/test-basic-block-profiler.cc", |
| 21 "compiler/test-branch-combine.cc", | 21 "compiler/test-branch-combine.cc", |
| 22 "compiler/test-code-stub-assembler.cc", |
| 22 "compiler/test-gap-resolver.cc", | 23 "compiler/test-gap-resolver.cc", |
| 23 "compiler/test-graph-visualizer.cc", | 24 "compiler/test-graph-visualizer.cc", |
| 24 "compiler/test-instruction.cc", | 25 "compiler/test-instruction.cc", |
| 25 "compiler/test-js-constant-cache.cc", | 26 "compiler/test-js-constant-cache.cc", |
| 26 "compiler/test-js-context-specialization.cc", | 27 "compiler/test-js-context-specialization.cc", |
| 27 "compiler/test-js-typed-lowering.cc", | 28 "compiler/test-js-typed-lowering.cc", |
| 28 "compiler/test-jump-threading.cc", | 29 "compiler/test-jump-threading.cc", |
| 29 "compiler/test-linkage.cc", | 30 "compiler/test-linkage.cc", |
| 30 "compiler/test-loop-analysis.cc", | 31 "compiler/test-loop-analysis.cc", |
| 31 "compiler/test-loop-assignment-analysis.cc", | 32 "compiler/test-loop-assignment-analysis.cc", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "test-api.h", | 86 "test-api.h", |
| 86 "test-array-list.cc", | 87 "test-array-list.cc", |
| 87 "test-asm-validator.cc", | 88 "test-asm-validator.cc", |
| 88 "test-ast-expression-visitor.cc", | 89 "test-ast-expression-visitor.cc", |
| 89 "test-ast.cc", | 90 "test-ast.cc", |
| 90 "test-atomicops.cc", | 91 "test-atomicops.cc", |
| 91 "test-bignum-dtoa.cc", | 92 "test-bignum-dtoa.cc", |
| 92 "test-bignum.cc", | 93 "test-bignum.cc", |
| 93 "test-bit-vector.cc", | 94 "test-bit-vector.cc", |
| 94 "test-circular-queue.cc", | 95 "test-circular-queue.cc", |
| 95 "test-code-stub-assembler.cc", | |
| 96 "test-compiler.cc", | 96 "test-compiler.cc", |
| 97 "test-constantpool.cc", | 97 "test-constantpool.cc", |
| 98 "test-conversions.cc", | 98 "test-conversions.cc", |
| 99 "test-cpu-profiler.cc", | 99 "test-cpu-profiler.cc", |
| 100 "test-date.cc", | 100 "test-date.cc", |
| 101 "test-debug.cc", | 101 "test-debug.cc", |
| 102 "test-decls.cc", | 102 "test-decls.cc", |
| 103 "test-deoptimization.cc", | 103 "test-deoptimization.cc", |
| 104 "test-dictionary.cc", | 104 "test-dictionary.cc", |
| 105 "test-diy-fp.cc", | 105 "test-diy-fp.cc", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 "$target_gen_dir/resources.cc", | 344 "$target_gen_dir/resources.cc", |
| 345 ] | 345 ] |
| 346 | 346 |
| 347 args = [ | 347 args = [ |
| 348 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 348 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
| 349 "TEST", | 349 "TEST", |
| 350 ] | 350 ] |
| 351 args += rebase_path(sources, root_build_dir) | 351 args += rebase_path(sources, root_build_dir) |
| 352 } | 352 } |
| 353 # TODO(machenbach): Migrate generate-bytecode-expectations. | 353 # TODO(machenbach): Migrate generate-bytecode-expectations. |
| OLD | NEW |