OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 'test-utils-arm64.cc', | 164 'test-utils-arm64.cc', |
165 'test-assembler-arm64.cc', | 165 'test-assembler-arm64.cc', |
166 'test-code-stubs.cc', | 166 'test-code-stubs.cc', |
167 'test-code-stubs-arm64.cc', | 167 'test-code-stubs-arm64.cc', |
168 'test-disasm-arm64.cc', | 168 'test-disasm-arm64.cc', |
169 'test-fuzz-arm64.cc', | 169 'test-fuzz-arm64.cc', |
170 'test-javascript-arm64.cc', | 170 'test-javascript-arm64.cc', |
171 'test-js-arm64-variables.cc' | 171 'test-js-arm64-variables.cc' |
172 ], | 172 ], |
173 }], | 173 }], |
| 174 ['v8_target_arch=="ppc"', { |
| 175 'sources': [ ### gcmole(arch:ppc) ### |
| 176 'test-assembler-ppc.cc', |
| 177 'test-code-stubs.cc', |
| 178 'test-disasm-ppc.cc' |
| 179 ], |
| 180 }], |
| 181 ['v8_target_arch=="ppc64"', { |
| 182 'sources': [ ### gcmole(arch:ppc64) ### |
| 183 'test-assembler-ppc.cc', |
| 184 'test-code-stubs.cc', |
| 185 'test-disasm-ppc.cc' |
| 186 ], |
| 187 }], |
174 ['v8_target_arch=="mipsel"', { | 188 ['v8_target_arch=="mipsel"', { |
175 'sources': [ ### gcmole(arch:mipsel) ### | 189 'sources': [ ### gcmole(arch:mipsel) ### |
176 'test-assembler-mips.cc', | 190 'test-assembler-mips.cc', |
177 'test-code-stubs.cc', | 191 'test-code-stubs.cc', |
178 'test-code-stubs-mips.cc', | 192 'test-code-stubs-mips.cc', |
179 'test-disasm-mips.cc', | 193 'test-disasm-mips.cc', |
180 'test-macro-assembler-mips.cc' | 194 'test-macro-assembler-mips.cc' |
181 ], | 195 ], |
182 }], | 196 }], |
183 ['v8_target_arch=="mips64el"', { | 197 ['v8_target_arch=="mips64el"', { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 '<@(_outputs)', | 284 '<@(_outputs)', |
271 'TEST', # type | 285 'TEST', # type |
272 'off', # compression | 286 'off', # compression |
273 '<@(file_list)', | 287 '<@(file_list)', |
274 ], | 288 ], |
275 } | 289 } |
276 ], | 290 ], |
277 }, | 291 }, |
278 ], | 292 ], |
279 } | 293 } |
OLD | NEW |