| 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 22 matching lines...) Expand all Loading... |
| 33 "compiler/test-js-context-specialization.cc", | 33 "compiler/test-js-context-specialization.cc", |
| 34 "compiler/test-js-typed-lowering.cc", | 34 "compiler/test-js-typed-lowering.cc", |
| 35 "compiler/test-jump-threading.cc", | 35 "compiler/test-jump-threading.cc", |
| 36 "compiler/test-linkage.cc", | 36 "compiler/test-linkage.cc", |
| 37 "compiler/test-loop-analysis.cc", | 37 "compiler/test-loop-analysis.cc", |
| 38 "compiler/test-loop-assignment-analysis.cc", | 38 "compiler/test-loop-assignment-analysis.cc", |
| 39 "compiler/test-machine-operator-reducer.cc", | 39 "compiler/test-machine-operator-reducer.cc", |
| 40 "compiler/test-multiple-return.cc", | 40 "compiler/test-multiple-return.cc", |
| 41 "compiler/test-node.cc", | 41 "compiler/test-node.cc", |
| 42 "compiler/test-operator.cc", | 42 "compiler/test-operator.cc", |
| 43 "compiler/test-osr.cc", |
| 43 "compiler/test-representation-change.cc", | 44 "compiler/test-representation-change.cc", |
| 44 "compiler/test-run-bytecode-graph-builder.cc", | 45 "compiler/test-run-bytecode-graph-builder.cc", |
| 45 "compiler/test-run-calls-to-external-references.cc", | 46 "compiler/test-run-calls-to-external-references.cc", |
| 46 "compiler/test-run-deopt.cc", | 47 "compiler/test-run-deopt.cc", |
| 47 "compiler/test-run-inlining.cc", | 48 "compiler/test-run-inlining.cc", |
| 48 "compiler/test-run-intrinsics.cc", | 49 "compiler/test-run-intrinsics.cc", |
| 49 "compiler/test-run-jsbranches.cc", | 50 "compiler/test-run-jsbranches.cc", |
| 50 "compiler/test-run-jscalls.cc", | 51 "compiler/test-run-jscalls.cc", |
| 51 "compiler/test-run-jsexceptions.cc", | 52 "compiler/test-run-jsexceptions.cc", |
| 52 "compiler/test-run-jsobjects.cc", | 53 "compiler/test-run-jsobjects.cc", |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 if (is_win) { | 431 if (is_win) { |
| 431 # Suppress warnings about importing locally defined symbols. | 432 # Suppress warnings about importing locally defined symbols. |
| 432 if (is_component_build) { | 433 if (is_component_build) { |
| 433 ldflags = [ | 434 ldflags = [ |
| 434 "/ignore:4049", | 435 "/ignore:4049", |
| 435 "/ignore:4217", | 436 "/ignore:4217", |
| 436 ] | 437 ] |
| 437 } | 438 } |
| 438 } | 439 } |
| 439 } | 440 } |
| OLD | NEW |