OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 'test-typing-reset.cc', | 176 'test-typing-reset.cc', |
177 'test-unbound-queue.cc', | 177 'test-unbound-queue.cc', |
178 'test-unboxed-doubles.cc', | 178 'test-unboxed-doubles.cc', |
179 'test-unique.cc', | 179 'test-unique.cc', |
180 'test-unscopables-hidden-prototype.cc', | 180 'test-unscopables-hidden-prototype.cc', |
181 'test-utils.cc', | 181 'test-utils.cc', |
182 'test-version.cc', | 182 'test-version.cc', |
183 'test-weakmaps.cc', | 183 'test-weakmaps.cc', |
184 'test-weaksets.cc', | 184 'test-weaksets.cc', |
185 'trace-extension.cc', | 185 'trace-extension.cc', |
186 'wasm/test-run-wasm.cc', | |
187 'wasm/test-run-wasm-module.cc', | |
188 'wasm/test-signatures.h', | |
189 ], | 186 ], |
190 'conditions': [ | 187 'conditions': [ |
191 ['v8_target_arch=="ia32"', { | 188 ['v8_target_arch=="ia32"', { |
192 'sources': [ ### gcmole(arch:ia32) ### | 189 'sources': [ ### gcmole(arch:ia32) ### |
193 'test-assembler-ia32.cc', | 190 'test-assembler-ia32.cc', |
194 'test-code-stubs.cc', | 191 'test-code-stubs.cc', |
195 'test-code-stubs-ia32.cc', | 192 'test-code-stubs-ia32.cc', |
196 'test-disasm-ia32.cc', | 193 'test-disasm-ia32.cc', |
197 'test-macro-assembler-ia32.cc', | 194 'test-macro-assembler-ia32.cc', |
198 'test-log-stack-tracer.cc' | 195 'test-log-stack-tracer.cc' |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 ['OS=="aix"', { | 292 ['OS=="aix"', { |
296 'ldflags': [ '-Wl,-bbigtoc' ], | 293 'ldflags': [ '-Wl,-bbigtoc' ], |
297 }], | 294 }], |
298 ['component=="shared_library"', { | 295 ['component=="shared_library"', { |
299 # cctest can't be built against a shared library, so we need to | 296 # cctest can't be built against a shared library, so we need to |
300 # depend on the underlying static target in that case. | 297 # depend on the underlying static target in that case. |
301 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 298 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], |
302 }, { | 299 }, { |
303 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 300 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
304 }], | 301 }], |
| 302 ['v8_wasm!=0', { |
| 303 'sources': [ |
| 304 'wasm/test-run-wasm.cc', |
| 305 'wasm/test-run-wasm-module.cc', |
| 306 'wasm/test-signatures.h', |
| 307 ], |
| 308 }], |
305 ], | 309 ], |
306 }, | 310 }, |
307 { | 311 { |
308 'target_name': 'resources', | 312 'target_name': 'resources', |
309 'type': 'none', | 313 'type': 'none', |
310 'variables': { | 314 'variables': { |
311 'file_list': [ | 315 'file_list': [ |
312 '../../tools/splaytree.js', | 316 '../../tools/splaytree.js', |
313 '../../tools/codemap.js', | 317 '../../tools/codemap.js', |
314 '../../tools/csvparser.js', | 318 '../../tools/csvparser.js', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 '../../build/isolate.gypi', | 357 '../../build/isolate.gypi', |
354 ], | 358 ], |
355 'sources': [ | 359 'sources': [ |
356 'cctest.isolate', | 360 'cctest.isolate', |
357 ], | 361 ], |
358 }, | 362 }, |
359 ], | 363 ], |
360 }], | 364 }], |
361 ], | 365 ], |
362 } | 366 } |
OLD | NEW |