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

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

Issue 479793004: [turbofan] Initial import of SimplifiedOperatorReducer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 6 years, 4 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
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 11 matching lines...) Expand all
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', 25 'common-operator-unittest.h',
26 'compiler-unittests.cc', 26 'compiler-unittests.cc',
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 'machine-operator-reducer-unittest.cc', 30 'machine-operator-reducer-unittest.cc',
31 'machine-operator-unittest.cc', 31 'machine-operator-unittest.cc',
32 'simplified-operator-reducer-unittest.cc',
32 ], 33 ],
33 'conditions': [ 34 'conditions': [
34 ['v8_target_arch=="arm"', { 35 ['v8_target_arch=="arm"', {
35 'sources': [ ### gcmole(arch:arm) ### 36 'sources': [ ### gcmole(arch:arm) ###
36 'arm/instruction-selector-arm-unittest.cc', 37 'arm/instruction-selector-arm-unittest.cc',
37 ], 38 ],
38 }], 39 }],
39 ['v8_target_arch=="arm64"', { 40 ['v8_target_arch=="arm64"', {
40 'sources': [ ### gcmole(arch:arm64) ### 41 'sources': [ ### gcmole(arch:arm64) ###
41 'arm64/instruction-selector-arm64-unittest.cc', 42 'arm64/instruction-selector-arm64-unittest.cc',
(...skipping 29 matching lines...) Expand all
71 # TODO(svenpanne): This is a temporary work-around to fix the warnings 72 # TODO(svenpanne): This is a temporary work-around to fix the warnings
72 # that show up because we use -std=gnu++0x instead of -std=c++11. 73 # that show up because we use -std=gnu++0x instead of -std=c++11.
73 'cflags!': [ 74 'cflags!': [
74 '-pedantic', 75 '-pedantic',
75 ], 76 ],
76 }], 77 }],
77 ], 78 ],
78 }, 79 },
79 ], 80 ],
80 } 81 }
OLDNEW
« no previous file with comments | « test/compiler-unittests/change-lowering-unittest.cc ('k') | test/compiler-unittests/graph-unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698