| 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 |
| 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/code-assembler-tester.h", |
| 16 "compiler/codegen-tester.cc", | 17 "compiler/codegen-tester.cc", |
| 17 "compiler/codegen-tester.h", | 18 "compiler/codegen-tester.h", |
| 18 "compiler/function-tester.h", | 19 "compiler/function-tester.h", |
| 19 "compiler/graph-builder-tester.h", | 20 "compiler/graph-builder-tester.h", |
| 20 "compiler/test-basic-block-profiler.cc", | 21 "compiler/test-basic-block-profiler.cc", |
| 21 "compiler/test-branch-combine.cc", | 22 "compiler/test-branch-combine.cc", |
| 23 "compiler/test-code-assembler.cc", |
| 22 "compiler/test-gap-resolver.cc", | 24 "compiler/test-gap-resolver.cc", |
| 23 "compiler/test-graph-visualizer.cc", | 25 "compiler/test-graph-visualizer.cc", |
| 24 "compiler/test-instruction.cc", | 26 "compiler/test-instruction.cc", |
| 25 "compiler/test-js-constant-cache.cc", | 27 "compiler/test-js-constant-cache.cc", |
| 26 "compiler/test-js-context-specialization.cc", | 28 "compiler/test-js-context-specialization.cc", |
| 27 "compiler/test-js-typed-lowering.cc", | 29 "compiler/test-js-typed-lowering.cc", |
| 28 "compiler/test-jump-threading.cc", | 30 "compiler/test-jump-threading.cc", |
| 29 "compiler/test-linkage.cc", | 31 "compiler/test-linkage.cc", |
| 30 "compiler/test-loop-analysis.cc", | 32 "compiler/test-loop-analysis.cc", |
| 31 "compiler/test-loop-assignment-analysis.cc", | 33 "compiler/test-loop-assignment-analysis.cc", |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "$target_gen_dir/resources.cc", | 363 "$target_gen_dir/resources.cc", |
| 362 ] | 364 ] |
| 363 | 365 |
| 364 args = [ | 366 args = [ |
| 365 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 367 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
| 366 "TEST", | 368 "TEST", |
| 367 ] | 369 ] |
| 368 args += rebase_path(sources, root_build_dir) | 370 args += rebase_path(sources, root_build_dir) |
| 369 } | 371 } |
| 370 # TODO(machenbach): Migrate generate-bytecode-expectations. | 372 # TODO(machenbach): Migrate generate-bytecode-expectations. |
| OLD | NEW |