| 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_android.h', |
| 12 'eventhandler_linux.cc', | 13 'eventhandler_linux.cc', |
| 13 'eventhandler_linux.h', | 14 'eventhandler_linux.h', |
| 14 'eventhandler_macos.cc', | 15 'eventhandler_macos.cc', |
| 15 'eventhandler_macos.h', | 16 'eventhandler_macos.h', |
| 16 'eventhandler_win.cc', | 17 'eventhandler_win.cc', |
| 17 'eventhandler_win.h', | 18 'eventhandler_win.h', |
| 18 'file_system_watcher.cc', | 19 'file_system_watcher.cc', |
| 19 'file_system_watcher.h', | 20 'file_system_watcher.h', |
| 20 'file_system_watcher_android.cc', | 21 'file_system_watcher_android.cc', |
| 21 'file_system_watcher_linux.cc', | 22 'file_system_watcher_linux.cc', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 41 'process_linux.cc', | 42 'process_linux.cc', |
| 42 'process_macos.cc', | 43 'process_macos.cc', |
| 43 'process_win.cc', | 44 'process_win.cc', |
| 44 '../../third_party/root_certificates/root_certificates.cc', | 45 '../../third_party/root_certificates/root_certificates.cc', |
| 45 'secure_socket.cc', | 46 'secure_socket.cc', |
| 46 'secure_socket.h', | 47 'secure_socket.h', |
| 47 'secure_socket_unsupported.cc', | 48 'secure_socket_unsupported.cc', |
| 48 'socket.cc', | 49 'socket.cc', |
| 49 'socket.h', | 50 'socket.h', |
| 50 'socket_android.cc', | 51 'socket_android.cc', |
| 52 'socket_android.h', |
| 51 'socket_linux.cc', | 53 'socket_linux.cc', |
| 54 'socket_linux.h', |
| 52 'socket_macos.cc', | 55 'socket_macos.cc', |
| 56 'socket_macos.h', |
| 53 'socket_win.cc', | 57 'socket_win.cc', |
| 58 'socket_win.h', |
| 54 'stdio.cc', | 59 'stdio.cc', |
| 55 'stdio.h', | 60 'stdio.h', |
| 56 'stdio_android.cc', | 61 'stdio_android.cc', |
| 57 'stdio_linux.cc', | 62 'stdio_linux.cc', |
| 58 'stdio_macos.cc', | 63 'stdio_macos.cc', |
| 59 'stdio_win.cc', | 64 'stdio_win.cc', |
| 60 ], | 65 ], |
| 61 'conditions': [ | 66 'conditions': [ |
| 62 ['dart_io_support==1', { | 67 ['dart_io_support==1', { |
| 63 'conditions': [ | 68 'conditions': [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 89 'io_service.h', | 94 'io_service.h', |
| 90 'io_service_no_ssl.cc', | 95 'io_service_no_ssl.cc', |
| 91 'io_service_no_ssl.h', | 96 'io_service_no_ssl.h', |
| 92 '../../third_party/root_certificates/root_certificates.cc', | 97 '../../third_party/root_certificates/root_certificates.cc', |
| 93 'secure_socket.cc', | 98 'secure_socket.cc', |
| 94 'secure_socket.h', | 99 'secure_socket.h', |
| 95 ], | 100 ], |
| 96 }], | 101 }], |
| 97 ], | 102 ], |
| 98 } | 103 } |
| OLD | NEW |