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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 'test-assembler-x64.cc', | 122 'test-assembler-x64.cc', |
123 'test-code-stubs.cc', | 123 'test-code-stubs.cc', |
124 'test-code-stubs-x64.cc', | 124 'test-code-stubs-x64.cc', |
125 'test-macro-assembler-x64.cc', | 125 'test-macro-assembler-x64.cc', |
126 'test-log-stack-tracer.cc' | 126 'test-log-stack-tracer.cc' |
127 ], | 127 ], |
128 }], | 128 }], |
129 ['v8_target_arch=="arm"', { | 129 ['v8_target_arch=="arm"', { |
130 'sources': [ | 130 'sources': [ |
131 'test-assembler-arm.cc', | 131 'test-assembler-arm.cc', |
| 132 'test-code-stubs.cc', |
| 133 'test-code-stubs-arm.cc', |
132 'test-disasm-arm.cc' | 134 'test-disasm-arm.cc' |
133 ], | 135 ], |
134 }], | 136 }], |
135 ['v8_target_arch=="mipsel"', { | 137 ['v8_target_arch=="mipsel"', { |
136 'sources': [ | 138 'sources': [ |
137 'test-assembler-mips.cc', | 139 'test-assembler-mips.cc', |
138 'test-disasm-mips.cc', | 140 'test-disasm-mips.cc', |
139 ], | 141 ], |
140 }], | 142 }], |
141 [ 'OS=="linux"', { | 143 [ 'OS=="linux"', { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 '<@(_outputs)', | 210 '<@(_outputs)', |
209 'TEST', # type | 211 'TEST', # type |
210 'off', # compression | 212 'off', # compression |
211 '<@(file_list)', | 213 '<@(file_list)', |
212 ], | 214 ], |
213 } | 215 } |
214 ], | 216 ], |
215 }, | 217 }, |
216 ], | 218 ], |
217 } | 219 } |
OLD | NEW |