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.h", | 84 "interpreter/interpreter-tester.h", |
85 "interpreter/source-position-matcher.cc", | 85 "interpreter/source-position-matcher.cc", |
86 "interpreter/source-position-matcher.h", | 86 "interpreter/source-position-matcher.h", |
87 "interpreter/test-bytecode-generator.cc", | 87 "interpreter/test-bytecode-generator.cc", |
88 "interpreter/test-interpreter-intrinsics.cc", | 88 "interpreter/test-interpreter-intrinsics.cc", |
89 "interpreter/test-interpreter.cc", | 89 "interpreter/test-interpreter.cc", |
90 "interpreter/test-source-positions.cc", | 90 "interpreter/test-source-positions.cc", |
91 "libplatform/test-tracing.cc", | 91 "libplatform/test-tracing.cc", |
92 "libsampler/test-sampler.cc", | 92 "libsampler/test-sampler.cc", |
93 "parsing/test-scanner-streams.cc", | 93 "parsing/test-scanner-streams.cc", |
| 94 "parsing/test-scanner.cc", |
94 "print-extension.cc", | 95 "print-extension.cc", |
95 "print-extension.h", | 96 "print-extension.h", |
96 "profiler-extension.cc", | 97 "profiler-extension.cc", |
97 "profiler-extension.h", | 98 "profiler-extension.h", |
98 "test-access-checks.cc", | 99 "test-access-checks.cc", |
99 "test-accessors.cc", | 100 "test-accessors.cc", |
100 "test-api-accessors.cc", | 101 "test-api-accessors.cc", |
101 "test-api-fast-accessor-builder.cc", | 102 "test-api-fast-accessor-builder.cc", |
102 "test-api-interceptors.cc", | 103 "test-api-interceptors.cc", |
103 "test-api.cc", | 104 "test-api.cc", |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 if (is_win) { | 428 if (is_win) { |
428 # Suppress warnings about importing locally defined symbols. | 429 # Suppress warnings about importing locally defined symbols. |
429 if (is_component_build) { | 430 if (is_component_build) { |
430 ldflags = [ | 431 ldflags = [ |
431 "/ignore:4049", | 432 "/ignore:4049", |
432 "/ignore:4217", | 433 "/ignore:4217", |
433 ] | 434 ] |
434 } | 435 } |
435 } | 436 } |
436 } | 437 } |
OLD | NEW |