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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'test-log.cc', | 62 'test-log.cc', |
63 'test-log-utils.cc', | 63 'test-log-utils.cc', |
64 'test-mark-compact.cc', | 64 'test-mark-compact.cc', |
65 'test-parsing.cc', | 65 'test-parsing.cc', |
66 'test-profile-generator.cc', | 66 'test-profile-generator.cc', |
67 'test-regexp.cc', | 67 'test-regexp.cc', |
68 'test-serialize.cc', | 68 'test-serialize.cc', |
69 'test-sockets.cc', | 69 'test-sockets.cc', |
70 'test-spaces.cc', | 70 'test-spaces.cc', |
71 'test-strings.cc', | 71 'test-strings.cc', |
| 72 'test-thread-termination.cc', |
72 'test-threads.cc', | 73 'test-threads.cc', |
73 'test-thread-termination.cc', | 74 'test-type-info.cc', |
74 'test-unbound-queue.cc', | 75 'test-unbound-queue.cc', |
75 'test-utils.cc', | 76 'test-utils.cc', |
76 'test-version.cc' | 77 'test-version.cc' |
77 ], | 78 ], |
78 'arch:arm': [ | 79 'arch:arm': [ |
79 'test-assembler-arm.cc', | 80 'test-assembler-arm.cc', |
80 'test-disasm-arm.cc' | 81 'test-disasm-arm.cc' |
81 ], | 82 ], |
82 'arch:ia32': [ | 83 'arch:ia32': [ |
83 'test-assembler-ia32.cc', | 84 'test-assembler-ia32.cc', |
(...skipping 18 matching lines...) Expand all Loading... |
102 context.ApplyEnvOverrides(env) | 103 context.ApplyEnvOverrides(env) |
103 # There seems to be a glitch in the way scons decides where to put | 104 # There seems to be a glitch in the way scons decides where to put |
104 # PDB files when compiling using MSVC so we specify it manually. | 105 # PDB files when compiling using MSVC so we specify it manually. |
105 # This should not affect any other platforms. | 106 # This should not affect any other platforms. |
106 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 107 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
107 PDB='cctest.exe.pdb') | 108 PDB='cctest.exe.pdb') |
108 | 109 |
109 | 110 |
110 program = Build() | 111 program = Build() |
111 Return('program') | 112 Return('program') |
OLD | NEW |