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 { | 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 Loading... |
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 Loading... |
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 } |
OLD | NEW |