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

Side by Side Diff: src/compiler/compiler.gyp

Issue 530693002: [turbofan] Merge compiler 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
« no previous file with comments | « src/compiler/common-operator-unittest.cc ('k') | src/compiler/compiler-unittests.h » ('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': [
11 { 11 {
12 'target_name': 'compiler-unittests', 12 'target_name': 'compiler-unittests',
13 'type': 'executable', 13 'type': 'executable',
14 'dependencies': [ 14 'dependencies': [
15 '../../testing/gmock.gyp:gmock', 15 '../../testing/gmock.gyp:gmock',
16 '../../testing/gtest.gyp:gtest', 16 '../../testing/gtest.gyp:gtest',
17 '../../tools/gyp/v8.gyp:v8_libplatform', 17 '../../tools/gyp/v8.gyp:v8_libplatform',
18 ], 18 ],
19 'include_dirs': [ 19 'include_dirs': [
20 '../..', 20 '../..',
21 ], 21 ],
22 'sources': [ ### gcmole(all) ### 22 'sources': [ ### gcmole(all) ###
23 'change-lowering-unittest.cc', 23 'change-lowering-unittest.cc',
24 'common-operator-unittest.cc', 24 'common-operator-unittest.cc',
25 'common-operator-unittest.h',
26 'compiler-unittests.cc', 25 'compiler-unittests.cc',
26 'compiler-unittests.h',
27 'graph-unittest.cc', 27 'graph-unittest.cc',
28 'graph-unittest.h', 28 'graph-unittest.h',
29 'instruction-selector-unittest.cc', 29 'instruction-selector-unittest.cc',
30 'instruction-selector-unittest.h',
30 'machine-operator-reducer-unittest.cc', 31 'machine-operator-reducer-unittest.cc',
31 'machine-operator-unittest.cc', 32 'machine-operator-unittest.cc',
32 'simplified-operator-reducer-unittest.cc', 33 'simplified-operator-reducer-unittest.cc',
33 ], 34 ],
34 'conditions': [ 35 'conditions': [
35 ['v8_target_arch=="arm"', { 36 ['v8_target_arch=="arm"', {
36 'sources': [ ### gcmole(arch:arm) ### 37 'sources': [ ### gcmole(arch:arm) ###
37 'arm/instruction-selector-arm-unittest.cc', 38 'arm/instruction-selector-arm-unittest.cc',
38 ], 39 ],
39 }], 40 }],
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 # TODO(svenpanne): This is a temporary work-around to fix the warnings 73 # TODO(svenpanne): This is a temporary work-around to fix the warnings
73 # that show up because we use -std=gnu++0x instead of -std=c++11. 74 # that show up because we use -std=gnu++0x instead of -std=c++11.
74 'cflags!': [ 75 'cflags!': [
75 '-pedantic', 76 '-pedantic',
76 ], 77 ],
77 }], 78 }],
78 ], 79 ],
79 }, 80 },
80 ], 81 ],
81 } 82 }
OLDNEW
« no previous file with comments | « src/compiler/common-operator-unittest.cc ('k') | src/compiler/compiler-unittests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698