| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 "test-hashmap.cc", | 140 "test-hashmap.cc", |
| 141 "test-heap-profiler.cc", | 141 "test-heap-profiler.cc", |
| 142 "test-hydrogen-types.cc", | 142 "test-hydrogen-types.cc", |
| 143 "test-identity-map.cc", | 143 "test-identity-map.cc", |
| 144 "test-inobject-slack-tracking.cc", | 144 "test-inobject-slack-tracking.cc", |
| 145 "test-list.cc", | 145 "test-list.cc", |
| 146 "test-liveedit.cc", | 146 "test-liveedit.cc", |
| 147 "test-lockers.cc", | 147 "test-lockers.cc", |
| 148 "test-log.cc", | 148 "test-log.cc", |
| 149 "test-mementos.cc", | 149 "test-mementos.cc", |
| 150 "test-modules.cc", |
| 150 "test-object.cc", | 151 "test-object.cc", |
| 151 "test-parsing.cc", | 152 "test-parsing.cc", |
| 152 "test-platform.cc", | 153 "test-platform.cc", |
| 153 "test-profile-generator.cc", | 154 "test-profile-generator.cc", |
| 154 "test-random-number-generator.cc", | 155 "test-random-number-generator.cc", |
| 155 "test-receiver-check-hidden-prototype.cc", | 156 "test-receiver-check-hidden-prototype.cc", |
| 156 "test-regexp.cc", | 157 "test-regexp.cc", |
| 157 "test-representation.cc", | 158 "test-representation.cc", |
| 158 "test-sampler-api.cc", | 159 "test-sampler-api.cc", |
| 159 "test-serialize.cc", | 160 "test-serialize.cc", |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 if (is_win) { | 429 if (is_win) { |
| 429 # Suppress warnings about importing locally defined symbols. | 430 # Suppress warnings about importing locally defined symbols. |
| 430 if (is_component_build) { | 431 if (is_component_build) { |
| 431 ldflags = [ | 432 ldflags = [ |
| 432 "/ignore:4049", | 433 "/ignore:4049", |
| 433 "/ignore:4217", | 434 "/ignore:4217", |
| 434 ] | 435 ] |
| 435 } | 436 } |
| 436 } | 437 } |
| 437 } | 438 } |
| OLD | NEW |