| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'test-decls.cc', | 66 'test-decls.cc', |
| 67 'test-deoptimization.cc', | 67 'test-deoptimization.cc', |
| 68 'test-dictionary.cc', | 68 'test-dictionary.cc', |
| 69 'test-diy-fp.cc', | 69 'test-diy-fp.cc', |
| 70 'test-double.cc', | 70 'test-double.cc', |
| 71 'test-dtoa.cc', | 71 'test-dtoa.cc', |
| 72 'test-fast-dtoa.cc', | 72 'test-fast-dtoa.cc', |
| 73 'test-fixed-dtoa.cc', | 73 'test-fixed-dtoa.cc', |
| 74 'test-flags.cc', | 74 'test-flags.cc', |
| 75 'test-func-name-inference.cc', | 75 'test-func-name-inference.cc', |
| 76 'test-hashing.cc', |
| 76 'test-hashmap.cc', | 77 'test-hashmap.cc', |
| 77 'test-heap-profiler.cc', | 78 'test-heap-profiler.cc', |
| 78 'test-heap.cc', | 79 'test-heap.cc', |
| 79 'test-list.cc', | 80 'test-list.cc', |
| 80 'test-liveedit.cc', | 81 'test-liveedit.cc', |
| 81 'test-lock.cc', | 82 'test-lock.cc', |
| 82 'test-lockers.cc', | 83 'test-lockers.cc', |
| 83 'test-log.cc', | 84 'test-log.cc', |
| 84 'test-mark-compact.cc', | 85 'test-mark-compact.cc', |
| 85 'test-parsing.cc', | 86 'test-parsing.cc', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |