Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(414)

Side by Side Diff: test/cctest/cctest.gyp

Issue 1516753007: Remove wasm compile time option and enable wasm behind a runtime flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: back to the start state Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/d8.gyp ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
186 ], 189 ],
187 'conditions': [ 190 'conditions': [
188 ['v8_target_arch=="ia32"', { 191 ['v8_target_arch=="ia32"', {
189 'sources': [ ### gcmole(arch:ia32) ### 192 'sources': [ ### gcmole(arch:ia32) ###
190 'test-assembler-ia32.cc', 193 'test-assembler-ia32.cc',
191 'test-code-stubs.cc', 194 'test-code-stubs.cc',
192 'test-code-stubs-ia32.cc', 195 'test-code-stubs-ia32.cc',
193 'test-disasm-ia32.cc', 196 'test-disasm-ia32.cc',
194 'test-macro-assembler-ia32.cc', 197 'test-macro-assembler-ia32.cc',
195 'test-log-stack-tracer.cc' 198 'test-log-stack-tracer.cc'
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 ['OS=="aix"', { 295 ['OS=="aix"', {
293 'ldflags': [ '-Wl,-bbigtoc' ], 296 'ldflags': [ '-Wl,-bbigtoc' ],
294 }], 297 }],
295 ['component=="shared_library"', { 298 ['component=="shared_library"', {
296 # cctest can't be built against a shared library, so we need to 299 # cctest can't be built against a shared library, so we need to
297 # depend on the underlying static target in that case. 300 # depend on the underlying static target in that case.
298 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], 301 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'],
299 }, { 302 }, {
300 'dependencies': ['../../tools/gyp/v8.gyp:v8'], 303 'dependencies': ['../../tools/gyp/v8.gyp:v8'],
301 }], 304 }],
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 }],
309 ], 305 ],
310 }, 306 },
311 { 307 {
312 'target_name': 'resources', 308 'target_name': 'resources',
313 'type': 'none', 309 'type': 'none',
314 'variables': { 310 'variables': {
315 'file_list': [ 311 'file_list': [
316 '../../tools/splaytree.js', 312 '../../tools/splaytree.js',
317 '../../tools/codemap.js', 313 '../../tools/codemap.js',
318 '../../tools/csvparser.js', 314 '../../tools/csvparser.js',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 '../../build/isolate.gypi', 353 '../../build/isolate.gypi',
358 ], 354 ],
359 'sources': [ 355 'sources': [
360 'cctest.isolate', 356 'cctest.isolate',
361 ], 357 ],
362 }, 358 },
363 ], 359 ],
364 }], 360 }],
365 ], 361 ],
366 } 362 }
OLDNEW
« no previous file with comments | « src/d8.gyp ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698