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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 ['v8_target_arch=="ia32"', { | 47 ['v8_target_arch=="ia32"', { |
48 'sources': [ ### gcmole(arch:ia32) ### | 48 'sources': [ ### gcmole(arch:ia32) ### |
49 'ia32/instruction-selector-ia32-unittest.cc', | 49 'ia32/instruction-selector-ia32-unittest.cc', |
50 ], | 50 ], |
51 }], | 51 }], |
52 ['v8_target_arch=="x64"', { | 52 ['v8_target_arch=="x64"', { |
53 'sources': [ ### gcmole(arch:x64) ### | 53 'sources': [ ### gcmole(arch:x64) ### |
54 'x64/instruction-selector-x64-unittest.cc', | 54 'x64/instruction-selector-x64-unittest.cc', |
55 ], | 55 ], |
56 }], | 56 }], |
| 57 ['v8_target_arch=="mipsel"', { |
| 58 'sources': [ ### gcmole(arch:mipsel) ### |
| 59 'mips/instruction-selector-mips-unittest.cc', |
| 60 ], |
| 61 }], |
57 ], | 62 ], |
58 }, | 63 }, |
59 ], | 64 ], |
60 } | 65 } |
OLD | NEW |