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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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-threads.cc', | 72 'test-threads.cc', |
73 'test-thread-termination.cc', | 73 'test-thread-termination.cc', |
| 74 'test-unbound-queue.cc', |
74 'test-utils.cc', | 75 'test-utils.cc', |
75 'test-version.cc' | 76 'test-version.cc' |
76 ], | 77 ], |
77 'arch:arm': [ | 78 'arch:arm': [ |
78 'test-assembler-arm.cc', | 79 'test-assembler-arm.cc', |
79 'test-disasm-arm.cc' | 80 'test-disasm-arm.cc' |
80 ], | 81 ], |
81 'arch:ia32': [ | 82 'arch:ia32': [ |
82 'test-assembler-ia32.cc', | 83 'test-assembler-ia32.cc', |
83 'test-disasm-ia32.cc', | 84 'test-disasm-ia32.cc', |
(...skipping 17 matching lines...) Expand all Loading... |
101 context.ApplyEnvOverrides(env) | 102 context.ApplyEnvOverrides(env) |
102 # There seems to be a glitch in the way scons decides where to put | 103 # There seems to be a glitch in the way scons decides where to put |
103 # PDB files when compiling using MSVC so we specify it manually. | 104 # PDB files when compiling using MSVC so we specify it manually. |
104 # This should not affect any other platforms. | 105 # This should not affect any other platforms. |
105 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 106 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
106 PDB='cctest.exe.pdb') | 107 PDB='cctest.exe.pdb') |
107 | 108 |
108 | 109 |
109 program = Build() | 110 program = Build() |
110 Return('program') | 111 Return('program') |
OLD | NEW |