| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "compiler/instruction-selector-unittest.h", | 47 "compiler/instruction-selector-unittest.h", |
| 48 "compiler/instruction-sequence-unittest.cc", | 48 "compiler/instruction-sequence-unittest.cc", |
| 49 "compiler/instruction-sequence-unittest.h", | 49 "compiler/instruction-sequence-unittest.h", |
| 50 "compiler/int64-lowering-unittest.cc", | 50 "compiler/int64-lowering-unittest.cc", |
| 51 "compiler/js-builtin-reducer-unittest.cc", | 51 "compiler/js-builtin-reducer-unittest.cc", |
| 52 "compiler/js-create-lowering-unittest.cc", | 52 "compiler/js-create-lowering-unittest.cc", |
| 53 "compiler/js-intrinsic-lowering-unittest.cc", | 53 "compiler/js-intrinsic-lowering-unittest.cc", |
| 54 "compiler/js-operator-unittest.cc", | 54 "compiler/js-operator-unittest.cc", |
| 55 "compiler/js-typed-lowering-unittest.cc", | 55 "compiler/js-typed-lowering-unittest.cc", |
| 56 "compiler/linkage-tail-call-unittest.cc", | 56 "compiler/linkage-tail-call-unittest.cc", |
| 57 "compiler/live-range-builder.h", |
| 57 "compiler/live-range-unittest.cc", | 58 "compiler/live-range-unittest.cc", |
| 58 "compiler/liveness-analyzer-unittest.cc", | 59 "compiler/liveness-analyzer-unittest.cc", |
| 59 "compiler/load-elimination-unittest.cc", | 60 "compiler/load-elimination-unittest.cc", |
| 60 "compiler/loop-peeling-unittest.cc", | 61 "compiler/loop-peeling-unittest.cc", |
| 61 "compiler/machine-operator-reducer-unittest.cc", | 62 "compiler/machine-operator-reducer-unittest.cc", |
| 62 "compiler/machine-operator-unittest.cc", | 63 "compiler/machine-operator-unittest.cc", |
| 63 "compiler/move-optimizer-unittest.cc", | 64 "compiler/move-optimizer-unittest.cc", |
| 64 "compiler/node-cache-unittest.cc", | 65 "compiler/node-cache-unittest.cc", |
| 65 "compiler/node-matchers-unittest.cc", | 66 "compiler/node-matchers-unittest.cc", |
| 66 "compiler/node-properties-unittest.cc", | 67 "compiler/node-properties-unittest.cc", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 93 "heap/slot-set-unittest.cc", | 94 "heap/slot-set-unittest.cc", |
| 94 "interpreter/bytecode-array-builder-unittest.cc", | 95 "interpreter/bytecode-array-builder-unittest.cc", |
| 95 "interpreter/bytecode-array-iterator-unittest.cc", | 96 "interpreter/bytecode-array-iterator-unittest.cc", |
| 96 "interpreter/bytecode-array-writer-unittest.cc", | 97 "interpreter/bytecode-array-writer-unittest.cc", |
| 97 "interpreter/bytecode-dead-code-optimizer-unittest.cc", | 98 "interpreter/bytecode-dead-code-optimizer-unittest.cc", |
| 98 "interpreter/bytecode-decoder-unittest.cc", | 99 "interpreter/bytecode-decoder-unittest.cc", |
| 99 "interpreter/bytecode-peephole-optimizer-unittest.cc", | 100 "interpreter/bytecode-peephole-optimizer-unittest.cc", |
| 100 "interpreter/bytecode-pipeline-unittest.cc", | 101 "interpreter/bytecode-pipeline-unittest.cc", |
| 101 "interpreter/bytecode-register-allocator-unittest.cc", | 102 "interpreter/bytecode-register-allocator-unittest.cc", |
| 102 "interpreter/bytecode-register-optimizer-unittest.cc", | 103 "interpreter/bytecode-register-optimizer-unittest.cc", |
| 104 "interpreter/bytecode-utils.h", |
| 103 "interpreter/bytecodes-unittest.cc", | 105 "interpreter/bytecodes-unittest.cc", |
| 104 "interpreter/constant-array-builder-unittest.cc", | 106 "interpreter/constant-array-builder-unittest.cc", |
| 105 "interpreter/interpreter-assembler-unittest.cc", | 107 "interpreter/interpreter-assembler-unittest.cc", |
| 106 "interpreter/interpreter-assembler-unittest.h", | 108 "interpreter/interpreter-assembler-unittest.h", |
| 107 "libplatform/default-platform-unittest.cc", | 109 "libplatform/default-platform-unittest.cc", |
| 108 "libplatform/task-queue-unittest.cc", | 110 "libplatform/task-queue-unittest.cc", |
| 109 "libplatform/worker-thread-unittest.cc", | 111 "libplatform/worker-thread-unittest.cc", |
| 110 "locked-queue-unittest.cc", | 112 "locked-queue-unittest.cc", |
| 111 "register-configuration-unittest.cc", | 113 "register-configuration-unittest.cc", |
| 112 "run-all-unittests.cc", | 114 "run-all-unittests.cc", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 180 |
| 179 # Suppress warnings about importing locally defined symbols. | 181 # Suppress warnings about importing locally defined symbols. |
| 180 if (is_component_build) { | 182 if (is_component_build) { |
| 181 ldflags = [ | 183 ldflags = [ |
| 182 "/ignore:4049", | 184 "/ignore:4049", |
| 183 "/ignore:4217", | 185 "/ignore:4217", |
| 184 ] | 186 ] |
| 185 } | 187 } |
| 186 } | 188 } |
| 187 } | 189 } |
| OLD | NEW |