| 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 # Please keep this file in sync with BUILD.gn. | 5 # Please keep this file in sync with BUILD.gn. |
| 6 | 6 |
| 7 { | 7 { |
| 8 'variables': { | 8 'variables': { |
| 9 'v8_code': 1, | 9 'v8_code': 1, |
| 10 }, | 10 }, |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'interpreter/bytecode-array-iterator-unittest.cc', | 101 'interpreter/bytecode-array-iterator-unittest.cc', |
| 102 'interpreter/bytecode-array-writer-unittest.cc', | 102 'interpreter/bytecode-array-writer-unittest.cc', |
| 103 'interpreter/bytecode-dead-code-optimizer-unittest.cc', | 103 'interpreter/bytecode-dead-code-optimizer-unittest.cc', |
| 104 'interpreter/bytecode-peephole-optimizer-unittest.cc', | 104 'interpreter/bytecode-peephole-optimizer-unittest.cc', |
| 105 'interpreter/bytecode-pipeline-unittest.cc', | 105 'interpreter/bytecode-pipeline-unittest.cc', |
| 106 'interpreter/bytecode-register-allocator-unittest.cc', | 106 'interpreter/bytecode-register-allocator-unittest.cc', |
| 107 'interpreter/bytecode-register-optimizer-unittest.cc', | 107 'interpreter/bytecode-register-optimizer-unittest.cc', |
| 108 'interpreter/constant-array-builder-unittest.cc', | 108 'interpreter/constant-array-builder-unittest.cc', |
| 109 'interpreter/interpreter-assembler-unittest.cc', | 109 'interpreter/interpreter-assembler-unittest.cc', |
| 110 'interpreter/interpreter-assembler-unittest.h', | 110 'interpreter/interpreter-assembler-unittest.h', |
| 111 'interpreter/source-position-table-unittest.cc', | |
| 112 'libplatform/default-platform-unittest.cc', | 111 'libplatform/default-platform-unittest.cc', |
| 113 'libplatform/task-queue-unittest.cc', | 112 'libplatform/task-queue-unittest.cc', |
| 114 'libplatform/worker-thread-unittest.cc', | 113 'libplatform/worker-thread-unittest.cc', |
| 115 'heap/bitmap-unittest.cc', | 114 'heap/bitmap-unittest.cc', |
| 116 'heap/gc-idle-time-handler-unittest.cc', | 115 'heap/gc-idle-time-handler-unittest.cc', |
| 117 'heap/gc-tracer-unittest.cc', | 116 'heap/gc-tracer-unittest.cc', |
| 118 'heap/memory-reducer-unittest.cc', | 117 'heap/memory-reducer-unittest.cc', |
| 119 'heap/heap-unittest.cc', | 118 'heap/heap-unittest.cc', |
| 120 'heap/scavenge-job-unittest.cc', | 119 'heap/scavenge-job-unittest.cc', |
| 121 'heap/slot-set-unittest.cc', | 120 'heap/slot-set-unittest.cc', |
| 122 'locked-queue-unittest.cc', | 121 'locked-queue-unittest.cc', |
| 123 'register-configuration-unittest.cc', | 122 'register-configuration-unittest.cc', |
| 124 'run-all-unittests.cc', | 123 'run-all-unittests.cc', |
| 124 'source-position-table-unittest.cc', |
| 125 'test-utils.h', | 125 'test-utils.h', |
| 126 'test-utils.cc', | 126 'test-utils.cc', |
| 127 'wasm/asm-types-unittest.cc', | 127 'wasm/asm-types-unittest.cc', |
| 128 'wasm/ast-decoder-unittest.cc', | 128 'wasm/ast-decoder-unittest.cc', |
| 129 'wasm/control-transfer-unittest.cc', | 129 'wasm/control-transfer-unittest.cc', |
| 130 'wasm/decoder-unittest.cc', | 130 'wasm/decoder-unittest.cc', |
| 131 'wasm/encoder-unittest.cc', | 131 'wasm/encoder-unittest.cc', |
| 132 'wasm/leb-helper-unittest.cc', | 132 'wasm/leb-helper-unittest.cc', |
| 133 'wasm/loop-assignment-analysis-unittest.cc', | 133 'wasm/loop-assignment-analysis-unittest.cc', |
| 134 'wasm/module-decoder-unittest.cc', | 134 'wasm/module-decoder-unittest.cc', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 '../../gypfiles/isolate.gypi', | 224 '../../gypfiles/isolate.gypi', |
| 225 ], | 225 ], |
| 226 'sources': [ | 226 'sources': [ |
| 227 'unittests.isolate', | 227 'unittests.isolate', |
| 228 ], | 228 ], |
| 229 }, | 229 }, |
| 230 ], | 230 ], |
| 231 }], | 231 }], |
| 232 ], | 232 ], |
| 233 } | 233 } |
| OLD | NEW |