| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'test-macro-assembler-x64.cc', | 120 'test-macro-assembler-x64.cc', |
| 121 'test-log-stack-tracer.cc' | 121 'test-log-stack-tracer.cc' |
| 122 ], | 122 ], |
| 123 }], | 123 }], |
| 124 ['v8_target_arch=="arm"', { | 124 ['v8_target_arch=="arm"', { |
| 125 'sources': [ | 125 'sources': [ |
| 126 'test-assembler-arm.cc', | 126 'test-assembler-arm.cc', |
| 127 'test-disasm-arm.cc' | 127 'test-disasm-arm.cc' |
| 128 ], | 128 ], |
| 129 }], | 129 }], |
| 130 ['v8_target_arch=="a64"', { |
| 131 'sources': [ |
| 132 'test-utils-a64.cc', |
| 133 'test-assembler-a64.cc', |
| 134 'test-disasm-a64.cc', |
| 135 'test-fuzz-a64.cc', |
| 136 'test-javascript-a64.cc', |
| 137 'test-js-a64-variables.cc' |
| 138 ], |
| 139 }], |
| 130 ['v8_target_arch=="mipsel"', { | 140 ['v8_target_arch=="mipsel"', { |
| 131 'sources': [ | 141 'sources': [ |
| 132 'test-assembler-mips.cc', | 142 'test-assembler-mips.cc', |
| 133 'test-disasm-mips.cc', | 143 'test-disasm-mips.cc', |
| 134 ], | 144 ], |
| 135 }], | 145 }], |
| 136 [ 'OS=="linux"', { | 146 [ 'OS=="linux"', { |
| 137 'sources': [ | 147 'sources': [ |
| 138 'test-platform-linux.cc', | 148 'test-platform-linux.cc', |
| 139 ], | 149 ], |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 '<@(_outputs)', | 213 '<@(_outputs)', |
| 204 'TEST', # type | 214 'TEST', # type |
| 205 'off', # compression | 215 'off', # compression |
| 206 '<@(file_list)', | 216 '<@(file_list)', |
| 207 ], | 217 ], |
| 208 } | 218 } |
| 209 ], | 219 ], |
| 210 }, | 220 }, |
| 211 ], | 221 ], |
| 212 } | 222 } |
| OLD | NEW |