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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 "trace-extension.h", | 184 "trace-extension.h", |
185 "types-fuzz.h", | 185 "types-fuzz.h", |
186 "wasm/test-managed.cc", | 186 "wasm/test-managed.cc", |
187 "wasm/test-run-wasm-64.cc", | 187 "wasm/test-run-wasm-64.cc", |
188 "wasm/test-run-wasm-asmjs.cc", | 188 "wasm/test-run-wasm-asmjs.cc", |
189 "wasm/test-run-wasm-interpreter.cc", | 189 "wasm/test-run-wasm-interpreter.cc", |
190 "wasm/test-run-wasm-js.cc", | 190 "wasm/test-run-wasm-js.cc", |
191 "wasm/test-run-wasm-module.cc", | 191 "wasm/test-run-wasm-module.cc", |
192 "wasm/test-run-wasm-relocation.cc", | 192 "wasm/test-run-wasm-relocation.cc", |
193 "wasm/test-run-wasm.cc", | 193 "wasm/test-run-wasm.cc", |
| 194 "wasm/test-wasm-breakpoints.cc", |
194 "wasm/test-wasm-stack.cc", | 195 "wasm/test-wasm-stack.cc", |
195 "wasm/test-wasm-trap-position.cc", | 196 "wasm/test-wasm-trap-position.cc", |
196 "wasm/wasm-run-utils.h", | 197 "wasm/wasm-run-utils.h", |
197 ] | 198 ] |
198 | 199 |
199 if (v8_current_cpu == "arm") { | 200 if (v8_current_cpu == "arm") { |
200 sources += [ ### gcmole(arch:arm) ### | 201 sources += [ ### gcmole(arch:arm) ### |
201 "test-assembler-arm.cc", | 202 "test-assembler-arm.cc", |
202 "test-code-stubs-arm.cc", | 203 "test-code-stubs-arm.cc", |
203 "test-code-stubs.cc", | 204 "test-code-stubs.cc", |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 ] | 426 ] |
426 | 427 |
427 deps = [ | 428 deps = [ |
428 "../..:v8", | 429 "../..:v8", |
429 "../..:v8_libbase", | 430 "../..:v8_libbase", |
430 "../..:v8_libplatform", | 431 "../..:v8_libplatform", |
431 "//build/config/sanitizers:deps", | 432 "//build/config/sanitizers:deps", |
432 "//build/win:default_exe_manifest", | 433 "//build/win:default_exe_manifest", |
433 ] | 434 ] |
434 } | 435 } |
OLD | NEW |