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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 # There seems to be a glitch in the way scons decides where to put | 139 # There seems to be a glitch in the way scons decides where to put |
139 # PDB files when compiling using MSVC so we specify it manually. | 140 # PDB files when compiling using MSVC so we specify it manually. |
140 # This should not affect any other platforms. | 141 # This should not affect any other platforms. |
141 object_files.append(js_files_obj) | 142 object_files.append(js_files_obj) |
142 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 143 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
143 PDB='cctest.exe.pdb') | 144 PDB='cctest.exe.pdb') |
144 | 145 |
145 | 146 |
146 program = Build() | 147 program = Build() |
147 Return('program') | 148 Return('program') |
OLD | NEW |