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 29 matching lines...) Expand all Loading... |
40 'platform_unsupported.cc', | 40 'platform_unsupported.cc', |
41 'platform_win.cc', | 41 'platform_win.cc', |
42 'process.cc', | 42 'process.cc', |
43 'process.h', | 43 'process.h', |
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 'reference_counting.h', | 49 'reference_counting.h', |
50 '../../third_party/root_certificates/root_certificates.cc', | |
51 'root_certificates_unsupported.cc', | 50 'root_certificates_unsupported.cc', |
52 'secure_socket.h', | 51 'secure_socket.h', |
53 'secure_socket_boringssl.cc', | 52 'secure_socket_boringssl.cc', |
54 'secure_socket_boringssl.h', | 53 'secure_socket_boringssl.h', |
55 'secure_socket_ios.cc', | 54 'secure_socket_ios.cc', |
56 'secure_socket_ios.h', | 55 'secure_socket_ios.h', |
57 'secure_socket_macos.cc', | 56 'secure_socket_macos.cc', |
58 'secure_socket_macos.h', | 57 'secure_socket_macos.h', |
59 'secure_socket_unsupported.cc', | 58 'secure_socket_unsupported.cc', |
60 'socket.cc', | 59 'socket.cc', |
61 'socket.h', | 60 'socket.h', |
62 'socket_android.cc', | 61 'socket_android.cc', |
63 'socket_android.h', | 62 'socket_android.h', |
64 'socket_linux.cc', | 63 'socket_linux.cc', |
65 'socket_linux.h', | 64 'socket_linux.h', |
66 'socket_macos.cc', | 65 'socket_macos.cc', |
67 'socket_macos.h', | 66 'socket_macos.h', |
68 'socket_unsupported.cc', | 67 'socket_unsupported.cc', |
69 'socket_win.cc', | 68 'socket_win.cc', |
70 'socket_win.h', | 69 'socket_win.h', |
71 'stdio.cc', | 70 'stdio.cc', |
72 'stdio.h', | 71 'stdio.h', |
73 'stdio_android.cc', | 72 'stdio_android.cc', |
74 'stdio_linux.cc', | 73 'stdio_linux.cc', |
75 'stdio_macos.cc', | 74 'stdio_macos.cc', |
76 'stdio_unsupported.cc', | 75 'stdio_unsupported.cc', |
77 'stdio_win.cc', | 76 'stdio_win.cc', |
78 ], | 77 ], |
79 } | 78 } |
OLD | NEW |