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