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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 'test-grisu3.cc', | 51 'test-grisu3.cc', |
52 'test-hashmap.cc', | 52 'test-hashmap.cc', |
53 'test-heap.cc', | 53 'test-heap.cc', |
54 'test-heap-profiler.cc', | 54 'test-heap-profiler.cc', |
55 'test-list.cc', | 55 'test-list.cc', |
56 'test-lock.cc', | 56 'test-lock.cc', |
57 'test-log.cc', | 57 'test-log.cc', |
58 'test-log-utils.cc', | 58 'test-log-utils.cc', |
59 'test-mark-compact.cc', | 59 'test-mark-compact.cc', |
60 'test-parsing.cc', | 60 'test-parsing.cc', |
| 61 'test-profile-generator.cc', |
61 'test-regexp.cc', | 62 'test-regexp.cc', |
62 'test-serialize.cc', | 63 'test-serialize.cc', |
63 'test-sockets.cc', | 64 'test-sockets.cc', |
64 'test-spaces.cc', | 65 'test-spaces.cc', |
65 'test-strings.cc', | 66 'test-strings.cc', |
66 'test-threads.cc', | 67 'test-threads.cc', |
67 'test-thread-termination.cc', | 68 'test-thread-termination.cc', |
68 'test-utils.cc', | 69 'test-utils.cc', |
69 'test-version.cc' | 70 'test-version.cc' |
70 ], | 71 ], |
(...skipping 24 matching lines...) Expand all Loading... |
95 context.ApplyEnvOverrides(env) | 96 context.ApplyEnvOverrides(env) |
96 # There seems to be a glitch in the way scons decides where to put | 97 # There seems to be a glitch in the way scons decides where to put |
97 # PDB files when compiling using MSVC so we specify it manually. | 98 # PDB files when compiling using MSVC so we specify it manually. |
98 # This should not affect any other platforms. | 99 # This should not affect any other platforms. |
99 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 100 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
100 PDB='cctest.exe.pdb') | 101 PDB='cctest.exe.pdb') |
101 | 102 |
102 | 103 |
103 program = Build() | 104 program = Build() |
104 Return('program') | 105 Return('program') |
OLD | NEW |