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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'interpreter/bytecode-array-builder-unittest.cc', | 101 'interpreter/bytecode-array-builder-unittest.cc', |
102 'interpreter/bytecode-array-iterator-unittest.cc', | 102 'interpreter/bytecode-array-iterator-unittest.cc', |
103 'libplatform/default-platform-unittest.cc', | 103 'libplatform/default-platform-unittest.cc', |
104 'libplatform/task-queue-unittest.cc', | 104 'libplatform/task-queue-unittest.cc', |
105 'libplatform/worker-thread-unittest.cc', | 105 'libplatform/worker-thread-unittest.cc', |
106 'heap/gc-idle-time-handler-unittest.cc', | 106 'heap/gc-idle-time-handler-unittest.cc', |
107 'heap/memory-reducer-unittest.cc', | 107 'heap/memory-reducer-unittest.cc', |
108 'heap/heap-unittest.cc', | 108 'heap/heap-unittest.cc', |
109 'heap/scavenge-job-unittest.cc', | 109 'heap/scavenge-job-unittest.cc', |
110 'run-all-unittests.cc', | 110 'run-all-unittests.cc', |
| 111 'runtime/runtime-interpreter-unittest.cc', |
111 'test-utils.h', | 112 'test-utils.h', |
112 'test-utils.cc', | 113 'test-utils.cc', |
113 ], | 114 ], |
114 'conditions': [ | 115 'conditions': [ |
115 ['v8_target_arch=="arm"', { | 116 ['v8_target_arch=="arm"', { |
116 'sources': [ ### gcmole(arch:arm) ### | 117 'sources': [ ### gcmole(arch:arm) ### |
117 'compiler/arm/instruction-selector-arm-unittest.cc', | 118 'compiler/arm/instruction-selector-arm-unittest.cc', |
118 ], | 119 ], |
119 }], | 120 }], |
120 ['v8_target_arch=="arm64"', { | 121 ['v8_target_arch=="arm64"', { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 }], | 172 }], |
172 ['v8_wasm!=0', { | 173 ['v8_wasm!=0', { |
173 'dependencies': [ | 174 'dependencies': [ |
174 '../../third_party/wasm/test/unittests/wasm/wasm.gyp:wasm_unittests'
, | 175 '../../third_party/wasm/test/unittests/wasm/wasm.gyp:wasm_unittests'
, |
175 ], | 176 ], |
176 }], | 177 }], |
177 ], | 178 ], |
178 }, | 179 }, |
179 ], | 180 ], |
180 } | 181 } |
OLD | NEW |