OLD | NEW |
1 { | 1 { |
2 # Disabled pnacl for now because it warns on using the language extension | 2 # Disabled pnacl for now because it warns on using the language extension |
3 # typeof(...) | 3 # typeof(...) |
4 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 4 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
5 'SEARCH': [ | 5 'SEARCH': [ |
6 '.', | 6 '.', |
7 'pepper', | 7 'pepper', |
8 '../utils' | 8 '../utils' |
9 ], | 9 ], |
10 'TARGETS': [ | 10 'TARGETS': [ |
11 { | 11 { |
12 'NAME' : 'nacl_mounts', | 12 'NAME' : 'nacl_io', |
13 'TYPE' : 'lib', | 13 'TYPE' : 'lib', |
14 'SOURCES' : [ | 14 'SOURCES' : [ |
15 "kernel_handle.cc", | 15 "kernel_handle.cc", |
16 "kernel_intercept.cc", | 16 "kernel_intercept.cc", |
17 "kernel_object.cc", | 17 "kernel_object.cc", |
18 "kernel_proxy.cc", | 18 "kernel_proxy.cc", |
19 "kernel_wrap_glibc.cc", | 19 "kernel_wrap_glibc.cc", |
20 "kernel_wrap_newlib.cc", | 20 "kernel_wrap_newlib.cc", |
21 "kernel_wrap_win.cc", | 21 "kernel_wrap_win.cc", |
22 "mount.cc", | 22 "mount.cc", |
23 "mount_dev.cc", | 23 "mount_dev.cc", |
24 "mount_html5fs.cc", | 24 "mount_html5fs.cc", |
25 "mount_http.cc", | 25 "mount_http.cc", |
26 "mount_mem.cc", | 26 "mount_mem.cc", |
27 "mount_node.cc", | 27 "mount_node.cc", |
28 "mount_node_dir.cc", | 28 "mount_node_dir.cc", |
29 "mount_node_html5fs.cc", | 29 "mount_node_html5fs.cc", |
30 "mount_node_mem.cc", | 30 "mount_node_mem.cc", |
31 "nacl_mounts.cc", | 31 "nacl_io.cc", |
32 "path.cc", | 32 "path.cc", |
33 "pepper_interface.cc", | 33 "pepper_interface.cc", |
34 "real_pepper_interface.cc", | 34 "real_pepper_interface.cc", |
35 ], | 35 ], |
36 } | 36 } |
37 ], | 37 ], |
38 'HEADERS': [ | 38 'HEADERS': [ |
39 { | 39 { |
40 'FILES': [ | 40 'FILES': [ |
41 "inode_pool.h", | 41 "inode_pool.h", |
42 "kernel_handle.h", | 42 "kernel_handle.h", |
43 "kernel_intercept.h", | 43 "kernel_intercept.h", |
44 "kernel_object.h", | 44 "kernel_object.h", |
45 "kernel_proxy.h", | 45 "kernel_proxy.h", |
46 "kernel_wrap.h", | 46 "kernel_wrap.h", |
47 "mount.h", | 47 "mount.h", |
48 "mount_dev.h", | 48 "mount_dev.h", |
49 "mount_html5fs.h", | 49 "mount_html5fs.h", |
50 "mount_http.h", | 50 "mount_http.h", |
51 "mount_mem.h", | 51 "mount_mem.h", |
52 "mount_node_dir.h", | 52 "mount_node_dir.h", |
53 "mount_node.h", | 53 "mount_node.h", |
54 "mount_node_html5fs.h", | 54 "mount_node_html5fs.h", |
55 "mount_node_mem.h", | 55 "mount_node_mem.h", |
56 "nacl_mounts.h", | 56 "nacl_io.h", |
57 "osdirent.h", | 57 "osdirent.h", |
58 "osinttypes.h", | 58 "osinttypes.h", |
59 "osstat.h", | 59 "osstat.h", |
60 "ostypes.h", | 60 "ostypes.h", |
61 "path.h", | 61 "path.h", |
62 "pepper_interface.h", | 62 "pepper_interface.h", |
63 "real_pepper_interface.h", | 63 "real_pepper_interface.h", |
64 ], | 64 ], |
65 'DEST': 'include/nacl_mounts', | 65 'DEST': 'include/nacl_io', |
66 }, | 66 }, |
67 { | 67 { |
68 'FILES': [ | 68 'FILES': [ |
69 "all_interfaces.h", | 69 "all_interfaces.h", |
70 "define_empty_macros.h", | 70 "define_empty_macros.h", |
71 "undef_macros.h", | 71 "undef_macros.h", |
72 ], | 72 ], |
73 'DEST': 'include/nacl_mounts/pepper', | 73 'DEST': 'include/nacl_io/pepper', |
74 }, | 74 }, |
75 { | 75 { |
76 'FILES': [ | 76 'FILES': [ |
77 "auto_lock.h", | 77 "auto_lock.h", |
78 "macros.h", | 78 "macros.h", |
79 "ref_object.h" | 79 "ref_object.h" |
80 ], | 80 ], |
81 'DEST': 'include/utils', | 81 'DEST': 'include/utils', |
82 } | 82 } |
83 ], | 83 ], |
84 'DATA': [ | 84 'DATA': [ |
85 'Makefile', | 85 'Makefile', |
86 ], | 86 ], |
87 'DEST': 'src', | 87 'DEST': 'src', |
88 'NAME': 'nacl_mounts', | 88 'NAME': 'nacl_io', |
89 } | 89 } |
OLD | NEW |