OLD | NEW |
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 14 matching lines...) Expand all Loading... |
25 "mount.cc", | 25 "mount.cc", |
26 "mount_dev.cc", | 26 "mount_dev.cc", |
27 "mount_html5fs.cc", | 27 "mount_html5fs.cc", |
28 "mount_http.cc", | 28 "mount_http.cc", |
29 "mount_mem.cc", | 29 "mount_mem.cc", |
30 "mount_node.cc", | 30 "mount_node.cc", |
31 "mount_node_dir.cc", | 31 "mount_node_dir.cc", |
32 "mount_node_html5fs.cc", | 32 "mount_node_html5fs.cc", |
33 "mount_node_http.cc", | 33 "mount_node_http.cc", |
34 "mount_node_mem.cc", | 34 "mount_node_mem.cc", |
| 35 "mount_node_socket.cc", |
| 36 "mount_node_tcp.cc", |
| 37 "mount_node_udp.cc", |
35 "mount_passthrough.cc", | 38 "mount_passthrough.cc", |
| 39 "mount_socket.cc", |
36 "nacl_io.cc", | 40 "nacl_io.cc", |
37 "path.cc", | 41 "path.cc", |
38 "pepper_interface.cc", | 42 "pepper_interface.cc", |
39 "real_pepper_interface.cc", | 43 "real_pepper_interface.cc", |
40 "syscalls/access.c", | 44 "syscalls/access.c", |
41 "syscalls/chdir.c", | 45 "syscalls/chdir.c", |
42 "syscalls/chmod.c", | 46 "syscalls/chmod.c", |
43 "syscalls/chown.c", | 47 "syscalls/chown.c", |
44 "syscalls/fchown.c", | 48 "syscalls/fchown.c", |
45 "syscalls/fsync.c", | 49 "syscalls/fsync.c", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "mount_dev.h", | 92 "mount_dev.h", |
89 "mount_factory.h", | 93 "mount_factory.h", |
90 "mount_html5fs.h", | 94 "mount_html5fs.h", |
91 "mount_http.h", | 95 "mount_http.h", |
92 "mount_mem.h", | 96 "mount_mem.h", |
93 "mount_node_dir.h", | 97 "mount_node_dir.h", |
94 "mount_node.h", | 98 "mount_node.h", |
95 "mount_node_html5fs.h", | 99 "mount_node_html5fs.h", |
96 "mount_node_http.h", | 100 "mount_node_http.h", |
97 "mount_node_mem.h", | 101 "mount_node_mem.h", |
| 102 "mount_node_socket.h", |
| 103 "mount_node_tcp.h", |
| 104 "mount_node_udp.h", |
98 "mount_passthrough.h", | 105 "mount_passthrough.h", |
| 106 "mount_socket.h", |
99 "nacl_io.h", | 107 "nacl_io.h", |
100 "osdirent.h", | 108 "osdirent.h", |
101 "osinttypes.h", | 109 "osinttypes.h", |
102 "osmman.h", | 110 "osmman.h", |
103 "ossocket.h", | 111 "ossocket.h", |
104 "osstat.h", | 112 "osstat.h", |
105 "ostime.h", | 113 "ostime.h", |
106 "ostypes.h", | 114 "ostypes.h", |
107 "osunistd.h", | 115 "osunistd.h", |
108 "osutime.h", | 116 "osutime.h", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 "all_interfaces.h", | 161 "all_interfaces.h", |
154 "define_empty_macros.h", | 162 "define_empty_macros.h", |
155 "undef_macros.h", | 163 "undef_macros.h", |
156 ], | 164 ], |
157 'DEST': 'include/nacl_io/pepper', | 165 'DEST': 'include/nacl_io/pepper', |
158 } | 166 } |
159 ], | 167 ], |
160 'DEST': 'src', | 168 'DEST': 'src', |
161 'NAME': 'nacl_io', | 169 'NAME': 'nacl_io', |
162 } | 170 } |
OLD | NEW |