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