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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "interpreter/interpreter-tester.cc", | 84 "interpreter/interpreter-tester.cc", |
85 "interpreter/interpreter-tester.h", | 85 "interpreter/interpreter-tester.h", |
86 "interpreter/source-position-matcher.cc", | 86 "interpreter/source-position-matcher.cc", |
87 "interpreter/source-position-matcher.h", | 87 "interpreter/source-position-matcher.h", |
88 "interpreter/test-bytecode-generator.cc", | 88 "interpreter/test-bytecode-generator.cc", |
89 "interpreter/test-interpreter-intrinsics.cc", | 89 "interpreter/test-interpreter-intrinsics.cc", |
90 "interpreter/test-interpreter.cc", | 90 "interpreter/test-interpreter.cc", |
91 "interpreter/test-source-positions.cc", | 91 "interpreter/test-source-positions.cc", |
92 "libplatform/test-tracing.cc", | 92 "libplatform/test-tracing.cc", |
93 "libsampler/test-sampler.cc", | 93 "libsampler/test-sampler.cc", |
| 94 "parsing/test-parse-decision.cc", |
94 "parsing/test-scanner-streams.cc", | 95 "parsing/test-scanner-streams.cc", |
95 "parsing/test-scanner.cc", | 96 "parsing/test-scanner.cc", |
96 "print-extension.cc", | 97 "print-extension.cc", |
97 "print-extension.h", | 98 "print-extension.h", |
98 "profiler-extension.cc", | 99 "profiler-extension.cc", |
99 "profiler-extension.h", | 100 "profiler-extension.h", |
100 "test-access-checks.cc", | 101 "test-access-checks.cc", |
101 "test-accessors.cc", | 102 "test-accessors.cc", |
102 "test-api-accessors.cc", | 103 "test-api-accessors.cc", |
103 "test-api-fast-accessor-builder.cc", | 104 "test-api-fast-accessor-builder.cc", |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 ] | 414 ] |
414 | 415 |
415 deps = [ | 416 deps = [ |
416 "../..:v8", | 417 "../..:v8", |
417 "../..:v8_libbase", | 418 "../..:v8_libbase", |
418 "../..:v8_libplatform", | 419 "../..:v8_libplatform", |
419 "//build/config/sanitizers:deps", | 420 "//build/config/sanitizers:deps", |
420 "//build/win:default_exe_manifest", | 421 "//build/win:default_exe_manifest", |
421 ] | 422 ] |
422 } | 423 } |
OLD | NEW |