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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'interpreter/bytecode-array-builder-unittest.cc', | 103 'interpreter/bytecode-array-builder-unittest.cc', |
104 'interpreter/bytecode-array-iterator-unittest.cc', | 104 'interpreter/bytecode-array-iterator-unittest.cc', |
105 'libplatform/default-platform-unittest.cc', | 105 'libplatform/default-platform-unittest.cc', |
106 'libplatform/task-queue-unittest.cc', | 106 'libplatform/task-queue-unittest.cc', |
107 'libplatform/worker-thread-unittest.cc', | 107 'libplatform/worker-thread-unittest.cc', |
108 'heap/bitmap-unittest.cc', | 108 'heap/bitmap-unittest.cc', |
109 'heap/gc-idle-time-handler-unittest.cc', | 109 'heap/gc-idle-time-handler-unittest.cc', |
110 'heap/memory-reducer-unittest.cc', | 110 'heap/memory-reducer-unittest.cc', |
111 'heap/heap-unittest.cc', | 111 'heap/heap-unittest.cc', |
112 'heap/scavenge-job-unittest.cc', | 112 'heap/scavenge-job-unittest.cc', |
| 113 'locked-queue-unittest.cc', |
113 'run-all-unittests.cc', | 114 'run-all-unittests.cc', |
114 'runtime/runtime-interpreter-unittest.cc', | 115 'runtime/runtime-interpreter-unittest.cc', |
115 'test-utils.h', | 116 'test-utils.h', |
116 'test-utils.cc', | 117 'test-utils.cc', |
117 ], | 118 ], |
118 'conditions': [ | 119 'conditions': [ |
119 ['v8_target_arch=="arm"', { | 120 ['v8_target_arch=="arm"', { |
120 'sources': [ ### gcmole(arch:arm) ### | 121 'sources': [ ### gcmole(arch:arm) ### |
121 'compiler/arm/instruction-selector-arm-unittest.cc', | 122 'compiler/arm/instruction-selector-arm-unittest.cc', |
122 ], | 123 ], |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 '../../build/isolate.gypi', | 195 '../../build/isolate.gypi', |
195 ], | 196 ], |
196 'sources': [ | 197 'sources': [ |
197 'unittests.isolate', | 198 'unittests.isolate', |
198 ], | 199 ], |
199 }, | 200 }, |
200 ], | 201 ], |
201 }], | 202 }], |
202 ], | 203 ], |
203 } | 204 } |
OLD | NEW |