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

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

Issue 601723002: MIPS: Add turbofan support for mips32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased 1-Oct, port r24319, r24350, r24356, r24367. Created 6 years, 2 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
« no previous file with comments | « test/unittests/compiler/mips/instruction-selector-mips-unittest.cc ('k') | tools/gyp/v8.gyp » ('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 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 ['v8_target_arch=="arm64"', { 66 ['v8_target_arch=="arm64"', {
67 'sources': [ ### gcmole(arch:arm64) ### 67 'sources': [ ### gcmole(arch:arm64) ###
68 'compiler/arm64/instruction-selector-arm64-unittest.cc', 68 'compiler/arm64/instruction-selector-arm64-unittest.cc',
69 ], 69 ],
70 }], 70 }],
71 ['v8_target_arch=="ia32"', { 71 ['v8_target_arch=="ia32"', {
72 'sources': [ ### gcmole(arch:ia32) ### 72 'sources': [ ### gcmole(arch:ia32) ###
73 'compiler/ia32/instruction-selector-ia32-unittest.cc', 73 'compiler/ia32/instruction-selector-ia32-unittest.cc',
74 ], 74 ],
75 }], 75 }],
76 ['v8_target_arch=="mipsel"', {
77 'sources': [ ### gcmole(arch:mipsel) ###
78 'compiler/mips/instruction-selector-mips-unittest.cc',
79 ],
80 }],
76 ['v8_target_arch=="x64"', { 81 ['v8_target_arch=="x64"', {
77 'sources': [ ### gcmole(arch:x64) ### 82 'sources': [ ### gcmole(arch:x64) ###
78 'compiler/x64/instruction-selector-x64-unittest.cc', 83 'compiler/x64/instruction-selector-x64-unittest.cc',
79 ], 84 ],
80 }], 85 }],
81 ['component=="shared_library"', { 86 ['component=="shared_library"', {
82 # compiler-unittests can't be built against a shared library, so we 87 # compiler-unittests can't be built against a shared library, so we
83 # need to depend on the underlying static target in that case. 88 # need to depend on the underlying static target in that case.
84 'conditions': [ 89 'conditions': [
85 ['v8_use_snapshot=="true"', { 90 ['v8_use_snapshot=="true"', {
(...skipping 17 matching lines...) Expand all
103 'direct_dependent_settings': { 108 'direct_dependent_settings': {
104 'cflags!': [ 109 'cflags!': [
105 '-pedantic', 110 '-pedantic',
106 ], 111 ],
107 }, 112 },
108 }], 113 }],
109 ], 114 ],
110 }, 115 },
111 ], 116 ],
112 } 117 }
OLDNEW
« no previous file with comments | « test/unittests/compiler/mips/instruction-selector-mips-unittest.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698