| 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', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'stdio_linux.cc', | 89 'stdio_linux.cc', |
| 90 'stdio_macos.cc', | 90 'stdio_macos.cc', |
| 91 'stdio_unsupported.cc', | 91 'stdio_unsupported.cc', |
| 92 'stdio_win.cc', | 92 'stdio_win.cc', |
| 93 'sync_socket.cc', | 93 'sync_socket.cc', |
| 94 'sync_socket.h', | 94 'sync_socket.h', |
| 95 'sync_socket_android.cc', | 95 'sync_socket_android.cc', |
| 96 'sync_socket_fuchsia.cc', | 96 'sync_socket_fuchsia.cc', |
| 97 'sync_socket_linux.cc', | 97 'sync_socket_linux.cc', |
| 98 'sync_socket_macos.cc', | 98 'sync_socket_macos.cc', |
| 99 'sync_socket_unsupported.cc', |
| 99 'sync_socket_win.cc', | 100 'sync_socket_win.cc', |
| 100 ], | 101 ], |
| 101 } | 102 } |
| OLD | NEW |