| 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 'common.cc', | 9 'common.cc', |
| 10 'crypto.cc', | 10 'crypto.cc', |
| 11 'crypto_android.cc', | 11 'crypto_android.cc', |
| 12 'crypto_linux.cc', | 12 'crypto_linux.cc', |
| 13 'crypto_macos.cc', | 13 'crypto_macos.cc', |
| 14 'crypto_win.cc', | 14 'crypto_win.cc', |
| 15 'eventhandler.cc', | 15 'eventhandler.cc', |
| 16 'eventhandler.h', | 16 'eventhandler.h', |
| 17 'eventhandler_android.cc', | 17 'eventhandler_android.cc', |
| 18 'eventhandler_linux.cc', | 18 'eventhandler_linux.cc', |
| 19 'eventhandler_linux.h', | 19 'eventhandler_linux.h', |
| 20 'eventhandler_macos.cc', | 20 'eventhandler_macos.cc', |
| 21 'eventhandler_macos.h', | 21 'eventhandler_macos.h', |
| 22 'eventhandler_win.cc', | 22 'eventhandler_win.cc', |
| 23 'eventhandler_win.h', | 23 'eventhandler_win.h', |
| 24 'net/nss_memio.cc', |
| 25 'net/nss_memio.h', |
| 24 'platform.cc', | 26 'platform.cc', |
| 25 'platform.h', | 27 'platform.h', |
| 26 'platform_android.cc', | 28 'platform_android.cc', |
| 27 'platform_linux.cc', | 29 'platform_linux.cc', |
| 28 'platform_macos.cc', | 30 'platform_macos.cc', |
| 29 'platform_win.cc', | 31 'platform_win.cc', |
| 30 'process.cc', | 32 'process.cc', |
| 31 'process.h', | 33 'process.h', |
| 32 'process_android.cc', | 34 'process_android.cc', |
| 33 'process_linux.cc', | 35 'process_linux.cc', |
| 34 'process_macos.cc', | 36 'process_macos.cc', |
| 35 'process_win.cc', | 37 'process_win.cc', |
| 36 'socket.cc', | 38 'socket.cc', |
| 37 'socket.h', | 39 'socket.h', |
| 38 'socket_android.cc', | 40 'socket_android.cc', |
| 39 'socket_linux.cc', | 41 'socket_linux.cc', |
| 40 'socket_macos.cc', | 42 'socket_macos.cc', |
| 41 'socket_win.cc', | 43 'socket_win.cc', |
| 44 'tls_socket.cc', |
| 45 'tls_socket.h', |
| 42 ], | 46 ], |
| 43 } | 47 } |
| OLD | NEW |