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

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

Issue 1721283002: Implements secure sockets on Mac OS with SecureTransport API (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Cleanups. Add some more asserts. Created 4 years, 9 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 25 matching lines...) Expand all
36 'platform_linux.cc', 36 'platform_linux.cc',
37 'platform_macos.cc', 37 'platform_macos.cc',
38 'platform_win.cc', 38 'platform_win.cc',
39 'process.cc', 39 'process.cc',
40 'process.h', 40 'process.h',
41 'process_android.cc', 41 'process_android.cc',
42 'process_linux.cc', 42 'process_linux.cc',
43 'process_macos.cc', 43 'process_macos.cc',
44 'process_win.cc', 44 'process_win.cc',
45 '../../third_party/root_certificates/root_certificates.cc', 45 '../../third_party/root_certificates/root_certificates.cc',
46 'secure_socket.cc',
47 'secure_socket.h', 46 'secure_socket.h',
47 'secure_socket_boringssl.cc',
48 'secure_socket_boringssl.h',
49 'secure_socket_macos.cc',
50 'secure_socket_macos.h',
48 'secure_socket_unsupported.cc', 51 'secure_socket_unsupported.cc',
49 'socket.cc', 52 'socket.cc',
50 'socket.h', 53 'socket.h',
51 'socket_android.cc', 54 'socket_android.cc',
52 'socket_android.h', 55 'socket_android.h',
53 'socket_linux.cc', 56 'socket_linux.cc',
54 'socket_linux.h', 57 'socket_linux.h',
55 'socket_macos.cc', 58 'socket_macos.cc',
56 'socket_macos.h', 59 'socket_macos.h',
57 'socket_win.cc', 60 'socket_win.cc',
58 'socket_win.h', 61 'socket_win.h',
59 'stdio.cc', 62 'stdio.cc',
60 'stdio.h', 63 'stdio.h',
61 'stdio_android.cc', 64 'stdio_android.cc',
62 'stdio_linux.cc', 65 'stdio_linux.cc',
63 'stdio_macos.cc', 66 'stdio_macos.cc',
64 'stdio_win.cc', 67 'stdio_win.cc',
65 ], 68 ],
66 'conditions': [ 69 'conditions': [
67 ['dart_io_support==1', { 70 ['dart_io_support==1', {
68 'conditions': [ 71 'conditions': [
69 ['dart_io_secure_socket==1', { 72 ['dart_io_secure_socket==1', {
70 'sources!' : [ 73 'sources!' : [
71 'io_service_no_ssl.cc', 74 'io_service_no_ssl.cc',
72 'io_service_no_ssl.h', 75 'io_service_no_ssl.h',
73 'secure_socket_unsupported.cc', 76 'secure_socket_unsupported.cc',
74 ], 77 ],
78 'conditions': [
79 ['OS=="mac"', {
80 'sources!': [
Ivan Posva 2016/03/21 20:38:01 The '!' is hard to see. Please add a comment that
zra 2016/03/21 22:32:58 Done.
81 '../../third_party/root_certificates/root_certificates.cc',
82 ],
83 }],
84 ],
75 }, { # else dart_io_secure_socket == 0 85 }, { # else dart_io_secure_socket == 0
76 'sources!' : [ 86 'sources!' : [
77 '../../third_party/root_certificates/root_certificates.cc', 87 '../../third_party/root_certificates/root_certificates.cc',
78 'io_service.cc', 88 'io_service.cc',
79 'io_service.h', 89 'io_service.h',
80 'secure_socket.cc',
81 'secure_socket.h', 90 'secure_socket.h',
91 'secure_socket_boringssl.cc',
92 'secure_socket_boringssl.h',
93 'secure_socket_macos.cc',
94 'secure_socket_macos.h',
82 ], 95 ],
83 }], 96 }],
84 ], 97 ],
85 'sources!' : [ 98 'sources!' : [
86 'filter_unsupported.cc', 99 'filter_unsupported.cc',
87 'io_service_unsupported.cc', 100 'io_service_unsupported.cc',
88 ], 101 ],
89 },{ # else dart_io_support == 0 102 },{ # else dart_io_support == 0
90 'sources!' : [ 103 'sources!' : [
91 'filter.cc', 104 'filter.cc',
92 'filter.h', 105 'filter.h',
93 'io_service.cc', 106 'io_service.cc',
94 'io_service.h', 107 'io_service.h',
95 'io_service_no_ssl.cc', 108 'io_service_no_ssl.cc',
96 'io_service_no_ssl.h', 109 'io_service_no_ssl.h',
97 '../../third_party/root_certificates/root_certificates.cc', 110 '../../third_party/root_certificates/root_certificates.cc',
98 'secure_socket.cc',
99 'secure_socket.h', 111 'secure_socket.h',
112 'secure_socket_boringssl.cc',
113 'secure_socket_boringssl.h',
114 'secure_socket_macos.cc',
115 'secure_socket_macos.h',
100 ], 116 ],
101 }], 117 }],
102 ], 118 ],
103 } 119 }
OLDNEW
« no previous file with comments | « runtime/bin/bin.gypi ('k') | runtime/bin/io_natives.cc » ('j') | runtime/bin/secure_socket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698