| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 } else if (v8_current_cpu == "x64") { | 269 } else if (v8_current_cpu == "x64") { |
| 270 sources += [ ### gcmole(arch:x64) ### | 270 sources += [ ### gcmole(arch:x64) ### |
| 271 "test-assembler-x64.cc", | 271 "test-assembler-x64.cc", |
| 272 "test-code-stubs-x64.cc", | 272 "test-code-stubs-x64.cc", |
| 273 "test-code-stubs.cc", | 273 "test-code-stubs.cc", |
| 274 "test-code-stubs.h", | 274 "test-code-stubs.h", |
| 275 "test-disasm-x64.cc", | 275 "test-disasm-x64.cc", |
| 276 "test-log-stack-tracer.cc", | 276 "test-log-stack-tracer.cc", |
| 277 "test-macro-assembler-x64.cc", | 277 "test-macro-assembler-x64.cc", |
| 278 "test-run-wasm-relocation-x64.cc", | 278 "test-run-wasm-relocation-x64.cc", |
| 279 "wasm/test-run-wasm-simd-lowering.cc", |
| 279 "wasm/test-run-wasm-simd.cc", | 280 "wasm/test-run-wasm-simd.cc", |
| 280 ] | 281 ] |
| 281 } else if (v8_current_cpu == "x87") { | 282 } else if (v8_current_cpu == "x87") { |
| 282 sources += [ ### gcmole(arch:x87) ### | 283 sources += [ ### gcmole(arch:x87) ### |
| 283 "test-assembler-x87.cc", | 284 "test-assembler-x87.cc", |
| 284 "test-code-stubs-x87.cc", | 285 "test-code-stubs-x87.cc", |
| 285 "test-code-stubs.cc", | 286 "test-code-stubs.cc", |
| 286 "test-code-stubs.h", | 287 "test-code-stubs.h", |
| 287 "test-disasm-x87.cc", | 288 "test-disasm-x87.cc", |
| 288 "test-log-stack-tracer.cc", | 289 "test-log-stack-tracer.cc", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 if (is_win) { | 433 if (is_win) { |
| 433 # Suppress warnings about importing locally defined symbols. | 434 # Suppress warnings about importing locally defined symbols. |
| 434 if (is_component_build) { | 435 if (is_component_build) { |
| 435 ldflags = [ | 436 ldflags = [ |
| 436 "/ignore:4049", | 437 "/ignore:4049", |
| 437 "/ignore:4217", | 438 "/ignore:4217", |
| 438 ] | 439 ] |
| 439 } | 440 } |
| 440 } | 441 } |
| 441 } | 442 } |
| OLD | NEW |