| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 ['v8_target_arch=="arm64"', { | 132 ['v8_target_arch=="arm64"', { |
| 133 'sources': [ ### gcmole(arch:arm64) ### | 133 'sources': [ ### gcmole(arch:arm64) ### |
| 134 'compiler/arm64/instruction-selector-arm64-unittest.cc', | 134 'compiler/arm64/instruction-selector-arm64-unittest.cc', |
| 135 ], | 135 ], |
| 136 }], | 136 }], |
| 137 ['v8_target_arch=="ia32"', { | 137 ['v8_target_arch=="ia32"', { |
| 138 'sources': [ ### gcmole(arch:ia32) ### | 138 'sources': [ ### gcmole(arch:ia32) ### |
| 139 'compiler/ia32/instruction-selector-ia32-unittest.cc', | 139 'compiler/ia32/instruction-selector-ia32-unittest.cc', |
| 140 ], | 140 ], |
| 141 }], | 141 }], |
| 142 ['v8_target_arch=="mips"', { |
| 143 'sources': [ ### gcmole(arch:mips) ### |
| 144 'compiler/mips/instruction-selector-mips-unittest.cc', |
| 145 ], |
| 146 }], |
| 142 ['v8_target_arch=="mipsel"', { | 147 ['v8_target_arch=="mipsel"', { |
| 143 'sources': [ ### gcmole(arch:mipsel) ### | 148 'sources': [ ### gcmole(arch:mipsel) ### |
| 144 'compiler/mips/instruction-selector-mips-unittest.cc', | 149 'compiler/mips/instruction-selector-mips-unittest.cc', |
| 145 ], | 150 ], |
| 146 }], | 151 }], |
| 152 ['v8_target_arch=="mips64"', { |
| 153 'sources': [ ### gcmole(arch:mips64) ### |
| 154 'compiler/mips64/instruction-selector-mips64-unittest.cc', |
| 155 ], |
| 156 }], |
| 147 ['v8_target_arch=="mips64el"', { | 157 ['v8_target_arch=="mips64el"', { |
| 148 'sources': [ ### gcmole(arch:mips64el) ### | 158 'sources': [ ### gcmole(arch:mips64el) ### |
| 149 'compiler/mips64/instruction-selector-mips64-unittest.cc', | 159 'compiler/mips64/instruction-selector-mips64-unittest.cc', |
| 150 ], | 160 ], |
| 151 }], | 161 }], |
| 152 ['v8_target_arch=="x64"', { | 162 ['v8_target_arch=="x64"', { |
| 153 'sources': [ ### gcmole(arch:x64) ### | 163 'sources': [ ### gcmole(arch:x64) ### |
| 154 'compiler/x64/instruction-selector-x64-unittest.cc', | 164 'compiler/x64/instruction-selector-x64-unittest.cc', |
| 155 ], | 165 ], |
| 156 }], | 166 }], |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 '../../build/isolate.gypi', | 212 '../../build/isolate.gypi', |
| 203 ], | 213 ], |
| 204 'sources': [ | 214 'sources': [ |
| 205 'unittests.isolate', | 215 'unittests.isolate', |
| 206 ], | 216 ], |
| 207 }, | 217 }, |
| 208 ], | 218 ], |
| 209 }], | 219 }], |
| 210 ], | 220 ], |
| 211 } | 221 } |
| OLD | NEW |