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

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

Issue 525193004: Merge heap unit tests into src. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'v8_code': 1,
8 },
9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
10 'targets': [
11 {
12 'target_name': 'runtime-unittests',
13 'type': 'executable',
14 'dependencies': [
15 '../../testing/gmock.gyp:gmock',
16 '../../testing/gtest.gyp:gtest',
17 '../../tools/gyp/v8.gyp:v8_libplatform',
18 ],
19 'include_dirs': [
20 '../..',
21 ],
22 'sources': [ ### gcmole(all) ###
23 'runtime-unittests.h',
24 'runtime-unittests.cc',
25 ],
26 'conditions': [
27 ['component=="shared_library"', {
28 # runtime-unittests can't be built against a shared library, so we
29 # need to depend on the underlying static target in that case.
30 'conditions': [
31 ['v8_use_snapshot=="true"', {
32 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'],
33 },
34 {
35 'dependencies': [
36 '../../tools/gyp/v8.gyp:v8_nosnapshot',
37 ],
38 }],
39 ],
40 }, {
41 'dependencies': ['../../tools/gyp/v8.gyp:v8'],
42 }],
43 ['os_posix == 1', {
44 # TODO(svenpanne): This is a temporary work-around to fix the warnings
45 # that show up because we use -std=gnu++0x instead of -std=c++11.
46 'cflags!': [
47 '-pedantic',
48 ],
49 }],
50 ],
51 },
52 ],
53 }
OLDNEW
« no previous file with comments | « test/runtime-unittests/runtime-unittests.cc ('k') | test/runtime-unittests/runtime-unittests.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698