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

Side by Side Diff: src/compiler/compiler.gyp

Issue 601723002: MIPS: Add turbofan support for mips32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: minor cleanups Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 ['v8_target_arch=="ia32"', { 47 ['v8_target_arch=="ia32"', {
48 'sources': [ ### gcmole(arch:ia32) ### 48 'sources': [ ### gcmole(arch:ia32) ###
49 'ia32/instruction-selector-ia32-unittest.cc', 49 'ia32/instruction-selector-ia32-unittest.cc',
50 ], 50 ],
51 }], 51 }],
52 ['v8_target_arch=="x64"', { 52 ['v8_target_arch=="x64"', {
53 'sources': [ ### gcmole(arch:x64) ### 53 'sources': [ ### gcmole(arch:x64) ###
54 'x64/instruction-selector-x64-unittest.cc', 54 'x64/instruction-selector-x64-unittest.cc',
55 ], 55 ],
56 }], 56 }],
57 ['v8_target_arch=="mipsel"', {
58 'sources': [ ### gcmole(arch:mipsel) ###
59 'mips/instruction-selector-mips-unittest.cc',
60 ],
61 }],
57 ], 62 ],
58 }, 63 },
59 ], 64 ],
60 } 65 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/instruction-codes.h » ('j') | src/compiler/mips/code-generator-mips.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698