| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 # This file contains some C++ sources for the dart:io library. The other | |
| 6 # implementation files are in builtin_impl_sources.gypi. | |
| 7 { | |
| 8 'sources': [ | |
| 9 'eventhandler.cc', | |
| 10 'eventhandler.h', | |
| 11 'eventhandler_android.cc', | |
| 12 'eventhandler_android.h', | |
| 13 'eventhandler_fuchsia.cc', | |
| 14 'eventhandler_fuchsia.h', | |
| 15 'eventhandler_linux.cc', | |
| 16 'eventhandler_linux.h', | |
| 17 'eventhandler_macos.cc', | |
| 18 'eventhandler_macos.h', | |
| 19 'eventhandler_unsupported.cc', | |
| 20 'eventhandler_win.cc', | |
| 21 'eventhandler_win.h', | |
| 22 'file_system_watcher.cc', | |
| 23 'file_system_watcher.h', | |
| 24 'file_system_watcher_android.cc', | |
| 25 'file_system_watcher_fuchsia.cc', | |
| 26 'file_system_watcher_linux.cc', | |
| 27 'file_system_watcher_macos.cc', | |
| 28 'file_system_watcher_unsupported.cc', | |
| 29 'file_system_watcher_win.cc', | |
| 30 'filter.cc', | |
| 31 'filter.h', | |
| 32 'filter_unsupported.cc', | |
| 33 'io_service.cc', | |
| 34 'io_service.h', | |
| 35 'io_service_no_ssl.cc', | |
| 36 'io_service_no_ssl.h', | |
| 37 'io_service_unsupported.cc', | |
| 38 'platform.cc', | |
| 39 'platform.h', | |
| 40 'platform_android.cc', | |
| 41 'platform_fuchsia.cc', | |
| 42 'platform_linux.cc', | |
| 43 'platform_macos.cc', | |
| 44 'platform_unsupported.cc', | |
| 45 'platform_win.cc', | |
| 46 'process.cc', | |
| 47 'process.h', | |
| 48 'process_android.cc', | |
| 49 'process_fuchsia.cc', | |
| 50 'process_linux.cc', | |
| 51 'process_macos.cc', | |
| 52 'process_unsupported.cc', | |
| 53 'process_win.cc', | |
| 54 'reference_counting.h', | |
| 55 'root_certificates_unsupported.cc', | |
| 56 'secure_socket_filter.cc', | |
| 57 'secure_socket_filter.h', | |
| 58 'secure_socket_unsupported.cc', | |
| 59 'secure_socket_utils.cc', | |
| 60 'secure_socket_utils.h', | |
| 61 'security_context.cc', | |
| 62 'security_context.h', | |
| 63 'security_context_android.cc', | |
| 64 'security_context_fuchsia.cc', | |
| 65 'security_context_linux.cc', | |
| 66 'security_context_macos.cc', | |
| 67 'security_context_win.cc', | |
| 68 'socket.cc', | |
| 69 'socket.h', | |
| 70 'socket_android.cc', | |
| 71 'socket_base.cc', | |
| 72 'socket_base.h', | |
| 73 'socket_base_android.cc', | |
| 74 'socket_base_android.h', | |
| 75 'socket_base_fuchsia.cc', | |
| 76 'socket_base_fuchsia.h', | |
| 77 'socket_base_linux.cc', | |
| 78 'socket_base_linux.h', | |
| 79 'socket_base_macos.cc', | |
| 80 'socket_base_macos.h', | |
| 81 'socket_base_unsupported.cc', | |
| 82 'socket_base_win.cc', | |
| 83 'socket_base_win.h', | |
| 84 'socket_fuchsia.cc', | |
| 85 'socket_linux.cc', | |
| 86 'socket_macos.cc', | |
| 87 'socket_unsupported.cc', | |
| 88 'socket_win.cc', | |
| 89 'stdio.cc', | |
| 90 'stdio.h', | |
| 91 'stdio_android.cc', | |
| 92 'stdio_fuchsia.cc', | |
| 93 'stdio_linux.cc', | |
| 94 'stdio_macos.cc', | |
| 95 'stdio_unsupported.cc', | |
| 96 'stdio_win.cc', | |
| 97 'sync_socket.cc', | |
| 98 'sync_socket.h', | |
| 99 'sync_socket_android.cc', | |
| 100 'sync_socket_fuchsia.cc', | |
| 101 'sync_socket_linux.cc', | |
| 102 'sync_socket_macos.cc', | |
| 103 'sync_socket_unsupported.cc', | |
| 104 'sync_socket_win.cc', | |
| 105 ], | |
| 106 } | |
| OLD | NEW |