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 24 matching lines...) Expand all Loading... |
35 SOURCES = { | 35 SOURCES = { |
36 'all': [ | 36 'all': [ |
37 'gay-shortest.cc', | 37 'gay-shortest.cc', |
38 'test-accessors.cc', | 38 'test-accessors.cc', |
39 'test-alloc.cc', | 39 'test-alloc.cc', |
40 'test-api.cc', | 40 'test-api.cc', |
41 'test-ast.cc', | 41 'test-ast.cc', |
42 'test-circular-queue.cc', | 42 'test-circular-queue.cc', |
43 'test-compiler.cc', | 43 'test-compiler.cc', |
44 'test-conversions.cc', | 44 'test-conversions.cc', |
| 45 'test-cpu-profiler.cc', |
45 'test-dataflow.cc', | 46 'test-dataflow.cc', |
46 'test-debug.cc', | 47 'test-debug.cc', |
47 'test-decls.cc', | 48 'test-decls.cc', |
48 'test-diy-fp.cc', | 49 'test-diy-fp.cc', |
49 'test-double.cc', | 50 'test-double.cc', |
50 'test-fast-dtoa.cc', | 51 'test-fast-dtoa.cc', |
51 'test-flags.cc', | 52 'test-flags.cc', |
52 'test-func-name-inference.cc', | 53 'test-func-name-inference.cc', |
53 'test-hashmap.cc', | 54 'test-hashmap.cc', |
54 'test-heap.cc', | 55 'test-heap.cc', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 context.ApplyEnvOverrides(env) | 98 context.ApplyEnvOverrides(env) |
98 # There seems to be a glitch in the way scons decides where to put | 99 # There seems to be a glitch in the way scons decides where to put |
99 # PDB files when compiling using MSVC so we specify it manually. | 100 # PDB files when compiling using MSVC so we specify it manually. |
100 # This should not affect any other platforms. | 101 # This should not affect any other platforms. |
101 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 102 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
102 PDB='cctest.exe.pdb') | 103 PDB='cctest.exe.pdb') |
103 | 104 |
104 | 105 |
105 program = Build() | 106 program = Build() |
106 Return('program') | 107 Return('program') |
OLD | NEW |