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

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: Remove event friends, rename EventListenerPoll 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_listener.cc", 16 "event_listener.cc",
17 "fifo_char.cc",
binji 2013/09/12 01:47:57 fifo_packet.cc?
noelallen1 2013/09/12 23:19:03 Done.
17 "h_errno.cc", 18 "h_errno.cc",
18 "host_resolver.cc", 19 "host_resolver.cc",
19 "kernel_handle.cc", 20 "kernel_handle.cc",
20 "kernel_intercept.cc", 21 "kernel_intercept.cc",
21 "kernel_object.cc", 22 "kernel_object.cc",
22 "kernel_proxy.cc", 23 "kernel_proxy.cc",
23 "kernel_wrap_glibc.cc", 24 "kernel_wrap_glibc.cc",
24 "kernel_wrap_newlib.cc", 25 "kernel_wrap_newlib.cc",
25 "kernel_wrap_win.cc", 26 "kernel_wrap_win.cc",
26 "mount.cc", 27 "mount.cc",
27 "mount_dev.cc", 28 "mount_dev.cc",
28 "mount_html5fs.cc", 29 "mount_html5fs.cc",
29 "mount_http.cc", 30 "mount_http.cc",
30 "mount_mem.cc", 31 "mount_mem.cc",
31 "mount_node.cc", 32 "mount_node.cc",
32 "mount_node_dir.cc", 33 "mount_node_dir.cc",
33 "mount_node_html5fs.cc", 34 "mount_node_html5fs.cc",
34 "mount_node_http.cc", 35 "mount_node_http.cc",
35 "mount_node_mem.cc", 36 "mount_node_mem.cc",
37 "mount_node_pipe.cc",
36 "mount_node_socket.cc", 38 "mount_node_socket.cc",
39 "mount_node_stream.cc",
37 "mount_node_tcp.cc", 40 "mount_node_tcp.cc",
38 "mount_node_tty.cc", 41 "mount_node_tty.cc",
39 "mount_node_udp.cc", 42 "mount_node_udp.cc",
40 "mount_passthrough.cc", 43 "mount_passthrough.cc",
41 "mount_socket.cc", 44 "mount_stream.cc",
42 "nacl_io.cc", 45 "nacl_io.cc",
43 "path.cc", 46 "path.cc",
44 "pepper_interface.cc", 47 "pepper_interface.cc",
45 "pepper_interface_delegate.cc", 48 "pepper_interface_delegate.cc",
46 "real_pepper_interface.cc", 49 "real_pepper_interface.cc",
47 "syscalls/accept.c", 50 "syscalls/accept.c",
48 "syscalls/access.c", 51 "syscalls/access.c",
49 "syscalls/bind.c", 52 "syscalls/bind.c",
50 "syscalls/cfgetispeed.c", 53 "syscalls/cfgetispeed.c",
51 "syscalls/cfgetospeed.c", 54 "syscalls/cfgetospeed.c",
(...skipping 22 matching lines...) Expand all
74 "syscalls/ioctl.c", 77 "syscalls/ioctl.c",
75 "syscalls/isatty.c", 78 "syscalls/isatty.c",
76 "syscalls/kill.c", 79 "syscalls/kill.c",
77 "syscalls/lchown.c", 80 "syscalls/lchown.c",
78 "syscalls/link.c", 81 "syscalls/link.c",
79 "syscalls/listen.c", 82 "syscalls/listen.c",
80 "syscalls/mkdir.c", 83 "syscalls/mkdir.c",
81 "syscalls/mount.c", 84 "syscalls/mount.c",
82 "syscalls/ntohl.c", 85 "syscalls/ntohl.c",
83 "syscalls/ntohs.c", 86 "syscalls/ntohs.c",
87 "syscalls/pipe.c",
84 "syscalls/poll.c", 88 "syscalls/poll.c",
85 "syscalls/rmdir.c", 89 "syscalls/rmdir.c",
86 "syscalls/recv.c", 90 "syscalls/recv.c",
87 "syscalls/recvfrom.c", 91 "syscalls/recvfrom.c",
88 "syscalls/recvmsg.c", 92 "syscalls/recvmsg.c",
89 "syscalls/remove.c", 93 "syscalls/remove.c",
90 "syscalls/tcdrain.c", 94 "syscalls/tcdrain.c",
91 "syscalls/tcflow.c", 95 "syscalls/tcflow.c",
92 "syscalls/tcflush.c", 96 "syscalls/tcflush.c",
93 "syscalls/tcgetattr.c", 97 "syscalls/tcgetattr.c",
(...skipping 16 matching lines...) Expand all
110 ], 114 ],
111 } 115 }
112 ], 116 ],
113 'HEADERS': [ 117 'HEADERS': [
114 { 118 {
115 'FILES': [ 119 'FILES': [
116 "dbgprint.h", 120 "dbgprint.h",
117 "error.h", 121 "error.h",
118 "event_emitter.h", 122 "event_emitter.h",
119 "event_listener.h", 123 "event_listener.h",
124 "event_emitter_packet.h",
125 "event_emitter_pipe.h",
126 "event_emitter_signal.h",
127 "fifo_char.h",
binji 2013/09/12 01:47:57 fifo_packet.h?
noelallen1 2013/09/12 23:19:03 Done.
120 "host_resolver.h", 128 "host_resolver.h",
121 "inode_pool.h", 129 "inode_pool.h",
122 "ioctl.h", 130 "ioctl.h",
123 "kernel_handle.h", 131 "kernel_handle.h",
124 "kernel_intercept.h", 132 "kernel_intercept.h",
125 "kernel_object.h", 133 "kernel_object.h",
126 "kernel_proxy.h", 134 "kernel_proxy.h",
127 "kernel_wrap.h", 135 "kernel_wrap.h",
128 "kernel_wrap_real.h", 136 "kernel_wrap_real.h",
129 "mount_dev.h", 137 "mount_dev.h",
130 "mount_factory.h", 138 "mount_factory.h",
131 "mount.h", 139 "mount.h",
132 "mount_html5fs.h", 140 "mount_html5fs.h",
133 "mount_http.h", 141 "mount_http.h",
134 "mount_mem.h", 142 "mount_mem.h",
135 "mount_node.h", 143 "mount_node.h",
136 "mount_node_char.h", 144 "mount_node_char.h",
137 "mount_node_dir.h", 145 "mount_node_dir.h",
138 "mount_node_html5fs.h", 146 "mount_node_html5fs.h",
139 "mount_node_http.h", 147 "mount_node_http.h",
140 "mount_node_mem.h", 148 "mount_node_mem.h",
149 "mount_node_pipe.h",
141 "mount_node_socket.h", 150 "mount_node_socket.h",
151 "mount_node_stream.h",
142 "mount_node_tcp.h", 152 "mount_node_tcp.h",
143 "mount_node_tty.h", 153 "mount_node_tty.h",
144 "mount_node_udp.h", 154 "mount_node_udp.h",
145 "mount_passthrough.h", 155 "mount_passthrough.h",
146 "mount_socket.h", 156 "mount_stream.h",
147 "nacl_io.h", 157 "nacl_io.h",
148 "osdirent.h", 158 "osdirent.h",
149 "osinttypes.h", 159 "osinttypes.h",
150 "osmman.h", 160 "osmman.h",
151 "ossignal.h", 161 "ossignal.h",
152 "ossocket.h", 162 "ossocket.h",
153 "osstat.h", 163 "osstat.h",
154 "ostime.h", 164 "ostime.h",
155 "ostypes.h", 165 "ostypes.h",
156 "osunistd.h", 166 "osunistd.h",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 "all_interfaces.h", 222 "all_interfaces.h",
213 "define_empty_macros.h", 223 "define_empty_macros.h",
214 "undef_macros.h", 224 "undef_macros.h",
215 ], 225 ],
216 'DEST': 'include/nacl_io/pepper', 226 'DEST': 'include/nacl_io/pepper',
217 } 227 }
218 ], 228 ],
219 'DEST': 'src', 229 'DEST': 'src',
220 'NAME': 'nacl_io', 230 'NAME': 'nacl_io',
221 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698