| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "compiler/state-values-utils-unittest.cc", | 93 "compiler/state-values-utils-unittest.cc", |
| 94 "compiler/tail-call-optimization-unittest.cc", | 94 "compiler/tail-call-optimization-unittest.cc", |
| 95 "compiler/typed-optimization-unittest.cc", | 95 "compiler/typed-optimization-unittest.cc", |
| 96 "compiler/typer-unittest.cc", | 96 "compiler/typer-unittest.cc", |
| 97 "compiler/value-numbering-reducer-unittest.cc", | 97 "compiler/value-numbering-reducer-unittest.cc", |
| 98 "compiler/zone-stats-unittest.cc", | 98 "compiler/zone-stats-unittest.cc", |
| 99 "counters-unittest.cc", | 99 "counters-unittest.cc", |
| 100 "eh-frame-iterator-unittest.cc", | 100 "eh-frame-iterator-unittest.cc", |
| 101 "eh-frame-writer-unittest.cc", | 101 "eh-frame-writer-unittest.cc", |
| 102 "heap/bitmap-unittest.cc", | 102 "heap/bitmap-unittest.cc", |
| 103 "heap/concurrent-marking-deque-unittest.cc", |
| 103 "heap/embedder-tracing-unittest.cc", | 104 "heap/embedder-tracing-unittest.cc", |
| 104 "heap/gc-idle-time-handler-unittest.cc", | 105 "heap/gc-idle-time-handler-unittest.cc", |
| 105 "heap/gc-tracer-unittest.cc", | 106 "heap/gc-tracer-unittest.cc", |
| 106 "heap/heap-unittest.cc", | 107 "heap/heap-unittest.cc", |
| 107 "heap/marking-unittest.cc", | 108 "heap/marking-unittest.cc", |
| 108 "heap/memory-reducer-unittest.cc", | 109 "heap/memory-reducer-unittest.cc", |
| 109 "heap/scavenge-job-unittest.cc", | 110 "heap/scavenge-job-unittest.cc", |
| 110 "heap/slot-set-unittest.cc", | 111 "heap/slot-set-unittest.cc", |
| 111 "heap/spaces-unittest.cc", | 112 "heap/spaces-unittest.cc", |
| 112 "heap/unmapper-unittest.cc", | 113 "heap/unmapper-unittest.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps += [ "../..:v8" ] | 211 deps += [ "../..:v8" ] |
| 211 } | 212 } |
| 212 | 213 |
| 213 if (is_win) { | 214 if (is_win) { |
| 214 # This warning is benignly triggered by the U16 and U32 macros in | 215 # This warning is benignly triggered by the U16 and U32 macros in |
| 215 # bytecode-utils.h. | 216 # bytecode-utils.h. |
| 216 # C4309: 'static_cast': truncation of constant value | 217 # C4309: 'static_cast': truncation of constant value |
| 217 cflags = [ "/wd4309" ] | 218 cflags = [ "/wd4309" ] |
| 218 } | 219 } |
| 219 } | 220 } |
| OLD | NEW |