| 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 30 matching lines...) Expand all Loading... |
| 41 'test-conversions.cc', | 41 'test-conversions.cc', |
| 42 'test-debug.cc', | 42 'test-debug.cc', |
| 43 'test-decls.cc', | 43 'test-decls.cc', |
| 44 'test-flags.cc', | 44 'test-flags.cc', |
| 45 'test-func-name-inference.cc', | 45 'test-func-name-inference.cc', |
| 46 'test-hashmap.cc', | 46 'test-hashmap.cc', |
| 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-log.cc', | 50 'test-log.cc', |
| 51 'test-log-utils.cc', |
| 51 'test-mark-compact.cc', | 52 'test-mark-compact.cc', |
| 52 'test-regexp.cc', | 53 'test-regexp.cc', |
| 53 'test-serialize.cc', | 54 'test-serialize.cc', |
| 54 'test-sockets.cc', | 55 'test-sockets.cc', |
| 55 'test-spaces.cc', | 56 'test-spaces.cc', |
| 56 'test-strings.cc', | 57 'test-strings.cc', |
| 57 'test-threads.cc', | 58 'test-threads.cc', |
| 58 'test-utils.cc', | 59 'test-utils.cc', |
| 59 'test-version.cc' | 60 'test-version.cc' |
| 60 ], | 61 ], |
| (...skipping 18 matching lines...) Expand all Loading... |
| 79 context.ApplyEnvOverrides(env) | 80 context.ApplyEnvOverrides(env) |
| 80 # There seems to be a glitch in the way scons decides where to put | 81 # There seems to be a glitch in the way scons decides where to put |
| 81 # PDB files when compiling using MSVC so we specify it manually. | 82 # PDB files when compiling using MSVC so we specify it manually. |
| 82 # This should not affect any other platforms. | 83 # This should not affect any other platforms. |
| 83 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 84 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
| 84 PDB='cctest.exe.pdb') | 85 PDB='cctest.exe.pdb') |
| 85 | 86 |
| 86 | 87 |
| 87 program = Build() | 88 program = Build() |
| 88 Return('program') | 89 Return('program') |
| OLD | NEW |