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 some C++ sources for the dart:io library. The other | 5 # This file contains some C++ sources for the dart:io library. The other |
6 # implementation files are in builtin_impl_sources.gypi. | 6 # implementation files are in builtin_impl_sources.gypi. |
7 io_impl_sources = [ | 7 io_impl_sources = [ |
8 "eventhandler.cc", | 8 "eventhandler.cc", |
9 "eventhandler.h", | 9 "eventhandler.h", |
10 "eventhandler_android.cc", | 10 "eventhandler_android.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
23 "file_system_watcher_fuchsia.cc", | 23 "file_system_watcher_fuchsia.cc", |
24 "file_system_watcher_linux.cc", | 24 "file_system_watcher_linux.cc", |
25 "file_system_watcher_macos.cc", | 25 "file_system_watcher_macos.cc", |
26 "file_system_watcher_win.cc", | 26 "file_system_watcher_win.cc", |
27 "filter.cc", | 27 "filter.cc", |
28 "filter.h", | 28 "filter.h", |
29 "io_service.cc", | 29 "io_service.cc", |
30 "io_service.h", | 30 "io_service.h", |
31 "io_service_no_ssl.cc", | 31 "io_service_no_ssl.cc", |
32 "io_service_no_ssl.h", | 32 "io_service_no_ssl.h", |
| 33 "namespace.cc", |
| 34 "namespace.h", |
| 35 "namespace_android.cc", |
| 36 "namespace_fuchsia.cc", |
| 37 "namespace_linux.cc", |
| 38 "namespace_macos.cc", |
| 39 "namespace_win.cc", |
33 "platform.cc", | 40 "platform.cc", |
34 "platform.h", | 41 "platform.h", |
35 "platform_android.cc", | 42 "platform_android.cc", |
36 "platform_fuchsia.cc", | 43 "platform_fuchsia.cc", |
37 "platform_linux.cc", | 44 "platform_linux.cc", |
38 "platform_macos.cc", | 45 "platform_macos.cc", |
39 "platform_win.cc", | 46 "platform_win.cc", |
40 "process.cc", | 47 "process.cc", |
41 "process.h", | 48 "process.h", |
42 "process_android.cc", | 49 "process_android.cc", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "stdio_macos.cc", | 92 "stdio_macos.cc", |
86 "stdio_win.cc", | 93 "stdio_win.cc", |
87 "sync_socket.cc", | 94 "sync_socket.cc", |
88 "sync_socket.h", | 95 "sync_socket.h", |
89 "sync_socket_android.cc", | 96 "sync_socket_android.cc", |
90 "sync_socket_fuchsia.cc", | 97 "sync_socket_fuchsia.cc", |
91 "sync_socket_linux.cc", | 98 "sync_socket_linux.cc", |
92 "sync_socket_macos.cc", | 99 "sync_socket_macos.cc", |
93 "sync_socket_win.cc", | 100 "sync_socket_win.cc", |
94 ] | 101 ] |
OLD | NEW |