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