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 C++ sources for the dart:builtin and dart:io | 5 # This file contains all C++ sources for the dart:builtin and dart:io |
6 # libraries. | 6 # libraries. |
7 { | 7 { |
8 'sources': [ | 8 'sources': [ |
9 'dartutils.cc', | 9 'dartutils.cc', |
10 'dartutils.h', | 10 'dartutils.h', |
11 'directory.cc', | 11 'directory.cc', |
12 'directory.h', | 12 'directory.h', |
13 'directory_posix.cc', | 13 'directory_posix.cc', |
14 'directory_win.cc', | 14 'directory_win.cc', |
15 'eventhandler.cc', | 15 'eventhandler.cc', |
16 'eventhandler.h', | 16 'eventhandler.h', |
17 'eventhandler_linux.cc', | 17 'eventhandler_linux.cc', |
18 'eventhandler_linux.h', | 18 'eventhandler_linux.h', |
19 'eventhandler_macos.cc', | 19 'eventhandler_macos.cc', |
20 'eventhandler_macos.h', | 20 'eventhandler_macos.h', |
21 'eventhandler_win.cc', | 21 'eventhandler_win.cc', |
22 'eventhandler_win.h', | 22 'eventhandler_win.h', |
| 23 'extensions.h', |
| 24 'extensions_linux.cc', |
| 25 'extensions_macos.cc', |
| 26 'extensions_win.cc', |
23 'file.cc', | 27 'file.cc', |
24 'file.h', | 28 'file.h', |
25 'file_linux.cc', | 29 'file_linux.cc', |
26 'file_macos.cc', | 30 'file_macos.cc', |
27 'file_win.cc', | 31 'file_win.cc', |
28 'file_test.cc', | 32 'file_test.cc', |
29 'fdutils.h', | 33 'fdutils.h', |
30 'fdutils_linux.cc', | 34 'fdutils_linux.cc', |
31 'fdutils_macos.cc', | 35 'fdutils_macos.cc', |
32 'hashmap.cc', | 36 'hashmap.cc', |
(...skipping 14 matching lines...) Expand all Loading... |
47 'socket_linux.cc', | 51 'socket_linux.cc', |
48 'socket_macos.cc', | 52 'socket_macos.cc', |
49 'socket_win.cc', | 53 'socket_win.cc', |
50 'set.h', | 54 'set.h', |
51 'set_test.cc', | 55 'set_test.cc', |
52 'thread.h', | 56 'thread.h', |
53 'thread_pool.cc', | 57 'thread_pool.cc', |
54 'thread_pool_test.cc', | 58 'thread_pool_test.cc', |
55 ], | 59 ], |
56 } | 60 } |
OLD | NEW |