Chromium Code Reviews| Index: native_client_sdk/src/libraries/nacl_mounts/library.dsc |
| diff --git a/native_client_sdk/src/libraries/nacl_mounts/library.dsc b/native_client_sdk/src/libraries/nacl_mounts/library.dsc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b1a1d0df2823f1fe62ceb9c8d46ad2d24db3011d |
| --- /dev/null |
| +++ b/native_client_sdk/src/libraries/nacl_mounts/library.dsc |
| @@ -0,0 +1,56 @@ |
| +{ |
| + 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| + 'SEARCH': [ |
| + '.', |
| + '../utils' |
| + ], |
| + 'TARGETS': [ |
| + { |
| + 'NAME' : 'nacl_mounts', |
| + 'TYPE' : 'lib', |
| + 'SOURCES' : [ |
| + "kernel_handle.cc", |
| + "kernel_intercept.cc", |
| + "kernel_object.cc", |
| + "kernel_proxy.cc", |
| + "mount.cc", |
| + "mount_mem.cc", |
| + "mount_node.cc", |
| + "mount_node_dir.cc", |
| + "mount_node_mem.cc", |
| + "path.cc", |
| + ], |
| + } |
| + ], |
| + 'HEADERS': [ |
| + { |
| + 'FILES': [ |
| + "kernel_handle.h", |
| + "kernel_intercept.h", |
| + "kernel_object.h", |
| + "kernel_proxy.h", |
| + "mount.h", |
| + "mount_mem.h", |
| + "mount_node_dir.h", |
| + "mount_node.h", |
| + "mount_node_mem.h", |
| + "osdirent.h", |
| + "osstat.h", |
| + "ostypes.h", |
| + "path.h" |
| + ], |
| + 'DEST': 'include/nacl_mounts', |
| + }, |
| + { |
| + 'FILES': [ |
|
binji
2012/07/26 22:49:58
I'll refactor this out in the next CL
|
| + "auto_lock.h", |
| + "macros.h", |
| + "ref_object.h" |
| + ], |
| + 'DEST': 'include/utils', |
| + } |
| + ], |
| + 'DEST': 'src', |
| + 'NAME': 'nacl_mounts', |
| + 'EXPERIMENTAL': True |
| +} |