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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 'test-lock.cc', | 49 'test-lock.cc', |
50 'test-log.cc', | 50 'test-log.cc', |
51 'test-log-utils.cc', | 51 'test-log-utils.cc', |
52 'test-mark-compact.cc', | 52 'test-mark-compact.cc', |
53 'test-regexp.cc', | 53 'test-regexp.cc', |
54 'test-serialize.cc', | 54 'test-serialize.cc', |
55 'test-sockets.cc', | 55 'test-sockets.cc', |
56 'test-spaces.cc', | 56 'test-spaces.cc', |
57 'test-strings.cc', | 57 'test-strings.cc', |
58 'test-threads.cc', | 58 'test-threads.cc', |
| 59 'test-thread-termination.cc', |
59 'test-utils.cc', | 60 'test-utils.cc', |
60 'test-version.cc' | 61 'test-version.cc' |
61 ], | 62 ], |
62 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'], | 63 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'], |
63 'arch:ia32': [ | 64 'arch:ia32': [ |
64 'test-assembler-ia32.cc', | 65 'test-assembler-ia32.cc', |
65 'test-disasm-ia32.cc', | 66 'test-disasm-ia32.cc', |
66 'test-log-stack-tracer.cc' | 67 'test-log-stack-tracer.cc' |
67 ], | 68 ], |
68 'arch:x64': ['test-assembler-x64.cc', 'test-log-stack-tracer.cc'], | 69 'arch:x64': ['test-assembler-x64.cc', 'test-log-stack-tracer.cc'], |
(...skipping 11 matching lines...) Expand all Loading... |
80 context.ApplyEnvOverrides(env) | 81 context.ApplyEnvOverrides(env) |
81 # There seems to be a glitch in the way scons decides where to put | 82 # There seems to be a glitch in the way scons decides where to put |
82 # PDB files when compiling using MSVC so we specify it manually. | 83 # PDB files when compiling using MSVC so we specify it manually. |
83 # This should not affect any other platforms. | 84 # This should not affect any other platforms. |
84 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 85 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
85 PDB='cctest.exe.pdb') | 86 PDB='cctest.exe.pdb') |
86 | 87 |
87 | 88 |
88 program = Build() | 89 program = Build() |
89 Return('program') | 90 Return('program') |
OLD | NEW |