| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'test-utils.cc', | 164 'test-utils.cc', |
| 165 'test-version.cc', | 165 'test-version.cc', |
| 166 'test-weakmaps.cc', | 166 'test-weakmaps.cc', |
| 167 'test-weaksets.cc', | 167 'test-weaksets.cc', |
| 168 'test-weaktypedarrays.cc', | 168 'test-weaktypedarrays.cc', |
| 169 'trace-extension.cc' | 169 'trace-extension.cc' |
| 170 ], | 170 ], |
| 171 'conditions': [ | 171 'conditions': [ |
| 172 ['v8_target_arch=="ia32"', { | 172 ['v8_target_arch=="ia32"', { |
| 173 'sources': [ ### gcmole(arch:ia32) ### | 173 'sources': [ ### gcmole(arch:ia32) ### |
| 174 'compiler/test-instruction-selector-ia32.cc', |
| 174 'test-assembler-ia32.cc', | 175 'test-assembler-ia32.cc', |
| 175 'test-code-stubs.cc', | 176 'test-code-stubs.cc', |
| 176 'test-code-stubs-ia32.cc', | 177 'test-code-stubs-ia32.cc', |
| 177 'test-cpu-ia32.cc', | 178 'test-cpu-ia32.cc', |
| 178 'test-disasm-ia32.cc', | 179 'test-disasm-ia32.cc', |
| 179 'test-macro-assembler-ia32.cc', | 180 'test-macro-assembler-ia32.cc', |
| 180 'test-log-stack-tracer.cc' | 181 'test-log-stack-tracer.cc' |
| 181 ], | 182 ], |
| 182 }], | 183 }], |
| 183 ['v8_target_arch=="x64"', { | 184 ['v8_target_arch=="x64"', { |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 '<@(_outputs)', | 313 '<@(_outputs)', |
| 313 'TEST', # type | 314 'TEST', # type |
| 314 'off', # compression | 315 'off', # compression |
| 315 '<@(file_list)', | 316 '<@(file_list)', |
| 316 ], | 317 ], |
| 317 } | 318 } |
| 318 ], | 319 ], |
| 319 }, | 320 }, |
| 320 ], | 321 ], |
| 321 } | 322 } |
| OLD | NEW |