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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'test-utils-arm64.cc', | 204 'test-utils-arm64.cc', |
205 'test-assembler-arm64.cc', | 205 'test-assembler-arm64.cc', |
206 'test-code-stubs.cc', | 206 'test-code-stubs.cc', |
207 'test-code-stubs-arm64.cc', | 207 'test-code-stubs-arm64.cc', |
208 'test-disasm-arm64.cc', | 208 'test-disasm-arm64.cc', |
209 'test-fuzz-arm64.cc', | 209 'test-fuzz-arm64.cc', |
210 'test-javascript-arm64.cc', | 210 'test-javascript-arm64.cc', |
211 'test-js-arm64-variables.cc' | 211 'test-js-arm64-variables.cc' |
212 ], | 212 ], |
213 }], | 213 }], |
| 214 ['v8_target_arch=="ppc"', { |
| 215 'sources': [ ### gcmole(arch:ppc) ### |
| 216 'test-assembler-ppc.cc', |
| 217 'test-code-stubs.cc', |
| 218 'test-disasm-ppc.cc' |
| 219 ], |
| 220 }], |
| 221 ['v8_target_arch=="ppc64"', { |
| 222 'sources': [ ### gcmole(arch:ppc64) ### |
| 223 'test-assembler-ppc.cc', |
| 224 'test-code-stubs.cc', |
| 225 'test-disasm-ppc.cc' |
| 226 ], |
| 227 }], |
214 ['v8_target_arch=="mipsel"', { | 228 ['v8_target_arch=="mipsel"', { |
215 'sources': [ ### gcmole(arch:mipsel) ### | 229 'sources': [ ### gcmole(arch:mipsel) ### |
216 'test-assembler-mips.cc', | 230 'test-assembler-mips.cc', |
217 'test-code-stubs.cc', | 231 'test-code-stubs.cc', |
218 'test-code-stubs-mips.cc', | 232 'test-code-stubs-mips.cc', |
219 'test-disasm-mips.cc', | 233 'test-disasm-mips.cc', |
220 'test-macro-assembler-mips.cc' | 234 'test-macro-assembler-mips.cc' |
221 ], | 235 ], |
222 }], | 236 }], |
223 ['v8_target_arch=="mips64el"', { | 237 ['v8_target_arch=="mips64el"', { |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 '../../tools/js2c.py', | 318 '../../tools/js2c.py', |
305 '<@(_outputs)', | 319 '<@(_outputs)', |
306 'TEST', # type | 320 'TEST', # type |
307 '<@(file_list)', | 321 '<@(file_list)', |
308 ], | 322 ], |
309 } | 323 } |
310 ], | 324 ], |
311 }, | 325 }, |
312 ], | 326 ], |
313 } | 327 } |
OLD | NEW |