| 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 'crypto.cc', | |
| 10 'crypto.h', | |
| 11 'crypto_android.cc', | |
| 12 'crypto_linux.cc', | |
| 13 'crypto_macos.cc', | |
| 14 'crypto_win.cc', | |
| 15 'eventhandler.cc', | 9 'eventhandler.cc', |
| 16 'eventhandler.h', | 10 'eventhandler.h', |
| 17 'eventhandler_android.cc', | 11 'eventhandler_android.cc', |
| 18 'eventhandler_linux.cc', | 12 'eventhandler_linux.cc', |
| 19 'eventhandler_linux.h', | 13 'eventhandler_linux.h', |
| 20 'eventhandler_macos.cc', | 14 'eventhandler_macos.cc', |
| 21 'eventhandler_macos.h', | 15 'eventhandler_macos.h', |
| 22 'eventhandler_win.cc', | 16 'eventhandler_win.cc', |
| 23 'eventhandler_win.h', | 17 'eventhandler_win.h', |
| 18 'file_system_watcher.cc', |
| 19 'file_system_watcher.h', |
| 20 'file_system_watcher_android.cc', |
| 21 'file_system_watcher_linux.cc', |
| 22 'file_system_watcher_macos.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_unsupported.cc', | 29 'io_service_unsupported.cc', |
| 30 'net/nss_memio.cc', | 30 'net/nss_memio.cc', |
| 31 'net/nss_memio.h', | 31 'net/nss_memio.h', |
| 32 'platform.cc', | 32 'platform.cc', |
| 33 'platform.h', | 33 'platform.h', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 'io_service.cc', | 71 'io_service.cc', |
| 72 'io_service.h', | 72 'io_service.h', |
| 73 'net/nss_memio.cc', | 73 'net/nss_memio.cc', |
| 74 'net/nss_memio.h', | 74 'net/nss_memio.h', |
| 75 'secure_socket.cc', | 75 'secure_socket.cc', |
| 76 'secure_socket.h', | 76 'secure_socket.h', |
| 77 ], | 77 ], |
| 78 }], | 78 }], |
| 79 ], | 79 ], |
| 80 } | 80 } |
| OLD | NEW |