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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'test-alloc.cc', | 55 'test-alloc.cc', |
56 'test-api.cc', | 56 'test-api.cc', |
57 'test-ast.cc', | 57 'test-ast.cc', |
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-date.cc', |
65 'test-debug.cc', | 66 'test-debug.cc', |
66 'test-decls.cc', | 67 'test-decls.cc', |
67 'test-deoptimization.cc', | 68 'test-deoptimization.cc', |
68 'test-dictionary.cc', | 69 'test-dictionary.cc', |
69 'test-diy-fp.cc', | 70 'test-diy-fp.cc', |
70 'test-double.cc', | 71 'test-double.cc', |
71 'test-dtoa.cc', | 72 'test-dtoa.cc', |
72 'test-fast-dtoa.cc', | 73 'test-fast-dtoa.cc', |
73 'test-fixed-dtoa.cc', | 74 'test-fixed-dtoa.cc', |
74 'test-flags.cc', | 75 'test-flags.cc', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 # There seems to be a glitch in the way scons decides where to put | 141 # There seems to be a glitch in the way scons decides where to put |
141 # PDB files when compiling using MSVC so we specify it manually. | 142 # PDB files when compiling using MSVC so we specify it manually. |
142 # This should not affect any other platforms. | 143 # This should not affect any other platforms. |
143 object_files.append(js_files_obj) | 144 object_files.append(js_files_obj) |
144 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 145 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
145 PDB='cctest.exe.pdb') | 146 PDB='cctest.exe.pdb') |
146 | 147 |
147 | 148 |
148 program = Build() | 149 program = Build() |
149 Return('program') | 150 Return('program') |
OLD | NEW |