| 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("unittests") { | 7 v8_executable("unittests") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "compiler/escape-analysis-unittest.cc", | 42 "compiler/escape-analysis-unittest.cc", |
| 43 "compiler/graph-reducer-unittest.cc", | 43 "compiler/graph-reducer-unittest.cc", |
| 44 "compiler/graph-reducer-unittest.h", | 44 "compiler/graph-reducer-unittest.h", |
| 45 "compiler/graph-trimmer-unittest.cc", | 45 "compiler/graph-trimmer-unittest.cc", |
| 46 "compiler/graph-unittest.cc", | 46 "compiler/graph-unittest.cc", |
| 47 "compiler/graph-unittest.h", | 47 "compiler/graph-unittest.h", |
| 48 "compiler/instruction-selector-unittest.cc", | 48 "compiler/instruction-selector-unittest.cc", |
| 49 "compiler/instruction-selector-unittest.h", | 49 "compiler/instruction-selector-unittest.h", |
| 50 "compiler/instruction-sequence-unittest.cc", | 50 "compiler/instruction-sequence-unittest.cc", |
| 51 "compiler/instruction-sequence-unittest.h", | 51 "compiler/instruction-sequence-unittest.h", |
| 52 "compiler/instruction-unittest.cc", |
| 52 "compiler/int64-lowering-unittest.cc", | 53 "compiler/int64-lowering-unittest.cc", |
| 53 "compiler/js-builtin-reducer-unittest.cc", | 54 "compiler/js-builtin-reducer-unittest.cc", |
| 54 "compiler/js-create-lowering-unittest.cc", | 55 "compiler/js-create-lowering-unittest.cc", |
| 55 "compiler/js-intrinsic-lowering-unittest.cc", | 56 "compiler/js-intrinsic-lowering-unittest.cc", |
| 56 "compiler/js-operator-unittest.cc", | 57 "compiler/js-operator-unittest.cc", |
| 57 "compiler/js-typed-lowering-unittest.cc", | 58 "compiler/js-typed-lowering-unittest.cc", |
| 58 "compiler/linkage-tail-call-unittest.cc", | 59 "compiler/linkage-tail-call-unittest.cc", |
| 59 "compiler/live-range-builder.h", | 60 "compiler/live-range-builder.h", |
| 60 "compiler/live-range-unittest.cc", | 61 "compiler/live-range-unittest.cc", |
| 61 "compiler/liveness-analyzer-unittest.cc", | 62 "compiler/liveness-analyzer-unittest.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 184 |
| 184 # Suppress warnings about importing locally defined symbols. | 185 # Suppress warnings about importing locally defined symbols. |
| 185 if (is_component_build) { | 186 if (is_component_build) { |
| 186 ldflags = [ | 187 ldflags = [ |
| 187 "/ignore:4049", | 188 "/ignore:4049", |
| 188 "/ignore:4217", | 189 "/ignore:4217", |
| 189 ] | 190 ] |
| 190 } | 191 } |
| 191 } | 192 } |
| 192 } | 193 } |
| OLD | NEW |