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

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

Issue 1808823002: Revert of Assembler changes for enabling GrowHeap in Wasm (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months 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/x64/macro-assembler-x64.cc ('k') | test/cctest/test-run-wasm-relocation-arm.cc » ('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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'wasm/wasm-run-utils.h', 195 'wasm/wasm-run-utils.h',
196 ], 196 ],
197 'conditions': [ 197 'conditions': [
198 ['v8_target_arch=="ia32"', { 198 ['v8_target_arch=="ia32"', {
199 'sources': [ ### gcmole(arch:ia32) ### 199 'sources': [ ### gcmole(arch:ia32) ###
200 'test-assembler-ia32.cc', 200 'test-assembler-ia32.cc',
201 'test-code-stubs.cc', 201 'test-code-stubs.cc',
202 'test-code-stubs-ia32.cc', 202 'test-code-stubs-ia32.cc',
203 'test-disasm-ia32.cc', 203 'test-disasm-ia32.cc',
204 'test-macro-assembler-ia32.cc', 204 'test-macro-assembler-ia32.cc',
205 'test-log-stack-tracer.cc', 205 'test-log-stack-tracer.cc'
206 'test-run-wasm-relocation-ia32.cc'
207 ], 206 ],
208 }], 207 }],
209 ['v8_target_arch=="x64"', { 208 ['v8_target_arch=="x64"', {
210 'sources': [ ### gcmole(arch:x64) ### 209 'sources': [ ### gcmole(arch:x64) ###
211 'test-assembler-x64.cc', 210 'test-assembler-x64.cc',
212 'test-code-stubs.cc', 211 'test-code-stubs.cc',
213 'test-code-stubs-x64.cc', 212 'test-code-stubs-x64.cc',
214 'test-disasm-x64.cc', 213 'test-disasm-x64.cc',
215 'test-macro-assembler-x64.cc', 214 'test-macro-assembler-x64.cc',
216 'test-log-stack-tracer.cc', 215 'test-log-stack-tracer.cc'
217 'test-run-wasm-relocation-x64.cc'
218 ], 216 ],
219 }], 217 }],
220 ['v8_target_arch=="arm"', { 218 ['v8_target_arch=="arm"', {
221 'sources': [ ### gcmole(arch:arm) ### 219 'sources': [ ### gcmole(arch:arm) ###
222 'test-assembler-arm.cc', 220 'test-assembler-arm.cc',
223 'test-code-stubs.cc', 221 'test-code-stubs.cc',
224 'test-code-stubs-arm.cc', 222 'test-code-stubs-arm.cc',
225 'test-disasm-arm.cc', 223 'test-disasm-arm.cc',
226 'test-macro-assembler-arm.cc', 224 'test-macro-assembler-arm.cc'
227 'test-run-wasm-relocation-arm.cc'
228 ], 225 ],
229 }], 226 }],
230 ['v8_target_arch=="arm64"', { 227 ['v8_target_arch=="arm64"', {
231 'sources': [ ### gcmole(arch:arm64) ### 228 'sources': [ ### gcmole(arch:arm64) ###
232 'test-utils-arm64.cc', 229 'test-utils-arm64.cc',
233 'test-assembler-arm64.cc', 230 'test-assembler-arm64.cc',
234 'test-code-stubs.cc', 231 'test-code-stubs.cc',
235 'test-code-stubs-arm64.cc', 232 'test-code-stubs-arm64.cc',
236 'test-disasm-arm64.cc', 233 'test-disasm-arm64.cc',
237 'test-fuzz-arm64.cc', 234 'test-fuzz-arm64.cc',
238 'test-javascript-arm64.cc', 235 'test-javascript-arm64.cc',
239 'test-js-arm64-variables.cc', 236 'test-js-arm64-variables.cc'
240 'test-run-wasm-relocation-arm64.cc'
241 ], 237 ],
242 }], 238 }],
243 ['v8_target_arch=="ppc"', { 239 ['v8_target_arch=="ppc"', {
244 'sources': [ ### gcmole(arch:ppc) ### 240 'sources': [ ### gcmole(arch:ppc) ###
245 'test-assembler-ppc.cc', 241 'test-assembler-ppc.cc',
246 'test-code-stubs.cc', 242 'test-code-stubs.cc',
247 'test-disasm-ppc.cc' 243 'test-disasm-ppc.cc'
248 ], 244 ],
249 }], 245 }],
250 ['v8_target_arch=="ppc64"', { 246 ['v8_target_arch=="ppc64"', {
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 '../../build/isolate.gypi', 397 '../../build/isolate.gypi',
402 ], 398 ],
403 'sources': [ 399 'sources': [
404 'cctest.isolate', 400 'cctest.isolate',
405 ], 401 ],
406 }, 402 },
407 ], 403 ],
408 }], 404 }],
409 ], 405 ],
410 } 406 }
OLDNEW
« no previous file with comments | « src/x64/macro-assembler-x64.cc ('k') | test/cctest/test-run-wasm-relocation-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698