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

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

Issue 1335783005: [NaCl SDK] nacl_io: Add support for basic socketpairs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Class renamed/cl-format applied. Created 5 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
OLDNEW
1 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'bionic', 'pnacl', 'linux', 'mac', 'clang-newlib' ], 2 'TOOLS': ['newlib', 'glibc', 'bionic', 'pnacl', 'linux', 'mac', 'clang-newlib' ],
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 {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "pipe/pipe_event_emitter.cc", 56 "pipe/pipe_event_emitter.cc",
57 "pipe/pipe_node.cc", 57 "pipe/pipe_node.cc",
58 "real_pepper_interface.cc", 58 "real_pepper_interface.cc",
59 "socket/fifo_packet.cc", 59 "socket/fifo_packet.cc",
60 "socket/packet.cc", 60 "socket/packet.cc",
61 "socket/socket_node.cc", 61 "socket/socket_node.cc",
62 "socket/tcp_event_emitter.cc", 62 "socket/tcp_event_emitter.cc",
63 "socket/tcp_node.cc", 63 "socket/tcp_node.cc",
64 "socket/udp_event_emitter.cc", 64 "socket/udp_event_emitter.cc",
65 "socket/udp_node.cc", 65 "socket/udp_node.cc",
66 "socket/unixsocket_event_emitter.cc",
67 "socket/unixsocket_node.cc",
66 "stream/stream_event_emitter.cc", 68 "stream/stream_event_emitter.cc",
67 "stream/stream_fs.cc", 69 "stream/stream_fs.cc",
68 "stream/stream_node.cc", 70 "stream/stream_node.cc",
69 "syscalls/access.c", 71 "syscalls/access.c",
70 "syscalls/chown.c", 72 "syscalls/chown.c",
71 "syscalls/fchown.c", 73 "syscalls/fchown.c",
72 "syscalls/fcntl.c", 74 "syscalls/fcntl.c",
73 "syscalls/ftruncate.c", 75 "syscalls/ftruncate.c",
74 "syscalls/futimes.c", 76 "syscalls/futimes.c",
75 "syscalls/getwd.c", 77 "syscalls/getwd.c",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "pipe/pipe_event_emitter.h", 205 "pipe/pipe_event_emitter.h",
204 "pipe/pipe_node.h", 206 "pipe/pipe_node.h",
205 "real_pepper_interface.h", 207 "real_pepper_interface.h",
206 "socket/fifo_packet.h", 208 "socket/fifo_packet.h",
207 "socket/packet.h", 209 "socket/packet.h",
208 "socket/socket_node.h", 210 "socket/socket_node.h",
209 "socket/tcp_event_emitter.h", 211 "socket/tcp_event_emitter.h",
210 "socket/tcp_node.h", 212 "socket/tcp_node.h",
211 "socket/udp_event_emitter.h", 213 "socket/udp_event_emitter.h",
212 "socket/udp_node.h", 214 "socket/udp_node.h",
215 "socket/unixsocket_event_emitter.h",
216 "socket/unixsocket_node.h",
213 "stream/stream_event_emitter.h", 217 "stream/stream_event_emitter.h",
214 "stream/stream_fs.h", 218 "stream/stream_fs.h",
215 "stream/stream_node.h", 219 "stream/stream_node.h",
216 "typed_fs_factory.h", 220 "typed_fs_factory.h",
217 ], 221 ],
218 'DEST': 'include/nacl_io', 222 'DEST': 'include/nacl_io',
219 }, 223 },
220 { 224 {
221 'FILES': [ 225 'FILES': [
222 "arpa/inet.h", 226 "arpa/inet.h",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 "all_interfaces.h", 289 "all_interfaces.h",
286 "define_empty_macros.h", 290 "define_empty_macros.h",
287 "undef_macros.h", 291 "undef_macros.h",
288 ], 292 ],
289 'DEST': 'include/nacl_io/pepper', 293 'DEST': 'include/nacl_io/pepper',
290 } 294 }
291 ], 295 ],
292 'DEST': 'src', 296 'DEST': 'src',
293 'NAME': 'nacl_io', 297 'NAME': 'nacl_io',
294 } 298 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698