| 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_win.cc', | 16 'eventhandler_win.cc', |
| 17 'eventhandler_win.h', | 17 'eventhandler_win.h', |
| 18 'file_system_watcher.cc', | 18 'file_system_watcher.cc', |
| 19 'file_system_watcher.h', | 19 'file_system_watcher.h', |
| 20 'file_system_watcher_android.cc', | 20 'file_system_watcher_android.cc', |
| 21 'file_system_watcher_linux.cc', | 21 'file_system_watcher_linux.cc', |
| 22 'file_system_watcher_macos.cc', | 22 'file_system_watcher_macos.cc', |
| 23 'file_system_watcher_win.cc', | 23 'file_system_watcher_win.cc', |
| 24 'filter.cc', | 24 'filter.cc', |
| 25 'filter.h', | 25 'filter.h', |
| 26 'filter_unsupported.cc', | 26 'filter_unsupported.cc', |
| 27 'io_service.cc', | 27 'io_service.cc', |
| 28 'io_service.h', | 28 'io_service.h', |
| 29 'io_service_no_ssl.cc', |
| 30 'io_service_no_ssl.h', |
| 29 'io_service_unsupported.cc', | 31 'io_service_unsupported.cc', |
| 30 'net/nss_memio.cc', | |
| 31 'net/nss_memio.h', | |
| 32 'platform.cc', | 32 'platform.cc', |
| 33 'platform.h', | 33 'platform.h', |
| 34 'platform_android.cc', | 34 'platform_android.cc', |
| 35 'platform_linux.cc', | 35 'platform_linux.cc', |
| 36 'platform_macos.cc', | 36 'platform_macos.cc', |
| 37 'platform_win.cc', | 37 'platform_win.cc', |
| 38 'process.cc', | 38 'process.cc', |
| 39 'process.h', | 39 'process.h', |
| 40 'process_android.cc', | 40 'process_android.cc', |
| 41 'process_linux.cc', | 41 'process_linux.cc', |
| 42 'process_macos.cc', | 42 'process_macos.cc', |
| 43 'process_win.cc', | 43 'process_win.cc', |
| 44 '../../third_party/root_certificates/root_certificates.cc', |
| 44 'secure_socket.cc', | 45 'secure_socket.cc', |
| 45 'secure_socket.h', | 46 'secure_socket.h', |
| 46 'secure_socket_unsupported.cc', | 47 'secure_socket_unsupported.cc', |
| 47 'socket.cc', | 48 'socket.cc', |
| 48 'socket.h', | 49 'socket.h', |
| 49 'socket_android.cc', | 50 'socket_android.cc', |
| 50 'socket_linux.cc', | 51 'socket_linux.cc', |
| 51 'socket_macos.cc', | 52 'socket_macos.cc', |
| 52 'socket_win.cc', | 53 'socket_win.cc', |
| 53 'stdio.cc', | 54 'stdio.cc', |
| 54 'stdio.h', | 55 'stdio.h', |
| 55 'stdio_android.cc', | 56 'stdio_android.cc', |
| 56 'stdio_linux.cc', | 57 'stdio_linux.cc', |
| 57 'stdio_macos.cc', | 58 'stdio_macos.cc', |
| 58 'stdio_win.cc', | 59 'stdio_win.cc', |
| 59 ], | 60 ], |
| 60 'conditions': [ | 61 'conditions': [ |
| 61 ['dart_io_support==1', { | 62 ['dart_io_support==1', { |
| 62 'conditions': [ | 63 'conditions': [ |
| 63 ['dart_io_secure_socket==1', { | 64 ['dart_io_secure_socket==1', { |
| 64 'sources!' : [ | 65 'sources!' : [ |
| 66 'io_service_no_ssl.cc', |
| 67 'io_service_no_ssl.h', |
| 65 'secure_socket_unsupported.cc', | 68 'secure_socket_unsupported.cc', |
| 66 ], | 69 ], |
| 67 }, { # else dart_io_secure_socket == 0 | 70 }, { # else dart_io_secure_socket == 0 |
| 68 'sources!' : [ | 71 'sources!' : [ |
| 69 'net/nss_memio.cc', | 72 '../../third_party/root_certificates/root_certificates.cc', |
| 70 'net/nss_memio.h', | 73 'io_service.cc', |
| 74 'io_service.h', |
| 71 'secure_socket.cc', | 75 'secure_socket.cc', |
| 72 'secure_socket.h', | 76 'secure_socket.h', |
| 73 ], | 77 ], |
| 74 }], | 78 }], |
| 75 ], | 79 ], |
| 76 'sources!' : [ | 80 'sources!' : [ |
| 77 'filter_unsupported.cc', | 81 'filter_unsupported.cc', |
| 78 'io_service_unsupported.cc', | 82 'io_service_unsupported.cc', |
| 79 ], | 83 ], |
| 80 },{ # else dart_io_support == 0 | 84 },{ # else dart_io_support == 0 |
| 81 'sources!' : [ | 85 'sources!' : [ |
| 82 'filter.cc', | 86 'filter.cc', |
| 83 'filter.h', | 87 'filter.h', |
| 84 'io_service.cc', | 88 'io_service.cc', |
| 85 'io_service.h', | 89 'io_service.h', |
| 86 'net/nss_memio.cc', | 90 'io_service_no_ssl.cc', |
| 87 'net/nss_memio.h', | 91 'io_service_no_ssl.h', |
| 92 '../../third_party/root_certificates/root_certificates.cc', |
| 88 'secure_socket.cc', | 93 'secure_socket.cc', |
| 89 'secure_socket.h', | 94 'secure_socket.h', |
| 90 ], | 95 ], |
| 91 }], | 96 }], |
| 92 ], | 97 ], |
| 93 } | 98 } |
| OLD | NEW |