OLD | NEW |
1 # Copyright 2012 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 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'test-parsing.cc', | 87 'test-parsing.cc', |
88 'test-platform-tls.cc', | 88 'test-platform-tls.cc', |
89 'test-profile-generator.cc', | 89 'test-profile-generator.cc', |
90 'test-random.cc', | 90 'test-random.cc', |
91 'test-regexp.cc', | 91 'test-regexp.cc', |
92 'test-reloc-info.cc', | 92 'test-reloc-info.cc', |
93 'test-serialize.cc', | 93 'test-serialize.cc', |
94 'test-sockets.cc', | 94 'test-sockets.cc', |
95 'test-spaces.cc', | 95 'test-spaces.cc', |
96 'test-strings.cc', | 96 'test-strings.cc', |
| 97 'test-symbols.cc', |
97 'test-strtod.cc', | 98 'test-strtod.cc', |
98 'test-thread-termination.cc', | 99 'test-thread-termination.cc', |
99 'test-threads.cc', | 100 'test-threads.cc', |
100 'test-unbound-queue.cc', | 101 'test-unbound-queue.cc', |
101 'test-utils.cc', | 102 'test-utils.cc', |
102 'test-version.cc', | 103 'test-version.cc', |
103 'test-weakmaps.cc' | 104 'test-weakmaps.cc' |
104 ], | 105 ], |
105 'arch:arm': [ | 106 'arch:arm': [ |
106 'test-assembler-arm.cc', | 107 'test-assembler-arm.cc', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 # There seems to be a glitch in the way scons decides where to put | 142 # There seems to be a glitch in the way scons decides where to put |
142 # PDB files when compiling using MSVC so we specify it manually. | 143 # PDB files when compiling using MSVC so we specify it manually. |
143 # This should not affect any other platforms. | 144 # This should not affect any other platforms. |
144 object_files.append(js_files_obj) | 145 object_files.append(js_files_obj) |
145 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 146 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
146 PDB='cctest.exe.pdb') | 147 PDB='cctest.exe.pdb') |
147 | 148 |
148 | 149 |
149 program = Build() | 150 program = Build() |
150 Return('program') | 151 Return('program') |
OLD | NEW |