| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  45     'test-flags.cc', |  45     'test-flags.cc', | 
|  46     'test-func-name-inference.cc', |  46     'test-func-name-inference.cc', | 
|  47     'test-hashmap.cc', |  47     'test-hashmap.cc', | 
|  48     'test-heap.cc', |  48     'test-heap.cc', | 
|  49     'test-heap-profiler.cc', |  49     'test-heap-profiler.cc', | 
|  50     'test-list.cc', |  50     'test-list.cc', | 
|  51     'test-lock.cc', |  51     'test-lock.cc', | 
|  52     'test-log.cc', |  52     'test-log.cc', | 
|  53     'test-log-utils.cc', |  53     'test-log-utils.cc', | 
|  54     'test-mark-compact.cc', |  54     'test-mark-compact.cc', | 
 |  55     'test-parsing.cc', | 
|  55     'test-regexp.cc', |  56     'test-regexp.cc', | 
|  56     'test-serialize.cc', |  57     'test-serialize.cc', | 
|  57     'test-sockets.cc', |  58     'test-sockets.cc', | 
|  58     'test-spaces.cc', |  59     'test-spaces.cc', | 
|  59     'test-strings.cc', |  60     'test-strings.cc', | 
|  60     'test-threads.cc', |  61     'test-threads.cc', | 
|  61     'test-thread-termination.cc', |  62     'test-thread-termination.cc', | 
|  62     'test-utils.cc', |  63     'test-utils.cc', | 
|  63     'test-version.cc' |  64     'test-version.cc' | 
|  64   ], |  65   ], | 
| (...skipping 20 matching lines...) Expand all  Loading... | 
|  85   context.ApplyEnvOverrides(env) |  86   context.ApplyEnvOverrides(env) | 
|  86   # There seems to be a glitch in the way scons decides where to put |  87   # There seems to be a glitch in the way scons decides where to put | 
|  87   # PDB files when compiling using MSVC so we specify it manually. |  88   # PDB files when compiling using MSVC so we specify it manually. | 
|  88   # This should not affect any other platforms. |  89   # This should not affect any other platforms. | 
|  89   return env.Program('cctest', ['cctest.cc', cctest_files, object_files], |  90   return env.Program('cctest', ['cctest.cc', cctest_files, object_files], | 
|  90       PDB='cctest.exe.pdb') |  91       PDB='cctest.exe.pdb') | 
|  91  |  92  | 
|  92  |  93  | 
|  93 program = Build() |  94 program = Build() | 
|  94 Return('program') |  95 Return('program') | 
| OLD | NEW |