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 # Please keep this file in sync with cctest.gyp. | 5 # Please keep this file in sync with cctest.gyp. |
6 | 6 |
7 import("../../gni/v8.gni") | 7 import("../../gni/v8.gni") |
8 | 8 |
9 v8_executable("cctest") { | 9 v8_executable("cctest") { |
10 testonly = true | 10 testonly = true |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 "test-assembler-arm64.cc", | 187 "test-assembler-arm64.cc", |
188 "test-code-stubs-arm64.cc", | 188 "test-code-stubs-arm64.cc", |
189 "test-code-stubs.cc", | 189 "test-code-stubs.cc", |
190 "test-disasm-arm64.cc", | 190 "test-disasm-arm64.cc", |
191 "test-fuzz-arm64.cc", | 191 "test-fuzz-arm64.cc", |
192 "test-javascript-arm64.cc", | 192 "test-javascript-arm64.cc", |
193 "test-js-arm64-variables.cc", | 193 "test-js-arm64-variables.cc", |
194 "test-run-wasm-relocation-arm64.cc", | 194 "test-run-wasm-relocation-arm64.cc", |
195 "test-utils-arm64.cc", | 195 "test-utils-arm64.cc", |
196 ] | 196 ] |
197 } else if (v8_target_arch == "ia32") { | 197 } else if (v8_target_arch == "x86") { |
198 sources += [ | 198 sources += [ |
199 "test-assembler-ia32.cc", | 199 "test-assembler-ia32.cc", |
200 "test-code-stubs-ia32.cc", | 200 "test-code-stubs-ia32.cc", |
201 "test-code-stubs.cc", | 201 "test-code-stubs.cc", |
202 "test-disasm-ia32.cc", | 202 "test-disasm-ia32.cc", |
203 "test-log-stack-tracer.cc", | 203 "test-log-stack-tracer.cc", |
204 "test-macro-assembler-ia32.cc", | 204 "test-macro-assembler-ia32.cc", |
205 "test-run-wasm-relocation-ia32.cc", | 205 "test-run-wasm-relocation-ia32.cc", |
206 ] | 206 ] |
207 } else if (v8_target_arch == "mips") { | 207 } else if (v8_target_arch == "mips") { |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 "$target_gen_dir/resources.cc", | 361 "$target_gen_dir/resources.cc", |
362 ] | 362 ] |
363 | 363 |
364 args = [ | 364 args = [ |
365 rebase_path("$target_gen_dir/resources.cc", root_build_dir), | 365 rebase_path("$target_gen_dir/resources.cc", root_build_dir), |
366 "TEST", | 366 "TEST", |
367 ] | 367 ] |
368 args += rebase_path(sources, root_build_dir) | 368 args += rebase_path(sources, root_build_dir) |
369 } | 369 } |
370 # TODO(machenbach): Migrate generate-bytecode-expectations. | 370 # TODO(machenbach): Migrate generate-bytecode-expectations. |
OLD | NEW |