| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'compiler/instruction-sequence-unittest.h', | 50 'compiler/instruction-sequence-unittest.h', |
| 51 'compiler/int64-lowering-unittest.cc', | 51 'compiler/int64-lowering-unittest.cc', |
| 52 'compiler/js-builtin-reducer-unittest.cc', | 52 'compiler/js-builtin-reducer-unittest.cc', |
| 53 'compiler/js-create-lowering-unittest.cc', | 53 'compiler/js-create-lowering-unittest.cc', |
| 54 'compiler/js-intrinsic-lowering-unittest.cc', | 54 'compiler/js-intrinsic-lowering-unittest.cc', |
| 55 'compiler/js-operator-unittest.cc', | 55 'compiler/js-operator-unittest.cc', |
| 56 'compiler/js-typed-lowering-unittest.cc', | 56 'compiler/js-typed-lowering-unittest.cc', |
| 57 'compiler/linkage-tail-call-unittest.cc', | 57 'compiler/linkage-tail-call-unittest.cc', |
| 58 'compiler/liveness-analyzer-unittest.cc', | 58 'compiler/liveness-analyzer-unittest.cc', |
| 59 'compiler/live-range-builder.h', | 59 'compiler/live-range-builder.h', |
| 60 'compiler/live-range-unittest.cc', | 60 'compiler/regalloc/live-range-unittest.cc', |
| 61 'compiler/load-elimination-unittest.cc', | 61 'compiler/load-elimination-unittest.cc', |
| 62 'compiler/loop-peeling-unittest.cc', | 62 'compiler/loop-peeling-unittest.cc', |
| 63 'compiler/machine-operator-reducer-unittest.cc', | 63 'compiler/machine-operator-reducer-unittest.cc', |
| 64 'compiler/machine-operator-unittest.cc', | 64 'compiler/machine-operator-unittest.cc', |
| 65 'compiler/move-optimizer-unittest.cc', | 65 'compiler/regalloc/move-optimizer-unittest.cc', |
| 66 'compiler/node-cache-unittest.cc', | 66 'compiler/node-cache-unittest.cc', |
| 67 'compiler/node-matchers-unittest.cc', | 67 'compiler/node-matchers-unittest.cc', |
| 68 'compiler/node-properties-unittest.cc', | 68 'compiler/node-properties-unittest.cc', |
| 69 'compiler/node-test-utils.cc', | 69 'compiler/node-test-utils.cc', |
| 70 'compiler/node-test-utils.h', | 70 'compiler/node-test-utils.h', |
| 71 'compiler/node-unittest.cc', | 71 'compiler/node-unittest.cc', |
| 72 'compiler/opcodes-unittest.cc', | 72 'compiler/opcodes-unittest.cc', |
| 73 'compiler/register-allocator-unittest.cc', | 73 'compiler/regalloc/register-allocator-unittest.cc', |
| 74 'compiler/schedule-unittest.cc', | 74 'compiler/schedule-unittest.cc', |
| 75 'compiler/scheduler-unittest.cc', | 75 'compiler/scheduler-unittest.cc', |
| 76 'compiler/scheduler-rpo-unittest.cc', | 76 'compiler/scheduler-rpo-unittest.cc', |
| 77 'compiler/simplified-operator-reducer-unittest.cc', | 77 'compiler/simplified-operator-reducer-unittest.cc', |
| 78 'compiler/simplified-operator-unittest.cc', | 78 'compiler/simplified-operator-unittest.cc', |
| 79 'compiler/state-values-utils-unittest.cc', | 79 'compiler/state-values-utils-unittest.cc', |
| 80 'compiler/tail-call-optimization-unittest.cc', | 80 'compiler/tail-call-optimization-unittest.cc', |
| 81 'compiler/typed-optimization-unittest.cc', | 81 'compiler/typed-optimization-unittest.cc', |
| 82 'compiler/typer-unittest.cc', | 82 'compiler/typer-unittest.cc', |
| 83 'compiler/value-numbering-reducer-unittest.cc', | 83 'compiler/value-numbering-reducer-unittest.cc', |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 '../../gypfiles/isolate.gypi', | 272 '../../gypfiles/isolate.gypi', |
| 273 ], | 273 ], |
| 274 'sources': [ | 274 'sources': [ |
| 275 'unittests.isolate', | 275 'unittests.isolate', |
| 276 ], | 276 ], |
| 277 }, | 277 }, |
| 278 ], | 278 ], |
| 279 }], | 279 }], |
| 280 ], | 280 ], |
| 281 } | 281 } |
| OLD | NEW |