| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "libsampler/test-sampler.cc", | 95 "libsampler/test-sampler.cc", |
| 96 "parsing/test-parse-decision.cc", | 96 "parsing/test-parse-decision.cc", |
| 97 "parsing/test-preparser.cc", | 97 "parsing/test-preparser.cc", |
| 98 "parsing/test-scanner-streams.cc", | 98 "parsing/test-scanner-streams.cc", |
| 99 "parsing/test-scanner.cc", | 99 "parsing/test-scanner.cc", |
| 100 "print-extension.cc", | 100 "print-extension.cc", |
| 101 "print-extension.h", | 101 "print-extension.h", |
| 102 "profiler-extension.cc", | 102 "profiler-extension.cc", |
| 103 "profiler-extension.h", | 103 "profiler-extension.h", |
| 104 "scope-test-helper.h", | 104 "scope-test-helper.h", |
| 105 "setup-isolate-for-tests.cc", | |
| 106 "setup-isolate-for-tests.h", | |
| 107 "test-access-checks.cc", | 105 "test-access-checks.cc", |
| 108 "test-accessor-assembler.cc", | 106 "test-accessor-assembler.cc", |
| 109 "test-accessors.cc", | 107 "test-accessors.cc", |
| 110 "test-api-accessors.cc", | 108 "test-api-accessors.cc", |
| 111 "test-api-interceptors.cc", | 109 "test-api-interceptors.cc", |
| 112 "test-api.cc", | 110 "test-api.cc", |
| 113 "test-api.h", | 111 "test-api.h", |
| 114 "test-array-list.cc", | 112 "test-array-list.cc", |
| 115 "test-ast-types.cc", | 113 "test-ast-types.cc", |
| 116 "test-ast.cc", | 114 "test-ast.cc", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 "../..:internal_config_base", | 325 "../..:internal_config_base", |
| 328 ] | 326 ] |
| 329 | 327 |
| 330 # TODO(machenbach): Translate from gyp. | 328 # TODO(machenbach): Translate from gyp. |
| 331 #["OS=="aix"", { | 329 #["OS=="aix"", { |
| 332 # "ldflags": [ "-Wl,-bbigtoc" ], | 330 # "ldflags": [ "-Wl,-bbigtoc" ], |
| 333 #}], | 331 #}], |
| 334 | 332 |
| 335 deps = [ | 333 deps = [ |
| 336 ":resources", | 334 ":resources", |
| 337 "../..:v8_builtins_generators", | |
| 338 "../..:v8_libbase", | 335 "../..:v8_libbase", |
| 339 "../..:v8_libplatform", | 336 "../..:v8_libplatform", |
| 340 "../..:wasm_module_runner", | 337 "../..:wasm_module_runner", |
| 341 "//build/config/sanitizers:deps", | 338 "//build/config/sanitizers:deps", |
| 342 "//build/win:default_exe_manifest", | 339 "//build/win:default_exe_manifest", |
| 343 ] | 340 ] |
| 344 | 341 |
| 345 defines = [] | 342 defines = [] |
| 346 | 343 |
| 347 if (is_component_build) { | 344 if (is_component_build) { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 ] | 431 ] |
| 435 | 432 |
| 436 deps = [ | 433 deps = [ |
| 437 "../..:v8", | 434 "../..:v8", |
| 438 "../..:v8_libbase", | 435 "../..:v8_libbase", |
| 439 "../..:v8_libplatform", | 436 "../..:v8_libplatform", |
| 440 "//build/config/sanitizers:deps", | 437 "//build/config/sanitizers:deps", |
| 441 "//build/win:default_exe_manifest", | 438 "//build/win:default_exe_manifest", |
| 442 ] | 439 ] |
| 443 } | 440 } |
| OLD | NEW |