| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 'test-utils-arm64.cc', | 198 'test-utils-arm64.cc', |
| 199 'test-assembler-arm64.cc', | 199 'test-assembler-arm64.cc', |
| 200 'test-code-stubs.cc', | 200 'test-code-stubs.cc', |
| 201 'test-code-stubs-arm64.cc', | 201 'test-code-stubs-arm64.cc', |
| 202 'test-disasm-arm64.cc', | 202 'test-disasm-arm64.cc', |
| 203 'test-fuzz-arm64.cc', | 203 'test-fuzz-arm64.cc', |
| 204 'test-javascript-arm64.cc', | 204 'test-javascript-arm64.cc', |
| 205 'test-js-arm64-variables.cc' | 205 'test-js-arm64-variables.cc' |
| 206 ], | 206 ], |
| 207 }], | 207 }], |
| 208 ['v8_target_arch=="ppc"', { |
| 209 'sources': [ ### gcmole(arch:ppc) ### |
| 210 'test-assembler-ppc.cc', |
| 211 'test-code-stubs.cc', |
| 212 'test-disasm-ppc.cc' |
| 213 ], |
| 214 }], |
| 215 ['v8_target_arch=="ppc64"', { |
| 216 'sources': [ ### gcmole(arch:ppc64) ### |
| 217 'test-assembler-ppc.cc', |
| 218 'test-code-stubs.cc', |
| 219 'test-disasm-ppc.cc' |
| 220 ], |
| 221 }], |
| 208 ['v8_target_arch=="mipsel"', { | 222 ['v8_target_arch=="mipsel"', { |
| 209 'sources': [ ### gcmole(arch:mipsel) ### | 223 'sources': [ ### gcmole(arch:mipsel) ### |
| 210 'test-assembler-mips.cc', | 224 'test-assembler-mips.cc', |
| 211 'test-code-stubs.cc', | 225 'test-code-stubs.cc', |
| 212 'test-code-stubs-mips.cc', | 226 'test-code-stubs-mips.cc', |
| 213 'test-disasm-mips.cc', | 227 'test-disasm-mips.cc', |
| 214 'test-macro-assembler-mips.cc' | 228 'test-macro-assembler-mips.cc' |
| 215 ], | 229 ], |
| 216 }], | 230 }], |
| 217 ['v8_target_arch=="mips64el"', { | 231 ['v8_target_arch=="mips64el"', { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 '<@(_outputs)', | 312 '<@(_outputs)', |
| 299 'TEST', # type | 313 'TEST', # type |
| 300 'off', # compression | 314 'off', # compression |
| 301 '<@(file_list)', | 315 '<@(file_list)', |
| 302 ], | 316 ], |
| 303 } | 317 } |
| 304 ], | 318 ], |
| 305 }, | 319 }, |
| 306 ], | 320 ], |
| 307 } | 321 } |
| OLD | NEW |