| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'v8_code': 1, | 7 'v8_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], | 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'compiler/move-optimizer-unittest.cc', | 76 'compiler/move-optimizer-unittest.cc', |
| 77 'compiler/node-cache-unittest.cc', | 77 'compiler/node-cache-unittest.cc', |
| 78 'compiler/node-matchers-unittest.cc', | 78 'compiler/node-matchers-unittest.cc', |
| 79 'compiler/node-properties-unittest.cc', | 79 'compiler/node-properties-unittest.cc', |
| 80 'compiler/node-test-utils.cc', | 80 'compiler/node-test-utils.cc', |
| 81 'compiler/node-test-utils.h', | 81 'compiler/node-test-utils.h', |
| 82 'compiler/node-unittest.cc', | 82 'compiler/node-unittest.cc', |
| 83 'compiler/opcodes-unittest.cc', | 83 'compiler/opcodes-unittest.cc', |
| 84 'compiler/register-allocator-unittest.cc', | 84 'compiler/register-allocator-unittest.cc', |
| 85 'compiler/schedule-unittest.cc', | 85 'compiler/schedule-unittest.cc', |
| 86 'compiler/select-lowering-unittest.cc', | |
| 87 'compiler/scheduler-unittest.cc', | 86 'compiler/scheduler-unittest.cc', |
| 88 'compiler/scheduler-rpo-unittest.cc', | 87 'compiler/scheduler-rpo-unittest.cc', |
| 89 'compiler/simplified-operator-reducer-unittest.cc', | 88 'compiler/simplified-operator-reducer-unittest.cc', |
| 90 'compiler/simplified-operator-unittest.cc', | 89 'compiler/simplified-operator-unittest.cc', |
| 91 'compiler/state-values-utils-unittest.cc', | 90 'compiler/state-values-utils-unittest.cc', |
| 92 'compiler/tail-call-optimization-unittest.cc', | 91 'compiler/tail-call-optimization-unittest.cc', |
| 93 'compiler/typer-unittest.cc', | 92 'compiler/typer-unittest.cc', |
| 94 'compiler/value-numbering-reducer-unittest.cc', | 93 'compiler/value-numbering-reducer-unittest.cc', |
| 95 'compiler/zone-pool-unittest.cc', | 94 'compiler/zone-pool-unittest.cc', |
| 96 'counters-unittest.cc', | 95 'counters-unittest.cc', |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 '../../build/isolate.gypi', | 201 '../../build/isolate.gypi', |
| 203 ], | 202 ], |
| 204 'sources': [ | 203 'sources': [ |
| 205 'unittests.isolate', | 204 'unittests.isolate', |
| 206 ], | 205 ], |
| 207 }, | 206 }, |
| 208 ], | 207 ], |
| 209 }], | 208 }], |
| 210 ], | 209 ], |
| 211 } | 210 } |
| OLD | NEW |