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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 'test-reloc-info.cc', | 89 'test-reloc-info.cc', |
90 'test-serialize.cc', | 90 'test-serialize.cc', |
91 'test-sockets.cc', | 91 'test-sockets.cc', |
92 'test-spaces.cc', | 92 'test-spaces.cc', |
93 'test-strings.cc', | 93 'test-strings.cc', |
94 'test-strtod.cc', | 94 'test-strtod.cc', |
95 'test-thread-termination.cc', | 95 'test-thread-termination.cc', |
96 'test-threads.cc', | 96 'test-threads.cc', |
97 'test-unbound-queue.cc', | 97 'test-unbound-queue.cc', |
98 'test-utils.cc', | 98 'test-utils.cc', |
99 'test-version.cc' | 99 'test-version.cc', |
| 100 'test-weakmaps.cc' |
100 ], | 101 ], |
101 'arch:arm': [ | 102 'arch:arm': [ |
102 'test-assembler-arm.cc', | 103 'test-assembler-arm.cc', |
103 'test-disasm-arm.cc' | 104 'test-disasm-arm.cc' |
104 ], | 105 ], |
105 'arch:ia32': [ | 106 'arch:ia32': [ |
106 'test-assembler-ia32.cc', | 107 'test-assembler-ia32.cc', |
107 'test-disasm-ia32.cc', | 108 'test-disasm-ia32.cc', |
108 'test-log-stack-tracer.cc' | 109 'test-log-stack-tracer.cc' |
109 ], | 110 ], |
(...skipping 26 matching lines...) Expand all Loading... |
136 # There seems to be a glitch in the way scons decides where to put | 137 # There seems to be a glitch in the way scons decides where to put |
137 # PDB files when compiling using MSVC so we specify it manually. | 138 # PDB files when compiling using MSVC so we specify it manually. |
138 # This should not affect any other platforms. | 139 # This should not affect any other platforms. |
139 object_files.append(js_files_obj) | 140 object_files.append(js_files_obj) |
140 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 141 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
141 PDB='cctest.exe.pdb') | 142 PDB='cctest.exe.pdb') |
142 | 143 |
143 | 144 |
144 program = Build() | 145 program = Build() |
145 Return('program') | 146 Return('program') |
OLD | NEW |