| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 'test-heap.cc', | 47 'test-heap.cc', |
| 48 'test-list.cc', | 48 'test-list.cc', |
| 49 'test-lock.cc', | 49 'test-lock.cc', |
| 50 'test-mark-compact.cc', | 50 'test-mark-compact.cc', |
| 51 'test-regexp.cc', | 51 'test-regexp.cc', |
| 52 'test-serialize.cc', | 52 'test-serialize.cc', |
| 53 'test-sockets.cc', | 53 'test-sockets.cc', |
| 54 'test-spaces.cc', | 54 'test-spaces.cc', |
| 55 'test-strings.cc', | 55 'test-strings.cc', |
| 56 'test-threads.cc', | 56 'test-threads.cc', |
| 57 'test-utils.cc' | 57 'test-utils.cc', |
| 58 'test-version.cc' |
| 58 ], | 59 ], |
| 59 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'], | 60 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'], |
| 60 'arch:ia32': [ | 61 'arch:ia32': [ |
| 61 'test-assembler-ia32.cc', | 62 'test-assembler-ia32.cc', |
| 62 'test-disasm-ia32.cc', | 63 'test-disasm-ia32.cc', |
| 63 'test-log-ia32.cc' | 64 'test-log-ia32.cc' |
| 64 ], | 65 ], |
| 65 'os:linux': ['test-platform-linux.cc'], | 66 'os:linux': ['test-platform-linux.cc'], |
| 66 'os:macos': ['test-platform-macos.cc'], | 67 'os:macos': ['test-platform-macos.cc'], |
| 67 'os:nullos': ['test-platform-nullos.cc'], | 68 'os:nullos': ['test-platform-nullos.cc'], |
| 68 'os:win32': ['test-platform-win32.cc'] | 69 'os:win32': ['test-platform-win32.cc'] |
| 69 } | 70 } |
| 70 | 71 |
| 71 | 72 |
| 72 def Build(): | 73 def Build(): |
| 73 cctest_files = context.GetRelevantSources(SOURCES) | 74 cctest_files = context.GetRelevantSources(SOURCES) |
| 74 env = Environment() | 75 env = Environment() |
| 75 env.Replace(**context.flags['cctest']) | 76 env.Replace(**context.flags['cctest']) |
| 76 context.ApplyEnvOverrides(env) | 77 context.ApplyEnvOverrides(env) |
| 77 # There seems to be a glitch in the way scons decides where to put | 78 # There seems to be a glitch in the way scons decides where to put |
| 78 # PDB files when compiling using MSVC so we specify it manually. | 79 # PDB files when compiling using MSVC so we specify it manually. |
| 79 # This should not affect any other platforms. | 80 # This should not affect any other platforms. |
| 80 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 81 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
| 81 PDB='cctest.exe.pdb') | 82 PDB='cctest.exe.pdb') |
| 82 | 83 |
| 83 | 84 |
| 84 program = Build() | 85 program = Build() |
| 85 Return('program') | 86 Return('program') |
| OLD | NEW |