Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(987)

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/library.dsc

Issue 10829027: [NaCl SDK] Add nacl_mounts to NaCl SDK build. Experimental for now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for windows Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
+}

Powered by Google App Engine
This is Rietveld 408576698