OLD | NEW |
1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 |
11 # with the distribution. | 11 # with the distribution. |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'test-heap.cc', | 79 'test-heap.cc', |
80 'test-list.cc', | 80 'test-list.cc', |
81 'test-liveedit.cc', | 81 'test-liveedit.cc', |
82 'test-lock.cc', | 82 'test-lock.cc', |
83 'test-lockers.cc', | 83 'test-lockers.cc', |
84 'test-log.cc', | 84 'test-log.cc', |
85 'test-mark-compact.cc', | 85 'test-mark-compact.cc', |
86 'test-parsing.cc', | 86 'test-parsing.cc', |
87 'test-platform-tls.cc', | 87 'test-platform-tls.cc', |
88 'test-profile-generator.cc', | 88 'test-profile-generator.cc', |
| 89 'test-random.cc', |
89 'test-regexp.cc', | 90 'test-regexp.cc', |
90 'test-reloc-info.cc', | 91 'test-reloc-info.cc', |
91 'test-serialize.cc', | 92 'test-serialize.cc', |
92 'test-sockets.cc', | 93 'test-sockets.cc', |
93 'test-spaces.cc', | 94 'test-spaces.cc', |
94 'test-strings.cc', | 95 'test-strings.cc', |
95 'test-strtod.cc', | 96 'test-strtod.cc', |
96 'test-thread-termination.cc', | 97 'test-thread-termination.cc', |
97 'test-threads.cc', | 98 'test-threads.cc', |
98 'test-unbound-queue.cc', | 99 'test-unbound-queue.cc', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 # There seems to be a glitch in the way scons decides where to put | 140 # There seems to be a glitch in the way scons decides where to put |
140 # PDB files when compiling using MSVC so we specify it manually. | 141 # PDB files when compiling using MSVC so we specify it manually. |
141 # This should not affect any other platforms. | 142 # This should not affect any other platforms. |
142 object_files.append(js_files_obj) | 143 object_files.append(js_files_obj) |
143 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 144 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
144 PDB='cctest.exe.pdb') | 145 PDB='cctest.exe.pdb') |
145 | 146 |
146 | 147 |
147 program = Build() | 148 program = Build() |
148 Return('program') | 149 Return('program') |
OLD | NEW |