| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'test-bignum-dtoa.cc', | 44 'test-bignum-dtoa.cc', |
| 45 'test-bignum.cc', | 45 'test-bignum.cc', |
| 46 'test-circular-queue.cc', | 46 'test-circular-queue.cc', |
| 47 'test-compiler.cc', | 47 'test-compiler.cc', |
| 48 'test-conversions.cc', | 48 'test-conversions.cc', |
| 49 'test-cpu-profiler.cc', | 49 'test-cpu-profiler.cc', |
| 50 'test-dataflow.cc', | 50 'test-dataflow.cc', |
| 51 'test-debug.cc', | 51 'test-debug.cc', |
| 52 'test-decls.cc', | 52 'test-decls.cc', |
| 53 'test-deoptimization.cc', | 53 'test-deoptimization.cc', |
| 54 'test-dictionary.cc', |
| 54 'test-diy-fp.cc', | 55 'test-diy-fp.cc', |
| 55 'test-double.cc', | 56 'test-double.cc', |
| 56 'test-dtoa.cc', | 57 'test-dtoa.cc', |
| 57 'test-fast-dtoa.cc', | 58 'test-fast-dtoa.cc', |
| 58 'test-fixed-dtoa.cc', | 59 'test-fixed-dtoa.cc', |
| 59 'test-flags.cc', | 60 'test-flags.cc', |
| 60 'test-func-name-inference.cc', | 61 'test-func-name-inference.cc', |
| 61 'test-hashmap.cc', | 62 'test-hashmap.cc', |
| 62 'test-heap-profiler.cc', | 63 'test-heap-profiler.cc', |
| 63 'test-heap.cc', | 64 'test-heap.cc', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 context.ApplyEnvOverrides(env) | 113 context.ApplyEnvOverrides(env) |
| 113 # There seems to be a glitch in the way scons decides where to put | 114 # There seems to be a glitch in the way scons decides where to put |
| 114 # PDB files when compiling using MSVC so we specify it manually. | 115 # PDB files when compiling using MSVC so we specify it manually. |
| 115 # This should not affect any other platforms. | 116 # This should not affect any other platforms. |
| 116 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 117 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
| 117 PDB='cctest.exe.pdb') | 118 PDB='cctest.exe.pdb') |
| 118 | 119 |
| 119 | 120 |
| 120 program = Build() | 121 program = Build() |
| 121 Return('program') | 122 Return('program') |
| OLD | NEW |