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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'process_android.cc', | 44 'process_android.cc', |
45 'process_linux.cc', | 45 'process_linux.cc', |
46 'process_macos.cc', | 46 'process_macos.cc', |
47 'process_unsupported.cc', | 47 'process_unsupported.cc', |
48 'process_win.cc', | 48 'process_win.cc', |
49 '../../third_party/root_certificates/root_certificates.cc', | 49 '../../third_party/root_certificates/root_certificates.cc', |
50 'root_certificates_unsupported.cc', | 50 'root_certificates_unsupported.cc', |
51 'secure_socket.h', | 51 'secure_socket.h', |
52 'secure_socket_boringssl.cc', | 52 'secure_socket_boringssl.cc', |
53 'secure_socket_boringssl.h', | 53 'secure_socket_boringssl.h', |
| 54 'secure_socket_ios.cc', |
54 'secure_socket_macos.cc', | 55 'secure_socket_macos.cc', |
55 'secure_socket_macos.h', | 56 'secure_socket_macos.h', |
56 'secure_socket_unsupported.cc', | 57 'secure_socket_unsupported.cc', |
57 'socket.cc', | 58 'socket.cc', |
58 'socket.h', | 59 'socket.h', |
59 'socket_android.cc', | 60 'socket_android.cc', |
60 'socket_android.h', | 61 'socket_android.h', |
61 'socket_linux.cc', | 62 'socket_linux.cc', |
62 'socket_linux.h', | 63 'socket_linux.h', |
63 'socket_macos.cc', | 64 'socket_macos.cc', |
64 'socket_macos.h', | 65 'socket_macos.h', |
65 'socket_unsupported.cc', | 66 'socket_unsupported.cc', |
66 'socket_win.cc', | 67 'socket_win.cc', |
67 'socket_win.h', | 68 'socket_win.h', |
68 'stdio.cc', | 69 'stdio.cc', |
69 'stdio.h', | 70 'stdio.h', |
70 'stdio_android.cc', | 71 'stdio_android.cc', |
71 'stdio_linux.cc', | 72 'stdio_linux.cc', |
72 'stdio_macos.cc', | 73 'stdio_macos.cc', |
73 'stdio_unsupported.cc', | 74 'stdio_unsupported.cc', |
74 'stdio_win.cc', | 75 'stdio_win.cc', |
75 ], | 76 ], |
76 } | 77 } |
OLD | NEW |