| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 "test-decls.cc", | 125 "test-decls.cc", |
| 126 "test-deoptimization.cc", | 126 "test-deoptimization.cc", |
| 127 "test-dictionary.cc", | 127 "test-dictionary.cc", |
| 128 "test-diy-fp.cc", | 128 "test-diy-fp.cc", |
| 129 "test-double.cc", | 129 "test-double.cc", |
| 130 "test-dtoa.cc", | 130 "test-dtoa.cc", |
| 131 "test-elements-kind.cc", | 131 "test-elements-kind.cc", |
| 132 "test-fast-dtoa.cc", | 132 "test-fast-dtoa.cc", |
| 133 "test-feedback-vector.cc", | 133 "test-feedback-vector.cc", |
| 134 "test-feedback-vector.h", | 134 "test-feedback-vector.h", |
| 135 "test-ffi.cc", |
| 135 "test-field-type-tracking.cc", | 136 "test-field-type-tracking.cc", |
| 136 "test-fixed-dtoa.cc", | 137 "test-fixed-dtoa.cc", |
| 137 "test-flags.cc", | 138 "test-flags.cc", |
| 138 "test-func-name-inference.cc", | 139 "test-func-name-inference.cc", |
| 139 "test-global-handles.cc", | 140 "test-global-handles.cc", |
| 140 "test-global-object.cc", | 141 "test-global-object.cc", |
| 141 "test-hashing.cc", | 142 "test-hashing.cc", |
| 142 "test-hashmap.cc", | 143 "test-hashmap.cc", |
| 143 "test-heap-profiler.cc", | 144 "test-heap-profiler.cc", |
| 144 "test-hydrogen-types.cc", | 145 "test-hydrogen-types.cc", |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 ] | 427 ] |
| 427 | 428 |
| 428 deps = [ | 429 deps = [ |
| 429 "../..:v8", | 430 "../..:v8", |
| 430 "../..:v8_libbase", | 431 "../..:v8_libbase", |
| 431 "../..:v8_libplatform", | 432 "../..:v8_libplatform", |
| 432 "//build/config/sanitizers:deps", | 433 "//build/config/sanitizers:deps", |
| 433 "//build/win:default_exe_manifest", | 434 "//build/win:default_exe_manifest", |
| 434 ] | 435 ] |
| 435 } | 436 } |
| OLD | NEW |