OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['newlib', 'glibc', 'bionic', 'pnacl', 'linux'], | 2 'TOOLS': ['newlib', 'glibc', 'bionic', 'pnacl', 'linux'], |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "syscalls/access.c", | 68 "syscalls/access.c", |
69 "syscalls/cfgetispeed.c", | 69 "syscalls/cfgetispeed.c", |
70 "syscalls/cfgetospeed.c", | 70 "syscalls/cfgetospeed.c", |
71 "syscalls/cfsetispeed.c", | 71 "syscalls/cfsetispeed.c", |
72 "syscalls/cfsetospeed.c", | 72 "syscalls/cfsetospeed.c", |
73 "syscalls/cfsetspeed.c", | 73 "syscalls/cfsetspeed.c", |
74 "syscalls/chown.c", | 74 "syscalls/chown.c", |
75 "syscalls/fchown.c", | 75 "syscalls/fchown.c", |
76 "syscalls/fcntl.c", | 76 "syscalls/fcntl.c", |
77 "syscalls/ftruncate.c", | 77 "syscalls/ftruncate.c", |
| 78 "syscalls/futimes.c", |
78 "syscalls/getcwd.c", | 79 "syscalls/getcwd.c", |
79 "syscalls/getwd.c", | 80 "syscalls/getwd.c", |
80 "syscalls/ioctl.c", | 81 "syscalls/ioctl.c", |
81 "syscalls/isatty.c", | 82 "syscalls/isatty.c", |
82 "syscalls/kill.c", | 83 "syscalls/kill.c", |
83 "syscalls/killpg.c", | 84 "syscalls/killpg.c", |
84 "syscalls/lchown.c", | 85 "syscalls/lchown.c", |
85 "syscalls/mount.c", | 86 "syscalls/mount.c", |
86 "syscalls/pipe.c", | 87 "syscalls/pipe.c", |
87 "syscalls/poll.c", | 88 "syscalls/poll.c", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 "netinet/tcp.h", | 226 "netinet/tcp.h", |
226 "netinet6/in6.h", | 227 "netinet6/in6.h", |
227 "poll.h", | 228 "poll.h", |
228 "sys/ioctl.h", | 229 "sys/ioctl.h", |
229 "sys/mount.h", | 230 "sys/mount.h", |
230 "sys/poll.h", | 231 "sys/poll.h", |
231 "sys/select.h", | 232 "sys/select.h", |
232 "sys/signal.h", | 233 "sys/signal.h", |
233 "sys/socket.h", | 234 "sys/socket.h", |
234 "sys/termios.h", | 235 "sys/termios.h", |
| 236 "sys/time.h", |
235 "sys/utsname.h", | 237 "sys/utsname.h", |
| 238 "utime.h", |
236 ], | 239 ], |
237 'DEST': 'include/newlib', | 240 'DEST': 'include/newlib', |
238 }, | 241 }, |
239 { | 242 { |
240 'FILES': [ | 243 'FILES': [ |
241 "arpa/inet.h", | 244 "arpa/inet.h", |
242 "memory.h", | 245 "memory.h", |
243 "netdb.h", | 246 "netdb.h", |
244 "netinet/in.h", | 247 "netinet/in.h", |
245 "netinet/tcp.h", | 248 "netinet/tcp.h", |
246 "netinet6/in6.h", | 249 "netinet6/in6.h", |
247 "poll.h", | 250 "poll.h", |
248 "sys/ioctl.h", | 251 "sys/ioctl.h", |
249 "sys/mount.h", | 252 "sys/mount.h", |
250 "sys/poll.h", | 253 "sys/poll.h", |
251 "sys/select.h", | 254 "sys/select.h", |
252 "sys/socket.h", | 255 "sys/socket.h", |
253 "sys/termios.h", | 256 "sys/termios.h", |
| 257 "sys/time.h", |
254 "sys/utsname.h", | 258 "sys/utsname.h", |
| 259 "utime.h", |
255 ], | 260 ], |
256 'DEST': 'include/pnacl', | 261 'DEST': 'include/pnacl', |
257 }, | 262 }, |
258 { | 263 { |
259 'FILES': [ | 264 'FILES': [ |
260 "poll.h", | 265 "poll.h", |
261 "sys/poll.h", | 266 "sys/poll.h", |
262 ], | 267 ], |
263 'DEST': 'include/win', | 268 'DEST': 'include/win', |
264 }, | 269 }, |
265 { | 270 { |
266 'FILES': [ | 271 'FILES': [ |
267 "all_interfaces.h", | 272 "all_interfaces.h", |
268 "define_empty_macros.h", | 273 "define_empty_macros.h", |
269 "undef_macros.h", | 274 "undef_macros.h", |
270 ], | 275 ], |
271 'DEST': 'include/nacl_io/pepper', | 276 'DEST': 'include/nacl_io/pepper', |
272 } | 277 } |
273 ], | 278 ], |
274 'DEST': 'src', | 279 'DEST': 'src', |
275 'NAME': 'nacl_io', | 280 'NAME': 'nacl_io', |
276 } | 281 } |
OLD | NEW |