| 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-lexer.cc", |
| 14 "asmjs/test-asm-typer.cc", | 15 "asmjs/test-asm-typer.cc", |
| 15 "ast-types-fuzz.h", | 16 "ast-types-fuzz.h", |
| 16 "cctest.cc", | 17 "cctest.cc", |
| 17 "cctest.h", | 18 "cctest.h", |
| 18 "compiler/c-signature.h", | 19 "compiler/c-signature.h", |
| 19 "compiler/call-tester.h", | 20 "compiler/call-tester.h", |
| 20 "compiler/code-assembler-tester.h", | 21 "compiler/code-assembler-tester.h", |
| 21 "compiler/codegen-tester.cc", | 22 "compiler/codegen-tester.cc", |
| 22 "compiler/codegen-tester.h", | 23 "compiler/codegen-tester.h", |
| 23 "compiler/function-tester.cc", | 24 "compiler/function-tester.cc", |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 ] | 434 ] |
| 434 | 435 |
| 435 deps = [ | 436 deps = [ |
| 436 "../..:v8", | 437 "../..:v8", |
| 437 "../..:v8_libbase", | 438 "../..:v8_libbase", |
| 438 "../..:v8_libplatform", | 439 "../..:v8_libplatform", |
| 439 "//build/config/sanitizers:deps", | 440 "//build/config/sanitizers:deps", |
| 440 "//build/win:default_exe_manifest", | 441 "//build/win:default_exe_manifest", |
| 441 ] | 442 ] |
| 442 } | 443 } |
| OLD | NEW |