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

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

Issue 1867503002: MIPS: Enable big endian testing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated according comments. Created 4 years, 8 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 | « no previous file | test/cctest/test-assembler-mips.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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 'test-disasm-ppc.cc' 262 'test-disasm-ppc.cc'
263 ], 263 ],
264 }], 264 }],
265 ['v8_target_arch=="ppc64"', { 265 ['v8_target_arch=="ppc64"', {
266 'sources': [ ### gcmole(arch:ppc64) ### 266 'sources': [ ### gcmole(arch:ppc64) ###
267 'test-assembler-ppc.cc', 267 'test-assembler-ppc.cc',
268 'test-code-stubs.cc', 268 'test-code-stubs.cc',
269 'test-disasm-ppc.cc' 269 'test-disasm-ppc.cc'
270 ], 270 ],
271 }], 271 }],
272 ['v8_target_arch=="mips"', {
273 'sources': [ ### gcmole(arch:mips) ###
274 'test-assembler-mips.cc',
275 'test-code-stubs.cc',
276 'test-code-stubs-mips.cc',
277 'test-disasm-mips.cc',
278 'test-macro-assembler-mips.cc'
279 ],
280 }],
272 ['v8_target_arch=="mipsel"', { 281 ['v8_target_arch=="mipsel"', {
273 'sources': [ ### gcmole(arch:mipsel) ### 282 'sources': [ ### gcmole(arch:mipsel) ###
274 'test-assembler-mips.cc', 283 'test-assembler-mips.cc',
275 'test-code-stubs.cc', 284 'test-code-stubs.cc',
276 'test-code-stubs-mips.cc', 285 'test-code-stubs-mips.cc',
277 'test-disasm-mips.cc', 286 'test-disasm-mips.cc',
278 'test-macro-assembler-mips.cc' 287 'test-macro-assembler-mips.cc'
279 ], 288 ],
280 }], 289 }],
281 ['v8_target_arch=="mips64el"', { 290 ['v8_target_arch=="mips64"', {
282 'sources': [ 291 'sources': [ ### gcmole(arch:mips64) ###
283 'test-assembler-mips64.cc', 292 'test-assembler-mips64.cc',
284 'test-code-stubs.cc', 293 'test-code-stubs.cc',
285 'test-code-stubs-mips64.cc', 294 'test-code-stubs-mips64.cc',
295 'test-disasm-mips64.cc',
296 'test-macro-assembler-mips64.cc'
297 ],
298 }],
299 ['v8_target_arch=="mips64el"', {
300 'sources': [ ### gcmole(arch:mips64el) ###
301 'test-assembler-mips64.cc',
302 'test-code-stubs.cc',
303 'test-code-stubs-mips64.cc',
286 'test-disasm-mips64.cc', 304 'test-disasm-mips64.cc',
287 'test-macro-assembler-mips64.cc' 305 'test-macro-assembler-mips64.cc'
288 ], 306 ],
289 }], 307 }],
290 ['v8_target_arch=="x87"', { 308 ['v8_target_arch=="x87"', {
291 'sources': [ ### gcmole(arch:x87) ### 309 'sources': [ ### gcmole(arch:x87) ###
292 'test-assembler-x87.cc', 310 'test-assembler-x87.cc',
293 'test-code-stubs.cc', 311 'test-code-stubs.cc',
294 'test-code-stubs-x87.cc', 312 'test-code-stubs-x87.cc',
295 'test-disasm-x87.cc', 313 'test-disasm-x87.cc',
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 '../../build/isolate.gypi', 436 '../../build/isolate.gypi',
419 ], 437 ],
420 'sources': [ 438 'sources': [
421 'cctest.isolate', 439 'cctest.isolate',
422 ], 440 ],
423 }, 441 },
424 ], 442 ],
425 }], 443 }],
426 ], 444 ],
427 } 445 }
OLDNEW
« no previous file with comments | « no previous file | test/cctest/test-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698