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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'test-weaktypedarrays.cc' | 115 'test-weaktypedarrays.cc' |
116 ], | 116 ], |
117 'conditions': [ | 117 'conditions': [ |
118 ['v8_target_arch=="ia32"', { | 118 ['v8_target_arch=="ia32"', { |
119 'sources': [ | 119 'sources': [ |
120 'test-assembler-ia32.cc', | 120 'test-assembler-ia32.cc', |
121 'test-code-stubs.cc', | 121 'test-code-stubs.cc', |
122 'test-code-stubs-ia32.cc', | 122 'test-code-stubs-ia32.cc', |
123 'test-cpu-ia32.cc', | 123 'test-cpu-ia32.cc', |
124 'test-disasm-ia32.cc', | 124 'test-disasm-ia32.cc', |
| 125 'test-macro-assembler-ia32.cc', |
125 'test-log-stack-tracer.cc' | 126 'test-log-stack-tracer.cc' |
126 ], | 127 ], |
127 }], | 128 }], |
128 ['v8_target_arch=="x64"', { | 129 ['v8_target_arch=="x64"', { |
129 'sources': [ | 130 'sources': [ |
130 'test-assembler-x64.cc', | 131 'test-assembler-x64.cc', |
131 'test-code-stubs.cc', | 132 'test-code-stubs.cc', |
132 'test-code-stubs-x64.cc', | 133 'test-code-stubs-x64.cc', |
133 'test-cpu-x64.cc', | 134 'test-cpu-x64.cc', |
134 'test-macro-assembler-x64.cc', | 135 'test-macro-assembler-x64.cc', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 '<@(_outputs)', | 222 '<@(_outputs)', |
222 'TEST', # type | 223 'TEST', # type |
223 'off', # compression | 224 'off', # compression |
224 '<@(file_list)', | 225 '<@(file_list)', |
225 ], | 226 ], |
226 } | 227 } |
227 ], | 228 ], |
228 }, | 229 }, |
229 ], | 230 ], |
230 } | 231 } |
OLD | NEW |