| 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", |  | 
|   44     "compiler/test-representation-change.cc", |   43     "compiler/test-representation-change.cc", | 
|   45     "compiler/test-run-bytecode-graph-builder.cc", |   44     "compiler/test-run-bytecode-graph-builder.cc", | 
|   46     "compiler/test-run-calls-to-external-references.cc", |   45     "compiler/test-run-calls-to-external-references.cc", | 
|   47     "compiler/test-run-deopt.cc", |   46     "compiler/test-run-deopt.cc", | 
|   48     "compiler/test-run-inlining.cc", |   47     "compiler/test-run-inlining.cc", | 
|   49     "compiler/test-run-intrinsics.cc", |   48     "compiler/test-run-intrinsics.cc", | 
|   50     "compiler/test-run-jsbranches.cc", |   49     "compiler/test-run-jsbranches.cc", | 
|   51     "compiler/test-run-jscalls.cc", |   50     "compiler/test-run-jscalls.cc", | 
|   52     "compiler/test-run-jsexceptions.cc", |   51     "compiler/test-run-jsexceptions.cc", | 
|   53     "compiler/test-run-jsobjects.cc", |   52     "compiler/test-run-jsobjects.cc", | 
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  431   if (is_win) { |  430   if (is_win) { | 
|  432     # Suppress warnings about importing locally defined symbols. |  431     # Suppress warnings about importing locally defined symbols. | 
|  433     if (is_component_build) { |  432     if (is_component_build) { | 
|  434       ldflags = [ |  433       ldflags = [ | 
|  435         "/ignore:4049", |  434         "/ignore:4049", | 
|  436         "/ignore:4217", |  435         "/ignore:4217", | 
|  437       ] |  436       ] | 
|  438     } |  437     } | 
|  439   } |  438   } | 
|  440 } |  439 } | 
| OLD | NEW |