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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 }], | 147 }], |
148 ['v8_target_arch=="arm"', { | 148 ['v8_target_arch=="arm"', { |
149 'sources': [ | 149 'sources': [ |
150 'test-assembler-arm.cc', | 150 'test-assembler-arm.cc', |
151 'test-code-stubs.cc', | 151 'test-code-stubs.cc', |
152 'test-code-stubs-arm.cc', | 152 'test-code-stubs-arm.cc', |
153 'test-disasm-arm.cc', | 153 'test-disasm-arm.cc', |
154 'test-macro-assembler-arm.cc' | 154 'test-macro-assembler-arm.cc' |
155 ], | 155 ], |
156 }], | 156 }], |
157 ['v8_target_arch=="a64" or v8_target_arch=="arm64"', { | 157 ['v8_target_arch=="arm64"', { |
158 'sources': [ | 158 'sources': [ |
159 'test-utils-a64.cc', | 159 'test-utils-arm64.cc', |
160 'test-assembler-a64.cc', | 160 'test-assembler-arm64.cc', |
161 'test-code-stubs.cc', | 161 'test-code-stubs.cc', |
162 'test-code-stubs-a64.cc', | 162 'test-code-stubs-arm64.cc', |
163 'test-disasm-a64.cc', | 163 'test-disasm-arm64.cc', |
164 'test-fuzz-a64.cc', | 164 'test-fuzz-arm64.cc', |
165 'test-javascript-a64.cc', | 165 'test-javascript-arm64.cc', |
166 'test-js-a64-variables.cc' | 166 'test-js-arm64-variables.cc' |
167 ], | 167 ], |
168 }], | 168 }], |
169 ['v8_target_arch=="mipsel"', { | 169 ['v8_target_arch=="mipsel"', { |
170 'sources': [ | 170 'sources': [ |
171 'test-assembler-mips.cc', | 171 'test-assembler-mips.cc', |
172 'test-code-stubs.cc', | 172 'test-code-stubs.cc', |
173 'test-code-stubs-mips.cc', | 173 'test-code-stubs-mips.cc', |
174 'test-disasm-mips.cc', | 174 'test-disasm-mips.cc', |
175 'test-macro-assembler-mips.cc' | 175 'test-macro-assembler-mips.cc' |
176 ], | 176 ], |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 '<@(_outputs)', | 245 '<@(_outputs)', |
246 'TEST', # type | 246 'TEST', # type |
247 'off', # compression | 247 'off', # compression |
248 '<@(file_list)', | 248 '<@(file_list)', |
249 ], | 249 ], |
250 } | 250 } |
251 ], | 251 ], |
252 }, | 252 }, |
253 ], | 253 ], |
254 } | 254 } |
OLD | NEW |