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 'heap/bitmap-unittest.cc', | 103 'heap/bitmap-unittest.cc', |
104 'heap/gc-idle-time-handler-unittest.cc', | 104 'heap/gc-idle-time-handler-unittest.cc', |
105 'heap/memory-reducer-unittest.cc', | 105 'heap/memory-reducer-unittest.cc', |
106 'heap/heap-unittest.cc', | 106 'heap/heap-unittest.cc', |
107 'heap/scavenge-job-unittest.cc', | 107 'heap/scavenge-job-unittest.cc', |
108 'locked-queue-unittest.cc', | 108 'locked-queue-unittest.cc', |
109 'run-all-unittests.cc', | 109 'run-all-unittests.cc', |
110 'runtime/runtime-interpreter-unittest.cc', | 110 'runtime/runtime-interpreter-unittest.cc', |
111 'test-utils.h', | 111 'test-utils.h', |
112 'test-utils.cc', | 112 'test-utils.cc', |
| 113 'wasm/ast-decoder-unittest.cc', |
| 114 'wasm/encoder-unittest.cc', |
| 115 'wasm/module-decoder-unittest.cc', |
| 116 'wasm/wasm-macro-gen-unittest.cc', |
113 ], | 117 ], |
114 'conditions': [ | 118 'conditions': [ |
115 ['v8_target_arch=="arm"', { | 119 ['v8_target_arch=="arm"', { |
116 'sources': [ ### gcmole(arch:arm) ### | 120 'sources': [ ### gcmole(arch:arm) ### |
117 'compiler/arm/instruction-selector-arm-unittest.cc', | 121 'compiler/arm/instruction-selector-arm-unittest.cc', |
118 ], | 122 ], |
119 }], | 123 }], |
120 ['v8_target_arch=="arm64"', { | 124 ['v8_target_arch=="arm64"', { |
121 'sources': [ ### gcmole(arch:arm64) ### | 125 'sources': [ ### gcmole(arch:arm64) ### |
122 'compiler/arm64/instruction-selector-arm64-unittest.cc', | 126 'compiler/arm64/instruction-selector-arm64-unittest.cc', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 # that show up because we use -std=gnu++0x instead of -std=c++11. | 166 # that show up because we use -std=gnu++0x instead of -std=c++11. |
163 'cflags!': [ | 167 'cflags!': [ |
164 '-pedantic', | 168 '-pedantic', |
165 ], | 169 ], |
166 'direct_dependent_settings': { | 170 'direct_dependent_settings': { |
167 'cflags!': [ | 171 'cflags!': [ |
168 '-pedantic', | 172 '-pedantic', |
169 ], | 173 ], |
170 }, | 174 }, |
171 }], | 175 }], |
172 ['v8_wasm!=0', { | |
173 'sources': [ | |
174 'wasm/ast-decoder-unittest.cc', | |
175 'wasm/encoder-unittest.cc', | |
176 'wasm/module-decoder-unittest.cc', | |
177 'wasm/wasm-macro-gen-unittest.cc', | |
178 ], | |
179 }], | |
180 ], | 176 ], |
181 }, | 177 }, |
182 ], | 178 ], |
183 'conditions': [ | 179 'conditions': [ |
184 ['test_isolation_mode != "noop"', { | 180 ['test_isolation_mode != "noop"', { |
185 'targets': [ | 181 'targets': [ |
186 { | 182 { |
187 'target_name': 'unittests_run', | 183 'target_name': 'unittests_run', |
188 'type': 'none', | 184 'type': 'none', |
189 'dependencies': [ | 185 'dependencies': [ |
190 'unittests', | 186 'unittests', |
191 ], | 187 ], |
192 'includes': [ | 188 'includes': [ |
193 '../../build/isolate.gypi', | 189 '../../build/isolate.gypi', |
194 ], | 190 ], |
195 'sources': [ | 191 'sources': [ |
196 'unittests.isolate', | 192 'unittests.isolate', |
197 ], | 193 ], |
198 }, | 194 }, |
199 ], | 195 ], |
200 }], | 196 }], |
201 ], | 197 ], |
202 } | 198 } |
OLD | NEW |