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 # The sources are kept automatically in sync with BUILD.gn. | 5 # The sources are kept automatically in sync with BUILD.gn. |
6 | 6 |
7 { | 7 { |
8 'variables': { | 8 'variables': { |
9 'v8_code': 1, | 9 'v8_code': 1, |
10 'unittests_sources': [ ### gcmole(all) ### | 10 'unittests_sources': [ ### gcmole(all) ### |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 '<@(unittests_sources_s390)', | 223 '<@(unittests_sources_s390)', |
224 ], | 224 ], |
225 }], | 225 }], |
226 ['OS=="aix"', { | 226 ['OS=="aix"', { |
227 'ldflags': [ '-Wl,-bbigtoc' ], | 227 'ldflags': [ '-Wl,-bbigtoc' ], |
228 }], | 228 }], |
229 ['component=="shared_library"', { | 229 ['component=="shared_library"', { |
230 # compiler-unittests can't be built against a shared library, so we | 230 # compiler-unittests can't be built against a shared library, so we |
231 # need to depend on the underlying static target in that case. | 231 # need to depend on the underlying static target in that case. |
232 'dependencies': ['../../src/v8.gyp:v8_maybe_snapshot'], | 232 'dependencies': ['../../src/v8.gyp:v8_maybe_snapshot'], |
| 233 'defines': [ 'BUILDING_V8_SHARED', ] |
233 }, { | 234 }, { |
234 'dependencies': ['../../src/v8.gyp:v8'], | 235 'dependencies': ['../../src/v8.gyp:v8'], |
235 }], | 236 }], |
236 ['os_posix == 1', { | 237 ['os_posix == 1', { |
237 # TODO(svenpanne): This is a temporary work-around to fix the warnings | 238 # TODO(svenpanne): This is a temporary work-around to fix the warnings |
238 # that show up because we use -std=gnu++0x instead of -std=c++11. | 239 # that show up because we use -std=gnu++0x instead of -std=c++11. |
239 'cflags!': [ | 240 'cflags!': [ |
240 '-pedantic', | 241 '-pedantic', |
241 ], | 242 ], |
242 'direct_dependent_settings': { | 243 'direct_dependent_settings': { |
(...skipping 18 matching lines...) Expand all Loading... |
261 '../../gypfiles/isolate.gypi', | 262 '../../gypfiles/isolate.gypi', |
262 ], | 263 ], |
263 'sources': [ | 264 'sources': [ |
264 'unittests.isolate', | 265 'unittests.isolate', |
265 ], | 266 ], |
266 }, | 267 }, |
267 ], | 268 ], |
268 }], | 269 }], |
269 ], | 270 ], |
270 } | 271 } |
OLD | NEW |