| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 'socket_unsupported.cc', | 83 'socket_unsupported.cc', |
| 84 'socket_win.cc', | 84 'socket_win.cc', |
| 85 'stdio.cc', | 85 'stdio.cc', |
| 86 'stdio.h', | 86 'stdio.h', |
| 87 'stdio_android.cc', | 87 'stdio_android.cc', |
| 88 'stdio_fuchsia.cc', | 88 'stdio_fuchsia.cc', |
| 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', | |
| 94 'sync_socket.h', | |
| 95 'sync_socket_android.cc', | |
| 96 'sync_socket_fuchsia.cc', | |
| 97 'sync_socket_linux.cc', | |
| 98 'sync_socket_macos.cc', | |
| 99 'sync_socket_win.cc', | |
| 100 ], | 93 ], |
| 101 } | 94 } |
| OLD | NEW |