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

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

Issue 732403002: MIPS64: Add turbofan support for mips64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments and code cleanup. Created 6 years, 1 month 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
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ['v8_target_arch=="ia32"', { 80 ['v8_target_arch=="ia32"', {
81 'sources': [ ### gcmole(arch:ia32) ### 81 'sources': [ ### gcmole(arch:ia32) ###
82 'compiler/ia32/instruction-selector-ia32-unittest.cc', 82 'compiler/ia32/instruction-selector-ia32-unittest.cc',
83 ], 83 ],
84 }], 84 }],
85 ['v8_target_arch=="mipsel"', { 85 ['v8_target_arch=="mipsel"', {
86 'sources': [ ### gcmole(arch:mipsel) ### 86 'sources': [ ### gcmole(arch:mipsel) ###
87 'compiler/mips/instruction-selector-mips-unittest.cc', 87 'compiler/mips/instruction-selector-mips-unittest.cc',
88 ], 88 ],
89 }], 89 }],
90 ['v8_target_arch=="mips64el"', {
91 'sources': [ ### gcmole(arch:mips64el) ###
92 'compiler/mips64/instruction-selector-mips64-unittest.cc',
93 ],
94 }],
90 ['v8_target_arch=="x64"', { 95 ['v8_target_arch=="x64"', {
91 'sources': [ ### gcmole(arch:x64) ### 96 'sources': [ ### gcmole(arch:x64) ###
92 'compiler/x64/instruction-selector-x64-unittest.cc', 97 'compiler/x64/instruction-selector-x64-unittest.cc',
93 ], 98 ],
94 }], 99 }],
95 ['component=="shared_library"', { 100 ['component=="shared_library"', {
96 # compiler-unittests can't be built against a shared library, so we 101 # compiler-unittests can't be built against a shared library, so we
97 # need to depend on the underlying static target in that case. 102 # need to depend on the underlying static target in that case.
98 'conditions': [ 103 'conditions': [
99 ['v8_use_snapshot=="true"', { 104 ['v8_use_snapshot=="true"', {
(...skipping 17 matching lines...) Expand all
117 'direct_dependent_settings': { 122 'direct_dependent_settings': {
118 'cflags!': [ 123 'cflags!': [
119 '-pedantic', 124 '-pedantic',
120 ], 125 ],
121 }, 126 },
122 }], 127 }],
123 ], 128 ],
124 }, 129 },
125 ], 130 ],
126 } 131 }
OLDNEW
« no previous file with comments | « test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698