| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'test-strings.cc', | 97 'test-strings.cc', |
| 98 'test-symbols.cc', | 98 'test-symbols.cc', |
| 99 'test-strtod.cc', | 99 'test-strtod.cc', |
| 100 'test-thread-termination.cc', | 100 'test-thread-termination.cc', |
| 101 'test-threads.cc', | 101 'test-threads.cc', |
| 102 'test-types.cc', | 102 'test-types.cc', |
| 103 'test-unbound-queue.cc', | 103 'test-unbound-queue.cc', |
| 104 'test-utils.cc', | 104 'test-utils.cc', |
| 105 'test-version.cc', | 105 'test-version.cc', |
| 106 'test-weakmaps.cc', | 106 'test-weakmaps.cc', |
| 107 'test-weaksets.cc', |
| 107 'test-weaktypedarrays.cc' | 108 'test-weaktypedarrays.cc' |
| 108 ], | 109 ], |
| 109 'conditions': [ | 110 'conditions': [ |
| 110 ['v8_target_arch=="ia32"', { | 111 ['v8_target_arch=="ia32"', { |
| 111 'sources': [ | 112 'sources': [ |
| 112 'test-assembler-ia32.cc', | 113 'test-assembler-ia32.cc', |
| 114 'test-code-stubs.cc', |
| 113 'test-code-stubs-ia32.cc', | 115 'test-code-stubs-ia32.cc', |
| 114 'test-disasm-ia32.cc', | 116 'test-disasm-ia32.cc', |
| 115 'test-log-stack-tracer.cc' | 117 'test-log-stack-tracer.cc' |
| 116 ], | 118 ], |
| 117 }], | 119 }], |
| 118 ['v8_target_arch=="x64"', { | 120 ['v8_target_arch=="x64"', { |
| 119 'sources': [ | 121 'sources': [ |
| 120 'test-assembler-x64.cc', | 122 'test-assembler-x64.cc', |
| 123 'test-code-stubs.cc', |
| 124 'test-code-stubs-x64.cc', |
| 121 'test-macro-assembler-x64.cc', | 125 'test-macro-assembler-x64.cc', |
| 122 'test-log-stack-tracer.cc' | 126 'test-log-stack-tracer.cc' |
| 123 ], | 127 ], |
| 124 }], | 128 }], |
| 125 ['v8_target_arch=="arm"', { | 129 ['v8_target_arch=="arm"', { |
| 126 'sources': [ | 130 'sources': [ |
| 127 'test-assembler-arm.cc', | 131 'test-assembler-arm.cc', |
| 128 'test-disasm-arm.cc' | 132 'test-disasm-arm.cc' |
| 129 ], | 133 ], |
| 130 }], | 134 }], |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 '<@(_outputs)', | 218 '<@(_outputs)', |
| 215 'TEST', # type | 219 'TEST', # type |
| 216 'off', # compression | 220 'off', # compression |
| 217 '<@(file_list)', | 221 '<@(file_list)', |
| 218 ], | 222 ], |
| 219 } | 223 } |
| 220 ], | 224 ], |
| 221 }, | 225 }, |
| 222 ], | 226 ], |
| 223 } | 227 } |
| OLD | NEW |