| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 'test-fast-dtoa.cc', | 57 'test-fast-dtoa.cc', |
| 58 'test-fixed-dtoa.cc', | 58 'test-fixed-dtoa.cc', |
| 59 'test-flags.cc', | 59 'test-flags.cc', |
| 60 'test-func-name-inference.cc', | 60 'test-func-name-inference.cc', |
| 61 'test-hashmap.cc', | 61 'test-hashmap.cc', |
| 62 'test-heap-profiler.cc', | 62 'test-heap-profiler.cc', |
| 63 'test-heap.cc', | 63 'test-heap.cc', |
| 64 'test-list.cc', | 64 'test-list.cc', |
| 65 'test-liveedit.cc', | 65 'test-liveedit.cc', |
| 66 'test-lock.cc', | 66 'test-lock.cc', |
| 67 'test-lockers.cc', | |
| 68 'test-log-utils.cc', | 67 'test-log-utils.cc', |
| 69 'test-log.cc', | 68 'test-log.cc', |
| 70 'test-mark-compact.cc', | 69 'test-mark-compact.cc', |
| 71 'test-parsing.cc', | 70 'test-parsing.cc', |
| 72 'test-platform-tls.cc', | 71 'test-platform-tls.cc', |
| 73 'test-profile-generator.cc', | 72 'test-profile-generator.cc', |
| 74 'test-regexp.cc', | 73 'test-regexp.cc', |
| 75 'test-reloc-info.cc', | 74 'test-reloc-info.cc', |
| 76 'test-serialize.cc', | 75 'test-serialize.cc', |
| 77 'test-sockets.cc', | 76 'test-sockets.cc', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 context.ApplyEnvOverrides(env) | 111 context.ApplyEnvOverrides(env) |
| 113 # There seems to be a glitch in the way scons decides where to put | 112 # 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. | 113 # PDB files when compiling using MSVC so we specify it manually. |
| 115 # This should not affect any other platforms. | 114 # This should not affect any other platforms. |
| 116 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 115 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
| 117 PDB='cctest.exe.pdb') | 116 PDB='cctest.exe.pdb') |
| 118 | 117 |
| 119 | 118 |
| 120 program = Build() | 119 program = Build() |
| 121 Return('program') | 120 Return('program') |
| OLD | NEW |