| OLD | NEW |
| 1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2008 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'test-assembler-arm.cc', | 103 'test-assembler-arm.cc', |
| 104 'test-disasm-arm.cc' | 104 'test-disasm-arm.cc' |
| 105 ], | 105 ], |
| 106 'arch:ia32': [ | 106 'arch:ia32': [ |
| 107 'test-assembler-ia32.cc', | 107 'test-assembler-ia32.cc', |
| 108 'test-disasm-ia32.cc', | 108 'test-disasm-ia32.cc', |
| 109 'test-log-stack-tracer.cc' | 109 'test-log-stack-tracer.cc' |
| 110 ], | 110 ], |
| 111 'arch:x64': ['test-assembler-x64.cc', | 111 'arch:x64': ['test-assembler-x64.cc', |
| 112 'test-macro-assembler-x64.cc', | 112 'test-macro-assembler-x64.cc', |
| 113 'test-log-stack-tracer.cc'], | 113 'test-log-stack-tracer.cc', |
| 114 'test-disasm-x64.cc'], |
| 114 'arch:mips': ['test-assembler-mips.cc', | 115 'arch:mips': ['test-assembler-mips.cc', |
| 115 'test-disasm-mips.cc'], | 116 'test-disasm-mips.cc'], |
| 116 'os:linux': ['test-platform-linux.cc'], | 117 'os:linux': ['test-platform-linux.cc'], |
| 117 'os:macos': ['test-platform-macos.cc'], | 118 'os:macos': ['test-platform-macos.cc'], |
| 118 'os:nullos': ['test-platform-nullos.cc'], | 119 'os:nullos': ['test-platform-nullos.cc'], |
| 119 'os:win32': ['test-platform-win32.cc'] | 120 'os:win32': ['test-platform-win32.cc'] |
| 120 } | 121 } |
| 121 | 122 |
| 122 | 123 |
| 123 def Build(): | 124 def Build(): |
| (...skipping 13 matching lines...) Expand all Loading... |
| 137 # There seems to be a glitch in the way scons decides where to put | 138 # There seems to be a glitch in the way scons decides where to put |
| 138 # PDB files when compiling using MSVC so we specify it manually. | 139 # PDB files when compiling using MSVC so we specify it manually. |
| 139 # This should not affect any other platforms. | 140 # This should not affect any other platforms. |
| 140 object_files.append(js_files_obj) | 141 object_files.append(js_files_obj) |
| 141 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 142 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
| 142 PDB='cctest.exe.pdb') | 143 PDB='cctest.exe.pdb') |
| 143 | 144 |
| 144 | 145 |
| 145 program = Build() | 146 program = Build() |
| 146 Return('program') | 147 Return('program') |
| OLD | NEW |