OLD | NEW |
1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 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 # The sources are kept automatically in sync with BUILD.gn. | 5 # The sources are kept automatically in sync with BUILD.gn. |
6 | 6 |
7 { | 7 { |
8 'variables': { | 8 'variables': { |
9 'v8_code': 1, | 9 'v8_code': 1, |
10 'unittests_sources': [ ### gcmole(all) ### | 10 'unittests_sources': [ ### gcmole(all) ### |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'compiler/instruction-sequence-unittest.cc', | 47 'compiler/instruction-sequence-unittest.cc', |
48 'compiler/instruction-sequence-unittest.h', | 48 'compiler/instruction-sequence-unittest.h', |
49 'compiler/int64-lowering-unittest.cc', | 49 'compiler/int64-lowering-unittest.cc', |
50 'compiler/js-builtin-reducer-unittest.cc', | 50 'compiler/js-builtin-reducer-unittest.cc', |
51 'compiler/js-create-lowering-unittest.cc', | 51 'compiler/js-create-lowering-unittest.cc', |
52 'compiler/js-intrinsic-lowering-unittest.cc', | 52 'compiler/js-intrinsic-lowering-unittest.cc', |
53 'compiler/js-operator-unittest.cc', | 53 'compiler/js-operator-unittest.cc', |
54 'compiler/js-typed-lowering-unittest.cc', | 54 'compiler/js-typed-lowering-unittest.cc', |
55 'compiler/linkage-tail-call-unittest.cc', | 55 'compiler/linkage-tail-call-unittest.cc', |
56 'compiler/liveness-analyzer-unittest.cc', | 56 'compiler/liveness-analyzer-unittest.cc', |
| 57 'compiler/live-range-builder.h', |
57 'compiler/live-range-unittest.cc', | 58 'compiler/live-range-unittest.cc', |
58 'compiler/load-elimination-unittest.cc', | 59 'compiler/load-elimination-unittest.cc', |
59 'compiler/loop-peeling-unittest.cc', | 60 'compiler/loop-peeling-unittest.cc', |
60 'compiler/machine-operator-reducer-unittest.cc', | 61 'compiler/machine-operator-reducer-unittest.cc', |
61 'compiler/machine-operator-unittest.cc', | 62 'compiler/machine-operator-unittest.cc', |
62 'compiler/move-optimizer-unittest.cc', | 63 'compiler/move-optimizer-unittest.cc', |
63 'compiler/node-cache-unittest.cc', | 64 'compiler/node-cache-unittest.cc', |
64 'compiler/node-matchers-unittest.cc', | 65 'compiler/node-matchers-unittest.cc', |
65 'compiler/node-properties-unittest.cc', | 66 'compiler/node-properties-unittest.cc', |
66 'compiler/node-test-utils.cc', | 67 'compiler/node-test-utils.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
86 'interpreter/bytecodes-unittest.cc', | 87 'interpreter/bytecodes-unittest.cc', |
87 'interpreter/bytecode-array-builder-unittest.cc', | 88 'interpreter/bytecode-array-builder-unittest.cc', |
88 'interpreter/bytecode-array-iterator-unittest.cc', | 89 'interpreter/bytecode-array-iterator-unittest.cc', |
89 'interpreter/bytecode-array-writer-unittest.cc', | 90 'interpreter/bytecode-array-writer-unittest.cc', |
90 'interpreter/bytecode-dead-code-optimizer-unittest.cc', | 91 'interpreter/bytecode-dead-code-optimizer-unittest.cc', |
91 'interpreter/bytecode-decoder-unittest.cc', | 92 'interpreter/bytecode-decoder-unittest.cc', |
92 'interpreter/bytecode-peephole-optimizer-unittest.cc', | 93 'interpreter/bytecode-peephole-optimizer-unittest.cc', |
93 'interpreter/bytecode-pipeline-unittest.cc', | 94 'interpreter/bytecode-pipeline-unittest.cc', |
94 'interpreter/bytecode-register-allocator-unittest.cc', | 95 'interpreter/bytecode-register-allocator-unittest.cc', |
95 'interpreter/bytecode-register-optimizer-unittest.cc', | 96 'interpreter/bytecode-register-optimizer-unittest.cc', |
| 97 'interpreter/bytecode-utils.h', |
96 'interpreter/constant-array-builder-unittest.cc', | 98 'interpreter/constant-array-builder-unittest.cc', |
97 'interpreter/interpreter-assembler-unittest.cc', | 99 'interpreter/interpreter-assembler-unittest.cc', |
98 'interpreter/interpreter-assembler-unittest.h', | 100 'interpreter/interpreter-assembler-unittest.h', |
99 'libplatform/default-platform-unittest.cc', | 101 'libplatform/default-platform-unittest.cc', |
100 'libplatform/task-queue-unittest.cc', | 102 'libplatform/task-queue-unittest.cc', |
101 'libplatform/worker-thread-unittest.cc', | 103 'libplatform/worker-thread-unittest.cc', |
102 'heap/bitmap-unittest.cc', | 104 'heap/bitmap-unittest.cc', |
103 'heap/gc-idle-time-handler-unittest.cc', | 105 'heap/gc-idle-time-handler-unittest.cc', |
104 'heap/gc-tracer-unittest.cc', | 106 'heap/gc-tracer-unittest.cc', |
105 'heap/marking-unittest.cc', | 107 'heap/marking-unittest.cc', |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 '../../gypfiles/isolate.gypi', | 260 '../../gypfiles/isolate.gypi', |
259 ], | 261 ], |
260 'sources': [ | 262 'sources': [ |
261 'unittests.isolate', | 263 'unittests.isolate', |
262 ], | 264 ], |
263 }, | 265 }, |
264 ], | 266 ], |
265 }], | 267 }], |
266 ], | 268 ], |
267 } | 269 } |
OLD | NEW |