| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 #["OS=="aix"", { | 331 #["OS=="aix"", { |
| 332 # "ldflags": [ "-Wl,-bbigtoc" ], | 332 # "ldflags": [ "-Wl,-bbigtoc" ], |
| 333 #}], | 333 #}], |
| 334 | 334 |
| 335 deps = [ | 335 deps = [ |
| 336 ":resources", | 336 ":resources", |
| 337 "../..:v8_builtins_generators", | 337 "../..:v8_builtins_generators", |
| 338 "../..:v8_libbase", | 338 "../..:v8_libbase", |
| 339 "../..:v8_libplatform", | 339 "../..:v8_libplatform", |
| 340 "../..:wasm_module_runner", | 340 "../..:wasm_module_runner", |
| 341 "//build/config/sanitizers:deps", | 341 "//build/config:exe_and_shlib_deps", |
| 342 "//build/win:default_exe_manifest", | 342 "//build/win:default_exe_manifest", |
| 343 ] | 343 ] |
| 344 | 344 |
| 345 defines = [] | 345 defines = [] |
| 346 | 346 |
| 347 if (is_component_build) { | 347 if (is_component_build) { |
| 348 # cctest can't be built against a shared library, so we | 348 # cctest can't be built against a shared library, so we |
| 349 # need to depend on the underlying static target in that case. | 349 # need to depend on the underlying static target in that case. |
| 350 deps += [ "../..:v8_maybe_snapshot" ] | 350 deps += [ "../..:v8_maybe_snapshot" ] |
| 351 defines += [ "BUILDING_V8_SHARED" ] | 351 defines += [ "BUILDING_V8_SHARED" ] |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 | 430 |
| 431 configs = [ | 431 configs = [ |
| 432 "../..:external_config", | 432 "../..:external_config", |
| 433 "../..:internal_config_base", | 433 "../..:internal_config_base", |
| 434 ] | 434 ] |
| 435 | 435 |
| 436 deps = [ | 436 deps = [ |
| 437 "../..:v8", | 437 "../..:v8", |
| 438 "../..:v8_libbase", | 438 "../..:v8_libbase", |
| 439 "../..:v8_libplatform", | 439 "../..:v8_libplatform", |
| 440 "//build/config/sanitizers:deps", | 440 "//build/config:exe_and_shlib_deps", |
| 441 "//build/win:default_exe_manifest", | 441 "//build/win:default_exe_manifest", |
| 442 ] | 442 ] |
| 443 } | 443 } |
| OLD | NEW |