| 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 import("../../gni/v8.gni") | 5 import("../../gni/v8.gni") |
| 6 | 6 |
| 7 v8_executable("cctest") { | 7 v8_executable("cctest") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| 11 "$target_gen_dir/resources.cc", | 11 "$target_gen_dir/resources.cc", |
| 12 | 12 |
| 13 ### gcmole(all) ### | 13 ### gcmole(all) ### |
| 14 "asmjs/test-asm-typer.cc", | 14 "asmjs/test-asm-typer.cc", |
| 15 "ast-types-fuzz.h", | 15 "ast-types-fuzz.h", |
| 16 "cctest.cc", | 16 "cctest.cc", |
| 17 "cctest.h", | 17 "cctest.h", |
| 18 "compiler/c-signature.h", | 18 "compiler/c-signature.h", |
| 19 "compiler/call-tester.h", | 19 "compiler/call-tester.h", |
| 20 "compiler/code-assembler-tester.h", | 20 "compiler/code-assembler-tester.h", |
| 21 "compiler/codegen-tester.cc", | 21 "compiler/codegen-tester.cc", |
| 22 "compiler/codegen-tester.h", | 22 "compiler/codegen-tester.h", |
| 23 "compiler/function-tester.cc", | 23 "compiler/function-tester.cc", |
| 24 "compiler/function-tester.h", | 24 "compiler/function-tester.h", |
| 25 "compiler/graph-builder-tester.h", | 25 "compiler/graph-builder-tester.h", |
| 26 "compiler/test-basic-block-profiler.cc", | 26 "compiler/test-basic-block-profiler.cc", |
| 27 "compiler/test-branch-combine.cc", | 27 "compiler/test-branch-combine.cc", |
| 28 "compiler/test-code-assembler.cc", | 28 "compiler/test-code-assembler.cc", |
| 29 "compiler/test-ffi.cc", |
| 29 "compiler/test-gap-resolver.cc", | 30 "compiler/test-gap-resolver.cc", |
| 30 "compiler/test-graph-visualizer.cc", | 31 "compiler/test-graph-visualizer.cc", |
| 31 "compiler/test-instruction.cc", | 32 "compiler/test-instruction.cc", |
| 32 "compiler/test-js-constant-cache.cc", | 33 "compiler/test-js-constant-cache.cc", |
| 33 "compiler/test-js-context-specialization.cc", | 34 "compiler/test-js-context-specialization.cc", |
| 34 "compiler/test-js-typed-lowering.cc", | 35 "compiler/test-js-typed-lowering.cc", |
| 35 "compiler/test-jump-threading.cc", | 36 "compiler/test-jump-threading.cc", |
| 36 "compiler/test-linkage.cc", | 37 "compiler/test-linkage.cc", |
| 37 "compiler/test-loop-analysis.cc", | 38 "compiler/test-loop-analysis.cc", |
| 38 "compiler/test-loop-assignment-analysis.cc", | 39 "compiler/test-loop-assignment-analysis.cc", |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 ] | 432 ] |
| 432 | 433 |
| 433 deps = [ | 434 deps = [ |
| 434 "../..:v8", | 435 "../..:v8", |
| 435 "../..:v8_libbase", | 436 "../..:v8_libbase", |
| 436 "../..:v8_libplatform", | 437 "../..:v8_libplatform", |
| 437 "//build/config/sanitizers:deps", | 438 "//build/config/sanitizers:deps", |
| 438 "//build/win:default_exe_manifest", | 439 "//build/win:default_exe_manifest", |
| 439 ] | 440 ] |
| 440 } | 441 } |
| OLD | NEW |