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

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

Issue 817143002: Contribution of PowerPC port (continuation of 422063005) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Contribution of PowerPC port - rebase and address initial set of comments Created 5 years, 11 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 | « test/mjsunit/regress/regress-crbug-178790.js ('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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 ['v8_target_arch=="mips64el"', { 98 ['v8_target_arch=="mips64el"', {
99 'sources': [ ### gcmole(arch:mips64el) ### 99 'sources': [ ### gcmole(arch:mips64el) ###
100 'compiler/mips64/instruction-selector-mips64-unittest.cc', 100 'compiler/mips64/instruction-selector-mips64-unittest.cc',
101 ], 101 ],
102 }], 102 }],
103 ['v8_target_arch=="x64"', { 103 ['v8_target_arch=="x64"', {
104 'sources': [ ### gcmole(arch:x64) ### 104 'sources': [ ### gcmole(arch:x64) ###
105 'compiler/x64/instruction-selector-x64-unittest.cc', 105 'compiler/x64/instruction-selector-x64-unittest.cc',
106 ], 106 ],
107 }], 107 }],
108 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
109 'sources': [ ### gcmole(arch:ppc) ###
110 'compiler/ppc/instruction-selector-ppc-unittest.cc',
111 ],
112 }],
108 ['component=="shared_library"', { 113 ['component=="shared_library"', {
109 # compiler-unittests can't be built against a shared library, so we 114 # compiler-unittests can't be built against a shared library, so we
110 # need to depend on the underlying static target in that case. 115 # need to depend on the underlying static target in that case.
111 'conditions': [ 116 'conditions': [
112 ['v8_use_snapshot=="true" and v8_use_external_startup_data==0', { 117 ['v8_use_snapshot=="true" and v8_use_external_startup_data==0', {
113 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], 118 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'],
114 }], 119 }],
115 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { 120 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', {
116 'dependencies': ['../../tools/gyp/v8.gyp:v8_external_snapshot'], 121 'dependencies': ['../../tools/gyp/v8.gyp:v8_external_snapshot'],
117 }], 122 }],
(...skipping 13 matching lines...) Expand all
131 'direct_dependent_settings': { 136 'direct_dependent_settings': {
132 'cflags!': [ 137 'cflags!': [
133 '-pedantic', 138 '-pedantic',
134 ], 139 ],
135 }, 140 },
136 }], 141 }],
137 ], 142 ],
138 }, 143 },
139 ], 144 ],
140 } 145 }
OLDNEW
« no previous file with comments | « test/mjsunit/regress/regress-crbug-178790.js ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698