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

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

Issue 10704159: Start adding TLS (SSL) sockets to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add Android stubs for TlsSocket implementation. Created 8 years, 4 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 | Annotate | Revision Log
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 all C++ sources for the dart:builtin and dart:io 5 # This file contains all C++ sources for the dart:builtin and dart:io
6 # libraries. 6 # libraries.
7 { 7 {
8 'sources': [ 8 'sources': [
9 'dartutils.cc', 9 'dartutils.cc',
10 'dartutils.h', 10 'dartutils.h',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'process_win.cc', 65 'process_win.cc',
66 'socket.cc', 66 'socket.cc',
67 'socket.h', 67 'socket.h',
68 'socket_android.cc', 68 'socket_android.cc',
69 'socket_linux.cc', 69 'socket_linux.cc',
70 'socket_macos.cc', 70 'socket_macos.cc',
71 'socket_win.cc', 71 'socket_win.cc',
72 'set.h', 72 'set.h',
73 'set_test.cc', 73 'set_test.cc',
74 'thread.h', 74 'thread.h',
75 'tls_socket.cc',
76 'tls_socket.h',
77 'tls_socket_android.cc',
78 'tls_socket_linux.cc',
79 'tls_socket_macos.cc',
80 'tls_socket_win.cc',
75 'utils.h', 81 'utils.h',
76 'utils_android.cc', 82 'utils_android.cc',
77 'utils_linux.cc', 83 'utils_linux.cc',
78 'utils_macos.cc', 84 'utils_macos.cc',
79 'utils_win.cc', 85 'utils_win.cc',
80 ], 86 ],
81 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698