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