| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'test-serialize.cc', | 93 'test-serialize.cc', |
| 94 'test-sockets.cc', | 94 'test-sockets.cc', |
| 95 'test-spaces.cc', | 95 'test-spaces.cc', |
| 96 'test-strings.cc', | 96 'test-strings.cc', |
| 97 'test-strtod.cc', | 97 'test-strtod.cc', |
| 98 'test-thread-termination.cc', | 98 'test-thread-termination.cc', |
| 99 'test-threads.cc', | 99 'test-threads.cc', |
| 100 'test-unbound-queue.cc', | 100 'test-unbound-queue.cc', |
| 101 'test-utils.cc', | 101 'test-utils.cc', |
| 102 'test-version.cc', | 102 'test-version.cc', |
| 103 'test-weakmaps.cc' | 103 'test-weakmaps.cc', |
| 104 'test-regressions-sh4.cc' |
| 104 ], | 105 ], |
| 105 'arch:arm': [ | 106 'arch:arm': [ |
| 106 'test-assembler-arm.cc', | 107 'test-assembler-arm.cc', |
| 107 'test-disasm-arm.cc' | 108 'test-disasm-arm.cc' |
| 108 ], | 109 ], |
| 110 'arch:sh4': [ |
| 111 'test-sh4.cc', |
| 112 'test-assembler-sh4.cc', |
| 113 'test-macro-assembler-sh4.cc', |
| 114 'test-code-stub-sh4.cc' |
| 115 ], |
| 109 'arch:ia32': [ | 116 'arch:ia32': [ |
| 110 'test-assembler-ia32.cc', | 117 'test-assembler-ia32.cc', |
| 111 'test-disasm-ia32.cc', | 118 'test-disasm-ia32.cc', |
| 112 'test-log-stack-tracer.cc' | 119 'test-log-stack-tracer.cc' |
| 113 ], | 120 ], |
| 114 'arch:x64': ['test-assembler-x64.cc', | 121 'arch:x64': ['test-assembler-x64.cc', |
| 115 'test-macro-assembler-x64.cc', | 122 'test-macro-assembler-x64.cc', |
| 116 'test-log-stack-tracer.cc', | 123 'test-log-stack-tracer.cc', |
| 117 'test-disasm-x64.cc'], | 124 'test-disasm-x64.cc'], |
| 118 'arch:mips': ['test-assembler-mips.cc', | 125 'arch:mips': ['test-assembler-mips.cc', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 141 # There seems to be a glitch in the way scons decides where to put | 148 # There seems to be a glitch in the way scons decides where to put |
| 142 # PDB files when compiling using MSVC so we specify it manually. | 149 # PDB files when compiling using MSVC so we specify it manually. |
| 143 # This should not affect any other platforms. | 150 # This should not affect any other platforms. |
| 144 object_files.append(js_files_obj) | 151 object_files.append(js_files_obj) |
| 145 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 152 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
| 146 PDB='cctest.exe.pdb') | 153 PDB='cctest.exe.pdb') |
| 147 | 154 |
| 148 | 155 |
| 149 program = Build() | 156 program = Build() |
| 150 Return('program') | 157 Return('program') |
| OLD | NEW |