| 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 = [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "compiler/test-loop-analysis.cc", | 37 "compiler/test-loop-analysis.cc", |
| 38 "compiler/test-loop-assignment-analysis.cc", | 38 "compiler/test-loop-assignment-analysis.cc", |
| 39 "compiler/test-machine-operator-reducer.cc", | 39 "compiler/test-machine-operator-reducer.cc", |
| 40 "compiler/test-multiple-return.cc", | 40 "compiler/test-multiple-return.cc", |
| 41 "compiler/test-node.cc", | 41 "compiler/test-node.cc", |
| 42 "compiler/test-operator.cc", | 42 "compiler/test-operator.cc", |
| 43 "compiler/test-representation-change.cc", | 43 "compiler/test-representation-change.cc", |
| 44 "compiler/test-run-bytecode-graph-builder.cc", | 44 "compiler/test-run-bytecode-graph-builder.cc", |
| 45 "compiler/test-run-calls-to-external-references.cc", | 45 "compiler/test-run-calls-to-external-references.cc", |
| 46 "compiler/test-run-deopt.cc", | 46 "compiler/test-run-deopt.cc", |
| 47 "compiler/test-run-inlining.cc", | |
| 48 "compiler/test-run-intrinsics.cc", | 47 "compiler/test-run-intrinsics.cc", |
| 49 "compiler/test-run-jsbranches.cc", | 48 "compiler/test-run-jsbranches.cc", |
| 50 "compiler/test-run-jscalls.cc", | 49 "compiler/test-run-jscalls.cc", |
| 51 "compiler/test-run-jsexceptions.cc", | 50 "compiler/test-run-jsexceptions.cc", |
| 52 "compiler/test-run-jsobjects.cc", | 51 "compiler/test-run-jsobjects.cc", |
| 53 "compiler/test-run-jsops.cc", | 52 "compiler/test-run-jsops.cc", |
| 54 "compiler/test-run-load-store.cc", | 53 "compiler/test-run-load-store.cc", |
| 55 "compiler/test-run-machops.cc", | 54 "compiler/test-run-machops.cc", |
| 56 "compiler/test-run-native-calls.cc", | 55 "compiler/test-run-native-calls.cc", |
| 57 "compiler/test-run-stackcheck.cc", | 56 "compiler/test-run-stackcheck.cc", |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ] | 423 ] |
| 425 | 424 |
| 426 deps = [ | 425 deps = [ |
| 427 "../..:v8", | 426 "../..:v8", |
| 428 "../..:v8_libbase", | 427 "../..:v8_libbase", |
| 429 "../..:v8_libplatform", | 428 "../..:v8_libplatform", |
| 430 "//build/config/sanitizers:deps", | 429 "//build/config/sanitizers:deps", |
| 431 "//build/win:default_exe_manifest", | 430 "//build/win:default_exe_manifest", |
| 432 ] | 431 ] |
| 433 } | 432 } |
| OLD | NEW |