Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: runtime/bin/io_impl_sources.gypi

Issue 2780063002: Pulled a significant portion of Socket implementation into BaseSocket in order to prepare for the s… (Closed)
Patch Set: Minor change to socket_common_unsupported.cc Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'secure_socket.h', 56 'secure_socket.h',
57 'secure_socket_boringssl.cc', 57 'secure_socket_boringssl.cc',
58 'secure_socket_boringssl.h', 58 'secure_socket_boringssl.h',
59 'secure_socket_ios.cc', 59 'secure_socket_ios.cc',
60 'secure_socket_ios.h', 60 'secure_socket_ios.h',
61 'secure_socket_macos.cc', 61 'secure_socket_macos.cc',
62 'secure_socket_macos.h', 62 'secure_socket_macos.h',
63 'secure_socket_unsupported.cc', 63 'secure_socket_unsupported.cc',
64 'socket.cc', 64 'socket.cc',
65 'socket.h', 65 'socket.h',
66 'socket_android.cc', 66 'socket_common.cc',
67 'socket_android.h', 67 'socket_common.h',
68 'socket_fuchsia.cc', 68 'socket_common_android.cc',
69 'socket_fuchsia.h', 69 'socket_common_android.h',
70 'socket_linux.cc', 70 'socket_common_fuchsia.cc',
71 'socket_linux.h', 71 'socket_common_fuchsia.h',
72 'socket_macos.cc', 72 'socket_common_linux.cc',
73 'socket_macos.h', 73 'socket_common_linux.h',
74 'socket_unsupported.cc', 74 'socket_common_macos.cc',
75 'socket_win.cc', 75 'socket_common_macos.h',
76 'socket_win.h', 76 'socket_common_unsupported.cc',
77 'socket_common_win.cc',
78 'socket_common_win.h',
77 'stdio.cc', 79 'stdio.cc',
78 'stdio.h', 80 'stdio.h',
79 'stdio_android.cc', 81 'stdio_android.cc',
80 'stdio_fuchsia.cc', 82 'stdio_fuchsia.cc',
81 'stdio_linux.cc', 83 'stdio_linux.cc',
82 'stdio_macos.cc', 84 'stdio_macos.cc',
83 'stdio_unsupported.cc', 85 'stdio_unsupported.cc',
84 'stdio_win.cc', 86 'stdio_win.cc',
85 ], 87 ],
86 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698