| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'test-assembler-arm.cc', | 118 'test-assembler-arm.cc', |
| 119 'test-disasm-arm.cc' | 119 'test-disasm-arm.cc' |
| 120 ], | 120 ], |
| 121 }], | 121 }], |
| 122 ['v8_target_arch=="mipsel"', { | 122 ['v8_target_arch=="mipsel"', { |
| 123 'sources': [ | 123 'sources': [ |
| 124 'test-assembler-mips.cc', | 124 'test-assembler-mips.cc', |
| 125 'test-disasm-mips.cc', | 125 'test-disasm-mips.cc', |
| 126 ], | 126 ], |
| 127 }], | 127 }], |
| 128 ['v8_target_arch=="sh4"', { |
| 129 'sources': [ |
| 130 'test-sh4.cc', |
| 131 'test-assembler-sh4.cc', |
| 132 'test-macro-assembler-sh4.cc', |
| 133 'test-code-stub-sh4.cc', |
| 134 'test-regressions-sh4.c', |
| 135 ], |
| 136 }], |
| 128 [ 'OS=="linux"', { | 137 [ 'OS=="linux"', { |
| 129 'sources': [ | 138 'sources': [ |
| 130 'test-platform-linux.cc', | 139 'test-platform-linux.cc', |
| 131 ], | 140 ], |
| 132 }], | 141 }], |
| 133 [ 'OS=="mac"', { | 142 [ 'OS=="mac"', { |
| 134 'sources': [ | 143 'sources': [ |
| 135 'test-platform-macos.cc', | 144 'test-platform-macos.cc', |
| 136 ], | 145 ], |
| 137 }], | 146 }], |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 '<@(_outputs)', | 202 '<@(_outputs)', |
| 194 'TEST', # type | 203 'TEST', # type |
| 195 'off', # compression | 204 'off', # compression |
| 196 '<@(file_list)', | 205 '<@(file_list)', |
| 197 ], | 206 ], |
| 198 } | 207 } |
| 199 ], | 208 ], |
| 200 }, | 209 }, |
| 201 ], | 210 ], |
| 202 } | 211 } |
| OLD | NEW |