Chromium Code Reviews| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 46 'process.cc', | 46 'process.cc', |
| 47 'process.h', | 47 'process.h', |
| 48 'process_android.cc', | 48 'process_android.cc', |
| 49 'process_fuchsia.cc', | 49 'process_fuchsia.cc', |
| 50 'process_linux.cc', | 50 'process_linux.cc', |
| 51 'process_macos.cc', | 51 'process_macos.cc', |
| 52 'process_unsupported.cc', | 52 'process_unsupported.cc', |
| 53 'process_win.cc', | 53 'process_win.cc', |
| 54 'reference_counting.h', | 54 'reference_counting.h', |
| 55 'root_certificates_unsupported.cc', | 55 'root_certificates_unsupported.cc', |
| 56 'secure_socket.h', | 56 'secure_socket_filter.cc', |
| 57 'secure_socket_boringssl.cc', | 57 'secure_socket_filter.h', |
| 58 'secure_socket_boringssl.h', | |
| 59 'secure_socket_ios.cc', | |
| 60 'secure_socket_ios.h', | |
| 61 'secure_socket_macos.cc', | |
| 62 'secure_socket_macos.h', | |
| 63 'secure_socket_unsupported.cc', | 58 'secure_socket_unsupported.cc', |
| 59 'secure_socket_utils.cc', | |
| 60 'secure_socket_utils.h', | |
| 61 'security_context.cc', | |
|
zra
2017/06/02 22:56:24
Do you need security_context_unsupported.cc?
bkonyi
2017/06/05 20:25:51
secure_socket_unsupported.cc contains all of the e
| |
| 62 'security_context.h', | |
| 63 'security_context_boringssl.cc', | |
| 64 'security_context_macos.cc', | |
| 64 'socket.cc', | 65 'socket.cc', |
| 65 'socket.h', | 66 'socket.h', |
| 66 'socket_android.cc', | 67 'socket_android.cc', |
| 67 'socket_base.cc', | 68 'socket_base.cc', |
| 68 'socket_base.h', | 69 'socket_base.h', |
| 69 'socket_base_android.cc', | 70 'socket_base_android.cc', |
| 70 'socket_base_android.h', | 71 'socket_base_android.h', |
| 71 'socket_base_fuchsia.cc', | 72 'socket_base_fuchsia.cc', |
| 72 'socket_base_fuchsia.h', | 73 'socket_base_fuchsia.h', |
| 73 'socket_base_linux.cc', | 74 'socket_base_linux.cc', |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 93 'sync_socket.cc', | 94 'sync_socket.cc', |
| 94 'sync_socket.h', | 95 'sync_socket.h', |
| 95 'sync_socket_android.cc', | 96 'sync_socket_android.cc', |
| 96 'sync_socket_fuchsia.cc', | 97 'sync_socket_fuchsia.cc', |
| 97 'sync_socket_linux.cc', | 98 'sync_socket_linux.cc', |
| 98 'sync_socket_macos.cc', | 99 'sync_socket_macos.cc', |
| 99 'sync_socket_unsupported.cc', | 100 'sync_socket_unsupported.cc', |
| 100 'sync_socket_win.cc', | 101 'sync_socket_win.cc', |
| 101 ], | 102 ], |
| 102 } | 103 } |
| OLD | NEW |