| 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 # Please keep this file in sync with unittests.gyp. | 5 # Please keep this file in sync with unittests.gyp. |
| 6 | 6 |
| 7 import("../../gni/v8.gni") | 7 import("../../gni/v8.gni") |
| 8 | 8 |
| 9 v8_executable("unittests") { | 9 v8_executable("unittests") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "heap/bitmap-unittest.cc", | 83 "heap/bitmap-unittest.cc", |
| 84 "heap/gc-idle-time-handler-unittest.cc", | 84 "heap/gc-idle-time-handler-unittest.cc", |
| 85 "heap/gc-tracer-unittest.cc", | 85 "heap/gc-tracer-unittest.cc", |
| 86 "heap/heap-unittest.cc", | 86 "heap/heap-unittest.cc", |
| 87 "heap/memory-reducer-unittest.cc", | 87 "heap/memory-reducer-unittest.cc", |
| 88 "heap/scavenge-job-unittest.cc", | 88 "heap/scavenge-job-unittest.cc", |
| 89 "heap/slot-set-unittest.cc", | 89 "heap/slot-set-unittest.cc", |
| 90 "interpreter/bytecode-array-builder-unittest.cc", | 90 "interpreter/bytecode-array-builder-unittest.cc", |
| 91 "interpreter/bytecode-array-iterator-unittest.cc", | 91 "interpreter/bytecode-array-iterator-unittest.cc", |
| 92 "interpreter/bytecode-array-writer-unittest.cc", | 92 "interpreter/bytecode-array-writer-unittest.cc", |
| 93 "interpreter/bytecode-dead-code-optimizer-unittest.cc", |
| 93 "interpreter/bytecode-peephole-optimizer-unittest.cc", | 94 "interpreter/bytecode-peephole-optimizer-unittest.cc", |
| 94 "interpreter/bytecode-pipeline-unittest.cc", | 95 "interpreter/bytecode-pipeline-unittest.cc", |
| 95 "interpreter/bytecode-register-allocator-unittest.cc", | 96 "interpreter/bytecode-register-allocator-unittest.cc", |
| 96 "interpreter/bytecode-register-optimizer-unittest.cc", | 97 "interpreter/bytecode-register-optimizer-unittest.cc", |
| 97 "interpreter/bytecodes-unittest.cc", | 98 "interpreter/bytecodes-unittest.cc", |
| 98 "interpreter/constant-array-builder-unittest.cc", | 99 "interpreter/constant-array-builder-unittest.cc", |
| 99 "interpreter/interpreter-assembler-unittest.cc", | 100 "interpreter/interpreter-assembler-unittest.cc", |
| 100 "interpreter/interpreter-assembler-unittest.h", | 101 "interpreter/interpreter-assembler-unittest.h", |
| 101 "interpreter/source-position-table-unittest.cc", | 102 "interpreter/source-position-table-unittest.cc", |
| 102 "libplatform/default-platform-unittest.cc", | 103 "libplatform/default-platform-unittest.cc", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 171 |
| 171 # Suppress warnings about importing locally defined symbols. | 172 # Suppress warnings about importing locally defined symbols. |
| 172 if (is_component_build) { | 173 if (is_component_build) { |
| 173 ldflags = [ | 174 ldflags = [ |
| 174 "/ignore:4049", | 175 "/ignore:4049", |
| 175 "/ignore:4217", | 176 "/ignore:4217", |
| 176 ] | 177 ] |
| 177 } | 178 } |
| 178 } | 179 } |
| 179 } | 180 } |
| OLD | NEW |