| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| 3 'SEARCH': [ | 3 'SEARCH': [ |
| 4 '.', | 4 '.', |
| 5 'pepper', | 5 'pepper', |
| 6 '../utils' | 6 '../utils' |
| 7 ], | 7 ], |
| 8 'TARGETS': [ | 8 'TARGETS': [ |
| 9 { | 9 { |
| 10 'NAME' : 'nacl_io', | 10 'NAME' : 'nacl_io', |
| 11 'TYPE' : 'lib', | 11 'TYPE' : 'lib', |
| 12 'SOURCES' : [ | 12 'SOURCES' : [ |
| 13 "kernel_handle.cc", | 13 "kernel_handle.cc", |
| 14 "kernel_intercept.cc", | 14 "kernel_intercept.cc", |
| 15 "kernel_object.cc", | 15 "kernel_object.cc", |
| 16 "kernel_proxy.cc", | 16 "kernel_proxy.cc", |
| 17 "kernel_wrap_glibc.cc", | 17 "kernel_wrap_glibc.cc", |
| 18 "kernel_wrap_newlib.cc", | 18 "kernel_wrap_newlib.cc", |
| 19 "kernel_wrap_win.cc", | 19 "kernel_wrap_win.cc", |
| 20 "mount.cc", | 20 "mount.cc", |
| 21 "mount_dev.cc", | 21 "mount_dev.cc", |
| 22 "mount_html5fs.cc", | 22 "mount_html5fs.cc", |
| 23 "mount_http.cc", | 23 "mount_http.cc", |
| 24 "mount_mem.cc", | 24 "mount_mem.cc", |
| 25 "mount_node.cc", | 25 "mount_node.cc", |
| 26 "mount_node_dir.cc", | 26 "mount_node_dir.cc", |
| 27 "mount_node_html5fs.cc", | 27 "mount_node_html5fs.cc", |
| 28 "mount_node_http.cc", |
| 28 "mount_node_mem.cc", | 29 "mount_node_mem.cc", |
| 29 "mount_passthrough.cc", | 30 "mount_passthrough.cc", |
| 30 "nacl_io.cc", | 31 "nacl_io.cc", |
| 31 "path.cc", | 32 "path.cc", |
| 32 "pepper_interface.cc", | 33 "pepper_interface.cc", |
| 33 "real_pepper_interface.cc", | 34 "real_pepper_interface.cc", |
| 34 ], | 35 ], |
| 35 } | 36 } |
| 36 ], | 37 ], |
| 37 'HEADERS': [ | 38 'HEADERS': [ |
| 38 { | 39 { |
| 39 'FILES': [ | 40 'FILES': [ |
| 41 "error.h", |
| 40 "inode_pool.h", | 42 "inode_pool.h", |
| 41 "kernel_handle.h", | 43 "kernel_handle.h", |
| 42 "kernel_intercept.h", | 44 "kernel_intercept.h", |
| 43 "kernel_object.h", | 45 "kernel_object.h", |
| 44 "kernel_proxy.h", | 46 "kernel_proxy.h", |
| 45 "kernel_wrap.h", | 47 "kernel_wrap.h", |
| 46 "kernel_wrap_real.h", | 48 "kernel_wrap_real.h", |
| 47 "mount.h", | 49 "mount.h", |
| 48 "mount_dev.h", | 50 "mount_dev.h", |
| 49 "mount_html5fs.h", | 51 "mount_html5fs.h", |
| 50 "mount_http.h", | 52 "mount_http.h", |
| 51 "mount_mem.h", | 53 "mount_mem.h", |
| 52 "mount_node_dir.h", | 54 "mount_node_dir.h", |
| 53 "mount_node.h", | 55 "mount_node.h", |
| 54 "mount_node_html5fs.h", | 56 "mount_node_html5fs.h", |
| 57 "mount_node_http.h", |
| 55 "mount_node_mem.h", | 58 "mount_node_mem.h", |
| 56 "mount_passthrough.h", | 59 "mount_passthrough.h", |
| 57 "nacl_io.h", | 60 "nacl_io.h", |
| 58 "osdirent.h", | 61 "osdirent.h", |
| 59 "osinttypes.h", | 62 "osinttypes.h", |
| 60 "osmman.h", | 63 "osmman.h", |
| 61 "osstat.h", | 64 "osstat.h", |
| 62 "ostypes.h", | 65 "ostypes.h", |
| 63 "path.h", | 66 "path.h", |
| 64 "pepper_interface.h", | 67 "pepper_interface.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 79 "auto_lock.h", | 82 "auto_lock.h", |
| 80 "macros.h", | 83 "macros.h", |
| 81 "ref_object.h" | 84 "ref_object.h" |
| 82 ], | 85 ], |
| 83 'DEST': 'include/utils', | 86 'DEST': 'include/utils', |
| 84 } | 87 } |
| 85 ], | 88 ], |
| 86 'DEST': 'src', | 89 'DEST': 'src', |
| 87 'NAME': 'nacl_io', | 90 'NAME': 'nacl_io', |
| 88 } | 91 } |
| OLD | NEW |