OLD | NEW |
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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 ['v8_target_arch=="x64"', { | 153 ['v8_target_arch=="x64"', { |
154 'sources': [ ### gcmole(arch:x64) ### | 154 'sources': [ ### gcmole(arch:x64) ### |
155 'compiler/x64/instruction-selector-x64-unittest.cc', | 155 'compiler/x64/instruction-selector-x64-unittest.cc', |
156 ], | 156 ], |
157 }], | 157 }], |
158 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { | 158 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { |
159 'sources': [ ### gcmole(arch:ppc) ### | 159 'sources': [ ### gcmole(arch:ppc) ### |
160 'compiler/ppc/instruction-selector-ppc-unittest.cc', | 160 'compiler/ppc/instruction-selector-ppc-unittest.cc', |
161 ], | 161 ], |
162 }], | 162 }], |
| 163 ['v8_target_arch=="s390" or v8_target_arch=="s390x"', { |
| 164 'sources': [ ### gcmole(arch:s390) ### |
| 165 'compiler/s390/instruction-selector-s390-unittest.cc', |
| 166 ], |
| 167 }], |
163 ['OS=="aix"', { | 168 ['OS=="aix"', { |
164 'ldflags': [ '-Wl,-bbigtoc' ], | 169 'ldflags': [ '-Wl,-bbigtoc' ], |
165 }], | 170 }], |
166 ['component=="shared_library"', { | 171 ['component=="shared_library"', { |
167 # compiler-unittests can't be built against a shared library, so we | 172 # compiler-unittests can't be built against a shared library, so we |
168 # need to depend on the underlying static target in that case. | 173 # need to depend on the underlying static target in that case. |
169 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 174 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], |
170 }, { | 175 }, { |
171 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 176 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
172 }], | 177 }], |
(...skipping 25 matching lines...) Expand all Loading... |
198 '../../build/isolate.gypi', | 203 '../../build/isolate.gypi', |
199 ], | 204 ], |
200 'sources': [ | 205 'sources': [ |
201 'unittests.isolate', | 206 'unittests.isolate', |
202 ], | 207 ], |
203 }, | 208 }, |
204 ], | 209 ], |
205 }], | 210 }], |
206 ], | 211 ], |
207 } | 212 } |
OLD | NEW |