| 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-accessors.cc', | 37 'test-accessors.cc', |
| 38 'test-alloc.cc', | 38 'test-alloc.cc', |
| 39 'test-api.cc', | 39 'test-api.cc', |
| 40 'test-ast.cc', | 40 'test-ast.cc', |
| 41 'test-compiler.cc', | 41 'test-compiler.cc', |
| 42 'test-conversions.cc', | 42 'test-conversions.cc', |
| 43 'test-debug.cc', | 43 'test-debug.cc', |
| 44 'test-decls.cc', | 44 'test-decls.cc', |
| 45 'test-diy_fp.cc', |
| 46 'test-double.cc', |
| 45 'test-flags.cc', | 47 'test-flags.cc', |
| 46 'test-func-name-inference.cc', | 48 'test-func-name-inference.cc', |
| 49 'test-grisu3.cc', |
| 47 'test-hashmap.cc', | 50 'test-hashmap.cc', |
| 48 'test-heap.cc', | 51 'test-heap.cc', |
| 49 'test-heap-profiler.cc', | 52 'test-heap-profiler.cc', |
| 50 'test-list.cc', | 53 'test-list.cc', |
| 51 'test-lock.cc', | 54 'test-lock.cc', |
| 52 'test-log.cc', | 55 'test-log.cc', |
| 53 'test-log-utils.cc', | 56 'test-log-utils.cc', |
| 54 'test-mark-compact.cc', | 57 'test-mark-compact.cc', |
| 55 'test-parsing.cc', | 58 'test-parsing.cc', |
| 56 'test-regexp.cc', | 59 'test-regexp.cc', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 context.ApplyEnvOverrides(env) | 93 context.ApplyEnvOverrides(env) |
| 91 # There seems to be a glitch in the way scons decides where to put | 94 # There seems to be a glitch in the way scons decides where to put |
| 92 # PDB files when compiling using MSVC so we specify it manually. | 95 # PDB files when compiling using MSVC so we specify it manually. |
| 93 # This should not affect any other platforms. | 96 # This should not affect any other platforms. |
| 94 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 97 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |
| 95 PDB='cctest.exe.pdb') | 98 PDB='cctest.exe.pdb') |
| 96 | 99 |
| 97 | 100 |
| 98 program = Build() | 101 program = Build() |
| 99 Return('program') | 102 Return('program') |
| OLD | NEW |