| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 'test-cpu-x64.cc', | 129 'test-cpu-x64.cc', |
| 130 'test-macro-assembler-x64.cc', | 130 'test-macro-assembler-x64.cc', |
| 131 'test-log-stack-tracer.cc' | 131 'test-log-stack-tracer.cc' |
| 132 ], | 132 ], |
| 133 }], | 133 }], |
| 134 ['v8_target_arch=="arm"', { | 134 ['v8_target_arch=="arm"', { |
| 135 'sources': [ | 135 'sources': [ |
| 136 'test-assembler-arm.cc', | 136 'test-assembler-arm.cc', |
| 137 'test-code-stubs.cc', | 137 'test-code-stubs.cc', |
| 138 'test-code-stubs-arm.cc', | 138 'test-code-stubs-arm.cc', |
| 139 'test-disasm-arm.cc' | 139 'test-disasm-arm.cc', |
| 140 'test-macro-assembler-arm.cc' |
| 140 ], | 141 ], |
| 141 }], | 142 }], |
| 142 ['v8_target_arch=="mipsel"', { | 143 ['v8_target_arch=="mipsel"', { |
| 143 'sources': [ | 144 'sources': [ |
| 144 'test-assembler-mips.cc', | 145 'test-assembler-mips.cc', |
| 145 'test-disasm-mips.cc', | 146 'test-disasm-mips.cc', |
| 146 ], | 147 ], |
| 147 }], | 148 }], |
| 148 [ 'OS=="linux"', { | 149 [ 'OS=="linux"', { |
| 149 'sources': [ | 150 'sources': [ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 '<@(_outputs)', | 216 '<@(_outputs)', |
| 216 'TEST', # type | 217 'TEST', # type |
| 217 'off', # compression | 218 'off', # compression |
| 218 '<@(file_list)', | 219 '<@(file_list)', |
| 219 ], | 220 ], |
| 220 } | 221 } |
| 221 ], | 222 ], |
| 222 }, | 223 }, |
| 223 ], | 224 ], |
| 224 } | 225 } |
| OLD | NEW |