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 'test-alloc.cc', | 37 'test-alloc.cc', |
38 'test-api.cc', | 38 'test-api.cc', |
39 'test-ast.cc', | 39 'test-ast.cc', |
40 'test-compiler.cc', | 40 'test-compiler.cc', |
41 'test-conversions.cc', | 41 'test-conversions.cc', |
42 'test-debug.cc', | 42 'test-debug.cc', |
43 'test-decls.cc', | 43 'test-decls.cc', |
44 'test-flags.cc', | 44 'test-flags.cc', |
| 45 'test-func-name-inference.cc', |
45 'test-hashmap.cc', | 46 'test-hashmap.cc', |
46 'test-heap.cc', | 47 'test-heap.cc', |
47 'test-list.cc', | 48 'test-list.cc', |
48 'test-lock.cc', | 49 'test-lock.cc', |
49 'test-mark-compact.cc', | 50 'test-mark-compact.cc', |
50 'test-regexp.cc', | 51 'test-regexp.cc', |
51 'test-serialize.cc', | 52 'test-serialize.cc', |
52 'test-sockets.cc', | 53 'test-sockets.cc', |
53 'test-spaces.cc', | 54 'test-spaces.cc', |
54 'test-strings.cc', | 55 'test-strings.cc', |
(...skipping 20 matching lines...) Expand all Loading... |
75 context.ApplyEnvOverrides(env) | 76 context.ApplyEnvOverrides(env) |
76 # There seems to be a glitch in the way scons decides where to put | 77 # There seems to be a glitch in the way scons decides where to put |
77 # PDB files when compiling using MSVC so we specify it manually. | 78 # PDB files when compiling using MSVC so we specify it manually. |
78 # This should not affect any other platforms. | 79 # This should not affect any other platforms. |
79 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 80 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
80 PDB='cctest.exe.pdb') | 81 PDB='cctest.exe.pdb') |
81 | 82 |
82 | 83 |
83 program = Build() | 84 program = Build() |
84 Return('program') | 85 Return('program') |
OLD | NEW |