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

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

Issue 2420603002: Fix import/export annotations for v8 targets that are always static (Closed)
Patch Set: Created 4 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
« test/fuzzer/fuzzer.gyp ('K') | « test/unittests/BUILD.gn ('k') | no next file » | 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 # 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
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
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 }
OLDNEW
« test/fuzzer/fuzzer.gyp ('K') | « test/unittests/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698