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 'dbg_connection.cc', |
| 12 'dbg_connection.h', |
| 13 'dbg_connection_linux.cc', |
| 14 'dbg_connection_linux.h', |
| 15 'dbg_connection_macos.cc', |
| 16 'dbg_connection_macos.h', |
| 17 'dbg_connection_win.cc', |
| 18 'dbg_connection_win.h', |
11 'directory.cc', | 19 'directory.cc', |
12 'directory.h', | 20 'directory.h', |
13 'directory_posix.cc', | 21 'directory_posix.cc', |
14 'directory_win.cc', | 22 'directory_win.cc', |
15 'eventhandler.cc', | 23 'eventhandler.cc', |
16 'eventhandler.h', | 24 'eventhandler.h', |
17 'eventhandler_linux.cc', | 25 'eventhandler_linux.cc', |
18 'eventhandler_linux.h', | 26 'eventhandler_linux.h', |
19 'eventhandler_macos.cc', | 27 'eventhandler_macos.cc', |
20 'eventhandler_macos.h', | 28 'eventhandler_macos.h', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'socket_win.cc', | 62 'socket_win.cc', |
55 'set.h', | 63 'set.h', |
56 'set_test.cc', | 64 'set_test.cc', |
57 'thread.h', | 65 'thread.h', |
58 'utils.h', | 66 'utils.h', |
59 'utils_linux.cc', | 67 'utils_linux.cc', |
60 'utils_macos.cc', | 68 'utils_macos.cc', |
61 'utils_win.cc', | 69 'utils_win.cc', |
62 ], | 70 ], |
63 } | 71 } |
OLD | NEW |