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

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/library.dsc

Issue 23498015: [NaCl SDK] Support non blocking TCP/UDP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 7 years, 3 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 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl'],
3 'SEARCH': [ 3 'SEARCH': [
4 '.', 4 '.',
5 'pepper', 5 'pepper',
6 '../third_party/newlib-extras', 6 '../third_party/newlib-extras',
7 'include', 7 'include',
8 ], 8 ],
9 'TARGETS': [ 9 'TARGETS': [
10 { 10 {
11 'NAME' : 'nacl_io', 11 'NAME' : 'nacl_io',
12 'TYPE' : 'lib', 12 'TYPE' : 'lib',
13 'SOURCES' : [ 13 'SOURCES' : [
14 'dbgprint.c', 14 'dbgprint.c',
15 "event_emitter.cc", 15 "event_emitter.cc",
16 "event_emitter_pipe.cc",
17 "event_emitter_stream.cc",
18 "event_emitter_tcp.cc",
19 "event_emitter_udp.cc",
16 "event_listener.cc", 20 "event_listener.cc",
21 "fifo_char.cc",
22 "fifo_packet.cc",
17 "h_errno.cc", 23 "h_errno.cc",
18 "host_resolver.cc", 24 "host_resolver.cc",
19 "kernel_handle.cc", 25 "kernel_handle.cc",
20 "kernel_intercept.cc", 26 "kernel_intercept.cc",
21 "kernel_object.cc", 27 "kernel_object.cc",
22 "kernel_proxy.cc", 28 "kernel_proxy.cc",
23 "kernel_wrap_glibc.cc", 29 "kernel_wrap_glibc.cc",
24 "kernel_wrap_newlib.cc", 30 "kernel_wrap_newlib.cc",
25 "kernel_wrap_win.cc", 31 "kernel_wrap_win.cc",
26 "mount.cc", 32 "mount.cc",
27 "mount_dev.cc", 33 "mount_dev.cc",
28 "mount_html5fs.cc", 34 "mount_html5fs.cc",
29 "mount_http.cc", 35 "mount_http.cc",
30 "mount_mem.cc", 36 "mount_mem.cc",
31 "mount_node.cc", 37 "mount_node.cc",
32 "mount_node_dir.cc", 38 "mount_node_dir.cc",
33 "mount_node_html5fs.cc", 39 "mount_node_html5fs.cc",
34 "mount_node_http.cc", 40 "mount_node_http.cc",
35 "mount_node_mem.cc", 41 "mount_node_mem.cc",
42 "mount_node_pipe.cc",
36 "mount_node_socket.cc", 43 "mount_node_socket.cc",
44 "mount_node_stream.cc",
37 "mount_node_tcp.cc", 45 "mount_node_tcp.cc",
38 "mount_node_tty.cc", 46 "mount_node_tty.cc",
39 "mount_node_udp.cc", 47 "mount_node_udp.cc",
40 "mount_passthrough.cc", 48 "mount_passthrough.cc",
41 "mount_socket.cc", 49 "mount_stream.cc",
42 "nacl_io.cc", 50 "nacl_io.cc",
51 "packet.cc",
43 "path.cc", 52 "path.cc",
44 "pepper_interface.cc", 53 "pepper_interface.cc",
45 "pepper_interface_delegate.cc", 54 "pepper_interface_delegate.cc",
46 "real_pepper_interface.cc", 55 "real_pepper_interface.cc",
47 "syscalls/accept.c", 56 "syscalls/accept.c",
48 "syscalls/access.c", 57 "syscalls/access.c",
49 "syscalls/bind.c", 58 "syscalls/bind.c",
50 "syscalls/cfgetispeed.c", 59 "syscalls/cfgetispeed.c",
51 "syscalls/cfgetospeed.c", 60 "syscalls/cfgetospeed.c",
52 "syscalls/cfsetspeed.c", 61 "syscalls/cfsetspeed.c",
(...skipping 21 matching lines...) Expand all
74 "syscalls/ioctl.c", 83 "syscalls/ioctl.c",
75 "syscalls/isatty.c", 84 "syscalls/isatty.c",
76 "syscalls/kill.c", 85 "syscalls/kill.c",
77 "syscalls/lchown.c", 86 "syscalls/lchown.c",
78 "syscalls/link.c", 87 "syscalls/link.c",
79 "syscalls/listen.c", 88 "syscalls/listen.c",
80 "syscalls/mkdir.c", 89 "syscalls/mkdir.c",
81 "syscalls/mount.c", 90 "syscalls/mount.c",
82 "syscalls/ntohl.c", 91 "syscalls/ntohl.c",
83 "syscalls/ntohs.c", 92 "syscalls/ntohs.c",
93 "syscalls/pipe.c",
84 "syscalls/poll.c", 94 "syscalls/poll.c",
85 "syscalls/rmdir.c", 95 "syscalls/rmdir.c",
86 "syscalls/recv.c", 96 "syscalls/recv.c",
87 "syscalls/recvfrom.c", 97 "syscalls/recvfrom.c",
88 "syscalls/recvmsg.c", 98 "syscalls/recvmsg.c",
89 "syscalls/remove.c", 99 "syscalls/remove.c",
90 "syscalls/tcdrain.c", 100 "syscalls/tcdrain.c",
91 "syscalls/tcflow.c", 101 "syscalls/tcflow.c",
92 "syscalls/tcflush.c", 102 "syscalls/tcflush.c",
93 "syscalls/tcgetattr.c", 103 "syscalls/tcgetattr.c",
(...skipping 16 matching lines...) Expand all
110 ], 120 ],
111 } 121 }
112 ], 122 ],
113 'HEADERS': [ 123 'HEADERS': [
114 { 124 {
115 'FILES': [ 125 'FILES': [
116 "dbgprint.h", 126 "dbgprint.h",
117 "error.h", 127 "error.h",
118 "event_emitter.h", 128 "event_emitter.h",
119 "event_listener.h", 129 "event_listener.h",
130 "event_emitter_pipe.h",
131 "event_emitter_stream.h",
132 "event_emitter_tcp.h",
133 "event_emitter_udp.h",
134 "fifo_char.h",
135 "fifo_interface.h",
136 "fifo_null.h",
137 "fifo_packet.h",
120 "host_resolver.h", 138 "host_resolver.h",
121 "inode_pool.h", 139 "inode_pool.h",
122 "ioctl.h", 140 "ioctl.h",
123 "kernel_handle.h", 141 "kernel_handle.h",
124 "kernel_intercept.h", 142 "kernel_intercept.h",
125 "kernel_object.h", 143 "kernel_object.h",
126 "kernel_proxy.h", 144 "kernel_proxy.h",
127 "kernel_wrap.h", 145 "kernel_wrap.h",
128 "kernel_wrap_real.h", 146 "kernel_wrap_real.h",
129 "mount_dev.h", 147 "mount_dev.h",
130 "mount_factory.h", 148 "mount_factory.h",
131 "mount.h", 149 "mount.h",
132 "mount_html5fs.h", 150 "mount_html5fs.h",
133 "mount_http.h", 151 "mount_http.h",
134 "mount_mem.h", 152 "mount_mem.h",
135 "mount_node.h", 153 "mount_node.h",
136 "mount_node_char.h", 154 "mount_node_char.h",
137 "mount_node_dir.h", 155 "mount_node_dir.h",
138 "mount_node_html5fs.h", 156 "mount_node_html5fs.h",
139 "mount_node_http.h", 157 "mount_node_http.h",
140 "mount_node_mem.h", 158 "mount_node_mem.h",
159 "mount_node_pipe.h",
141 "mount_node_socket.h", 160 "mount_node_socket.h",
161 "mount_node_stream.h",
142 "mount_node_tcp.h", 162 "mount_node_tcp.h",
143 "mount_node_tty.h", 163 "mount_node_tty.h",
144 "mount_node_udp.h", 164 "mount_node_udp.h",
145 "mount_passthrough.h", 165 "mount_passthrough.h",
146 "mount_socket.h", 166 "mount_stream.h",
147 "nacl_io.h", 167 "nacl_io.h",
148 "osdirent.h", 168 "osdirent.h",
149 "osinttypes.h", 169 "osinttypes.h",
150 "osmman.h", 170 "osmman.h",
151 "ossignal.h", 171 "ossignal.h",
152 "ossocket.h", 172 "ossocket.h",
153 "osstat.h", 173 "osstat.h",
154 "ostime.h", 174 "ostime.h",
155 "ostypes.h", 175 "ostypes.h",
156 "osunistd.h", 176 "osunistd.h",
157 "osutime.h", 177 "osutime.h",
158 "ostermios.h", 178 "ostermios.h",
179 "packet.h",
159 "path.h", 180 "path.h",
160 "pepper_interface_delegate.h", 181 "pepper_interface_delegate.h",
161 "pepper_interface_dummy.h", 182 "pepper_interface_dummy.h",
162 "pepper_interface.h", 183 "pepper_interface.h",
163 "real_pepper_interface.h", 184 "real_pepper_interface.h",
164 "typed_mount_factory.h", 185 "typed_mount_factory.h",
165 ], 186 ],
166 'DEST': 'include/nacl_io', 187 'DEST': 'include/nacl_io',
167 }, 188 },
168 { 189 {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 "all_interfaces.h", 233 "all_interfaces.h",
213 "define_empty_macros.h", 234 "define_empty_macros.h",
214 "undef_macros.h", 235 "undef_macros.h",
215 ], 236 ],
216 'DEST': 'include/nacl_io/pepper', 237 'DEST': 'include/nacl_io/pepper',
217 } 238 }
218 ], 239 ],
219 'DEST': 'src', 240 'DEST': 'src',
220 'NAME': 'nacl_io', 241 'NAME': 'nacl_io',
221 } 242 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc ('k') | native_client_sdk/src/libraries/nacl_io/mount_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698