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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'test-bignum-dtoa.cc', | 58 'test-bignum-dtoa.cc', |
59 'test-bignum.cc', | 59 'test-bignum.cc', |
60 'test-circular-queue.cc', | 60 'test-circular-queue.cc', |
61 'test-compiler.cc', | 61 'test-compiler.cc', |
62 'test-conversions.cc', | 62 'test-conversions.cc', |
63 'test-cpu-profiler.cc', | 63 'test-cpu-profiler.cc', |
64 'test-dataflow.cc', | 64 'test-dataflow.cc', |
65 'test-debug.cc', | 65 'test-debug.cc', |
66 'test-decls.cc', | 66 'test-decls.cc', |
67 'test-deoptimization.cc', | 67 'test-deoptimization.cc', |
| 68 'test-dictionary.cc', |
68 'test-diy-fp.cc', | 69 'test-diy-fp.cc', |
69 'test-double.cc', | 70 'test-double.cc', |
70 'test-dtoa.cc', | 71 'test-dtoa.cc', |
71 'test-fast-dtoa.cc', | 72 'test-fast-dtoa.cc', |
72 'test-fixed-dtoa.cc', | 73 'test-fixed-dtoa.cc', |
73 'test-flags.cc', | 74 'test-flags.cc', |
74 'test-func-name-inference.cc', | 75 'test-func-name-inference.cc', |
75 'test-hashmap.cc', | 76 'test-hashmap.cc', |
76 'test-heap-profiler.cc', | 77 'test-heap-profiler.cc', |
77 'test-heap.cc', | 78 'test-heap.cc', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 # There seems to be a glitch in the way scons decides where to put | 136 # There seems to be a glitch in the way scons decides where to put |
136 # PDB files when compiling using MSVC so we specify it manually. | 137 # PDB files when compiling using MSVC so we specify it manually. |
137 # This should not affect any other platforms. | 138 # This should not affect any other platforms. |
138 object_files.append(js_files_obj) | 139 object_files.append(js_files_obj) |
139 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 140 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
140 PDB='cctest.exe.pdb') | 141 PDB='cctest.exe.pdb') |
141 | 142 |
142 | 143 |
143 program = Build() | 144 program = Build() |
144 Return('program') | 145 Return('program') |
OLD | NEW |