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

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

Issue 23005005: [NaCl SDK] nacl_io: Add initial implementations of kill and signal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 { 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 {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "syscalls/getsockopt.c", 61 "syscalls/getsockopt.c",
62 "syscalls/getwd.c", 62 "syscalls/getwd.c",
63 "syscalls/herror.c", 63 "syscalls/herror.c",
64 "syscalls/hstrerror.cc", 64 "syscalls/hstrerror.cc",
65 "syscalls/htonl.c", 65 "syscalls/htonl.c",
66 "syscalls/htons.c", 66 "syscalls/htons.c",
67 "syscalls/inet_ntoa.cc", 67 "syscalls/inet_ntoa.cc",
68 "syscalls/inet_ntop.cc", 68 "syscalls/inet_ntop.cc",
69 "syscalls/ioctl.c", 69 "syscalls/ioctl.c",
70 "syscalls/isatty.c", 70 "syscalls/isatty.c",
71 "syscalls/kill.c",
71 "syscalls/lchown.c", 72 "syscalls/lchown.c",
72 "syscalls/link.c", 73 "syscalls/link.c",
73 "syscalls/listen.c", 74 "syscalls/listen.c",
74 "syscalls/mkdir.c", 75 "syscalls/mkdir.c",
75 "syscalls/mount.c", 76 "syscalls/mount.c",
76 "syscalls/ntohl.c", 77 "syscalls/ntohl.c",
77 "syscalls/ntohs.c", 78 "syscalls/ntohs.c",
78 "syscalls/poll.c", 79 "syscalls/poll.c",
79 "syscalls/rmdir.c", 80 "syscalls/rmdir.c",
80 "syscalls/recv.c", 81 "syscalls/recv.c",
81 "syscalls/recvfrom.c", 82 "syscalls/recvfrom.c",
82 "syscalls/recvmsg.c", 83 "syscalls/recvmsg.c",
83 "syscalls/remove.c", 84 "syscalls/remove.c",
84 "syscalls/tcflush.c", 85 "syscalls/tcflush.c",
85 "syscalls/tcgetattr.c", 86 "syscalls/tcgetattr.c",
86 "syscalls/tcsetattr.c", 87 "syscalls/tcsetattr.c",
87 "syscalls/select.c", 88 "syscalls/select.c",
88 "syscalls/send.c", 89 "syscalls/send.c",
89 "syscalls/sendmsg.c", 90 "syscalls/sendmsg.c",
90 "syscalls/sendto.c", 91 "syscalls/sendto.c",
91 "syscalls/setsockopt.c", 92 "syscalls/setsockopt.c",
92 "syscalls/shutdown.c", 93 "syscalls/shutdown.c",
94 "syscalls/signal.c",
95 "syscalls/sigset.c",
93 "syscalls/socket.c", 96 "syscalls/socket.c",
94 "syscalls/socketpair.c", 97 "syscalls/socketpair.c",
95 "syscalls/unlink.c", 98 "syscalls/unlink.c",
96 "syscalls/umount.c", 99 "syscalls/umount.c",
97 "syscalls/uname.c", 100 "syscalls/uname.c",
98 "syscalls/utime.c", 101 "syscalls/utime.c",
99 ], 102 ],
100 } 103 }
101 ], 104 ],
102 'HEADERS': [ 105 'HEADERS': [
(...skipping 27 matching lines...) Expand all
130 "mount_node_socket.h", 133 "mount_node_socket.h",
131 "mount_node_tcp.h", 134 "mount_node_tcp.h",
132 "mount_node_tty.h", 135 "mount_node_tty.h",
133 "mount_node_udp.h", 136 "mount_node_udp.h",
134 "mount_passthrough.h", 137 "mount_passthrough.h",
135 "mount_socket.h", 138 "mount_socket.h",
136 "nacl_io.h", 139 "nacl_io.h",
137 "osdirent.h", 140 "osdirent.h",
138 "osinttypes.h", 141 "osinttypes.h",
139 "osmman.h", 142 "osmman.h",
143 "ossignal.h",
140 "ossocket.h", 144 "ossocket.h",
141 "osstat.h", 145 "osstat.h",
142 "ostime.h", 146 "ostime.h",
143 "ostypes.h", 147 "ostypes.h",
144 "osunistd.h", 148 "osunistd.h",
145 "osutime.h", 149 "osutime.h",
146 "ostermios.h", 150 "ostermios.h",
147 "path.h", 151 "path.h",
148 "pepper_interface_delegate.h", 152 "pepper_interface_delegate.h",
149 "pepper_interface_dummy.h", 153 "pepper_interface_dummy.h",
150 "pepper_interface.h", 154 "pepper_interface.h",
151 "real_pepper_interface.h", 155 "real_pepper_interface.h",
152 "typed_mount_factory.h", 156 "typed_mount_factory.h",
153 ], 157 ],
154 'DEST': 'include/nacl_io', 158 'DEST': 'include/nacl_io',
155 }, 159 },
156 { 160 {
157 'FILES': [ 161 'FILES': [
158 "arpa/inet.h", 162 "arpa/inet.h",
159 "netdb.h", 163 "netdb.h",
160 "netinet/in.h", 164 "netinet/in.h",
161 "netinet/tcp.h", 165 "netinet/tcp.h",
162 "netinet6/in6.h", 166 "netinet6/in6.h",
163 "poll.h", 167 "poll.h",
168 "sys/ioctl.h",
164 "sys/mount.h", 169 "sys/mount.h",
165 "sys/select.h", 170 "sys/select.h",
171 "sys/signal.h",
166 "sys/socket.h", 172 "sys/socket.h",
167 "sys/termios.h", 173 "sys/termios.h",
168 "sys/utsname.h", 174 "sys/utsname.h",
169 ], 175 ],
170 'DEST': 'include/newlib', 176 'DEST': 'include/newlib',
171 }, 177 },
172 { 178 {
173 'FILES': [ 179 'FILES': [
174 "arpa/inet.h", 180 "arpa/inet.h",
175 "netdb.h", 181 "netdb.h",
176 "netinet/in.h", 182 "netinet/in.h",
177 "netinet/tcp.h", 183 "netinet/tcp.h",
178 "netinet6/in6.h", 184 "netinet6/in6.h",
179 "poll.h", 185 "poll.h",
186 "sys/ioctl.h",
180 "sys/mount.h", 187 "sys/mount.h",
181 "sys/select.h", 188 "sys/select.h",
189 "sys/signal.h",
182 "sys/socket.h", 190 "sys/socket.h",
183 "sys/termios.h", 191 "sys/termios.h",
184 "sys/utsname.h", 192 "sys/utsname.h",
185 ], 193 ],
186 'DEST': 'include/pnacl', 194 'DEST': 'include/pnacl',
187 }, 195 },
188 { 196 {
189 'FILES': [ 197 'FILES': [
190 "poll.h", 198 "poll.h",
191 ], 199 ],
192 'DEST': 'include/win', 200 'DEST': 'include/win',
193 }, 201 },
194 { 202 {
195 'FILES': [ 203 'FILES': [
196 "all_interfaces.h", 204 "all_interfaces.h",
197 "define_empty_macros.h", 205 "define_empty_macros.h",
198 "undef_macros.h", 206 "undef_macros.h",
199 ], 207 ],
200 'DEST': 'include/nacl_io/pepper', 208 'DEST': 'include/nacl_io/pepper',
201 } 209 }
202 ], 210 ],
203 'DEST': 'src', 211 'DEST': 'src',
204 'NAME': 'nacl_io', 212 'NAME': 'nacl_io',
205 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698