| OLD | NEW | 
|---|
| 1 # Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file | 
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a | 
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. | 
| 4 | 4 | 
| 5 # This file contains all sources (vm and tests) for the dart virtual machine. | 5 # This file contains all sources (vm and tests) for the dart virtual machine. | 
| 6 # Unit test files need to have a '_test' suffix appended to the name. | 6 # Unit test files need to have a '_test' suffix appended to the name. | 
| 7 { | 7 { | 
| 8   'sources': [ | 8   'sources': [ | 
| 9     # | 9     # | 
| 10     # Dart sources. | 10     # Dart sources. | 
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 50     'eventhandler_win.h', | 50     'eventhandler_win.h', | 
| 51     'file.cc', | 51     'file.cc', | 
| 52     'file.h', | 52     'file.h', | 
| 53     'file_linux.cc', | 53     'file_linux.cc', | 
| 54     'file_macos.cc', | 54     'file_macos.cc', | 
| 55     'file_win.cc', | 55     'file_win.cc', | 
| 56     'file_test.cc', | 56     'file_test.cc', | 
| 57     'fdutils.h', | 57     'fdutils.h', | 
| 58     'fdutils_linux.cc', | 58     'fdutils_linux.cc', | 
| 59     'fdutils_macos.cc', | 59     'fdutils_macos.cc', | 
|  | 60     'hashmap.cc', | 
|  | 61     'hashmap.h', | 
|  | 62     'hashmap_test.cc', | 
| 60     'platform.cc', | 63     'platform.cc', | 
| 61     'platform.h', | 64     'platform.h', | 
| 62     'platform_linux.cc', | 65     'platform_linux.cc', | 
| 63     'platform_macos.cc', | 66     'platform_macos.cc', | 
| 64     'platform_win.cc', | 67     'platform_win.cc', | 
| 65     'process.cc', | 68     'process.cc', | 
| 66     'process.h', | 69     'process.h', | 
| 67     'process_linux.cc', | 70     'process_linux.cc', | 
| 68     'process_macos.cc', | 71     'process_macos.cc', | 
| 69     'process_win.cc', | 72     'process_win.cc', | 
| 70     'socket.cc', | 73     'socket.cc', | 
| 71     'socket.h', | 74     'socket.h', | 
| 72     'socket_linux.cc', | 75     'socket_linux.cc', | 
| 73     'socket_macos.cc', | 76     'socket_macos.cc', | 
| 74     'socket_win.cc', | 77     'socket_win.cc', | 
| 75     'set.h', | 78     'set.h', | 
| 76     'set_test.cc', | 79     'set_test.cc', | 
| 77     'thread.h', | 80     'thread.h', | 
| 78     'thread_pool.cc', | 81     'thread_pool.cc', | 
| 79     'thread_pool_linux.cc', | 82     'thread_pool_linux.cc', | 
| 80     'thread_pool_linux.h', | 83     'thread_pool_linux.h', | 
| 81     'thread_pool_macos.cc', | 84     'thread_pool_macos.cc', | 
| 82     'thread_pool_macos.h', | 85     'thread_pool_macos.h', | 
| 83     'thread_pool_test.cc', | 86     'thread_pool_test.cc', | 
| 84     'thread_pool_win.cc', | 87     'thread_pool_win.cc', | 
| 85     'thread_pool_win.h', | 88     'thread_pool_win.h', | 
| 86   ], | 89   ], | 
| 87 } | 90 } | 
| OLD | NEW | 
|---|