| 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 { | 7 { |
| 8 'sources': [ | 8 'sources': [ |
| 9 'eventhandler.cc', | 9 'eventhandler.cc', |
| 10 'eventhandler.h', | 10 'eventhandler.h', |
| 11 'eventhandler_android.cc', | 11 'eventhandler_android.cc', |
| 12 'eventhandler_linux.cc', | 12 'eventhandler_linux.cc', |
| 13 'eventhandler_linux.h', | 13 'eventhandler_linux.h', |
| 14 'eventhandler_macos.cc', | 14 'eventhandler_macos.cc', |
| 15 'eventhandler_macos.h', | 15 'eventhandler_macos.h', |
| 16 'eventhandler_openbsd.cc', |
| 17 'eventhandler_openbsd.h', |
| 16 'eventhandler_win.cc', | 18 'eventhandler_win.cc', |
| 17 'eventhandler_win.h', | 19 'eventhandler_win.h', |
| 18 'file_system_watcher.cc', | 20 'file_system_watcher.cc', |
| 19 'file_system_watcher.h', | 21 'file_system_watcher.h', |
| 20 'file_system_watcher_android.cc', | 22 'file_system_watcher_android.cc', |
| 21 'file_system_watcher_linux.cc', | 23 'file_system_watcher_linux.cc', |
| 22 'file_system_watcher_macos.cc', | 24 'file_system_watcher_macos.cc', |
| 25 'file_system_watcher_openbsd.cc', |
| 23 'file_system_watcher_win.cc', | 26 'file_system_watcher_win.cc', |
| 24 'filter.cc', | 27 'filter.cc', |
| 25 'filter.h', | 28 'filter.h', |
| 26 'filter_unsupported.cc', | 29 'filter_unsupported.cc', |
| 27 'io_service.cc', | 30 'io_service.cc', |
| 28 'io_service.h', | 31 'io_service.h', |
| 29 'io_service_no_ssl.cc', | 32 'io_service_no_ssl.cc', |
| 30 'io_service_no_ssl.h', | 33 'io_service_no_ssl.h', |
| 31 'io_service_unsupported.cc', | 34 'io_service_unsupported.cc', |
| 32 'platform.cc', | 35 'platform.cc', |
| 33 'platform.h', | 36 'platform.h', |
| 34 'platform_android.cc', | 37 'platform_android.cc', |
| 35 'platform_linux.cc', | 38 'platform_linux.cc', |
| 36 'platform_macos.cc', | 39 'platform_macos.cc', |
| 40 'platform_openbsd.cc', |
| 37 'platform_win.cc', | 41 'platform_win.cc', |
| 38 'process.cc', | 42 'process.cc', |
| 39 'process.h', | 43 'process.h', |
| 40 'process_android.cc', | 44 'process_android.cc', |
| 41 'process_linux.cc', | 45 'process_linux.cc', |
| 42 'process_macos.cc', | 46 'process_macos.cc', |
| 47 'process_openbsd.cc', |
| 43 'process_win.cc', | 48 'process_win.cc', |
| 44 '../../third_party/root_certificates/root_certificates.cc', | 49 '../../third_party/root_certificates/root_certificates.cc', |
| 45 'secure_socket.cc', | 50 'secure_socket.cc', |
| 46 'secure_socket.h', | 51 'secure_socket.h', |
| 47 'secure_socket_unsupported.cc', | 52 'secure_socket_unsupported.cc', |
| 48 'socket.cc', | 53 'socket.cc', |
| 49 'socket.h', | 54 'socket.h', |
| 50 'socket_android.cc', | 55 'socket_android.cc', |
| 51 'socket_linux.cc', | 56 'socket_linux.cc', |
| 52 'socket_macos.cc', | 57 'socket_macos.cc', |
| 58 'socket_openbsd.cc', |
| 53 'socket_win.cc', | 59 'socket_win.cc', |
| 54 'stdio.cc', | 60 'stdio.cc', |
| 55 'stdio.h', | 61 'stdio.h', |
| 56 'stdio_android.cc', | 62 'stdio_android.cc', |
| 57 'stdio_linux.cc', | 63 'stdio_linux.cc', |
| 58 'stdio_macos.cc', | 64 'stdio_macos.cc', |
| 65 'stdio_openbsd.cc', |
| 59 'stdio_win.cc', | 66 'stdio_win.cc', |
| 60 ], | 67 ], |
| 61 'conditions': [ | 68 'conditions': [ |
| 62 ['dart_io_support==1', { | 69 ['dart_io_support==1', { |
| 63 'conditions': [ | 70 'conditions': [ |
| 64 ['dart_io_secure_socket==1', { | 71 ['dart_io_secure_socket==1', { |
| 65 'sources!' : [ | 72 'sources!' : [ |
| 66 'io_service_no_ssl.cc', | 73 'io_service_no_ssl.cc', |
| 67 'io_service_no_ssl.h', | 74 'io_service_no_ssl.h', |
| 68 'secure_socket_unsupported.cc', | 75 'secure_socket_unsupported.cc', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 89 'io_service.h', | 96 'io_service.h', |
| 90 'io_service_no_ssl.cc', | 97 'io_service_no_ssl.cc', |
| 91 'io_service_no_ssl.h', | 98 'io_service_no_ssl.h', |
| 92 '../../third_party/root_certificates/root_certificates.cc', | 99 '../../third_party/root_certificates/root_certificates.cc', |
| 93 'secure_socket.cc', | 100 'secure_socket.cc', |
| 94 'secure_socket.h', | 101 'secure_socket.h', |
| 95 ], | 102 ], |
| 96 }], | 103 }], |
| 97 ], | 104 ], |
| 98 } | 105 } |
| OLD | NEW |