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

Side by Side Diff: native_client_sdk/src/libraries/nacl_mounts/library.dsc

Issue 11887021: [NaCl SDK] Add HTTP mount. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: docs for nacl_mounts.h Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'TOOLS': ['newlib', 'glibc', 'win'], 5 'TOOLS': ['newlib', 'glibc', 'win'],
6 'SEARCH': [ 6 'SEARCH': [
7 '.', 7 '.',
8 'pepper', 8 'pepper',
9 '../utils' 9 '../utils'
10 ], 10 ],
11 'TARGETS': [ 11 'TARGETS': [
12 { 12 {
13 'NAME' : 'nacl_mounts', 13 'NAME' : 'nacl_mounts',
14 'TYPE' : 'lib', 14 'TYPE' : 'lib',
15 'SOURCES' : [ 15 'SOURCES' : [
16 "kernel_handle.cc", 16 "kernel_handle.cc",
17 "kernel_intercept.cc", 17 "kernel_intercept.cc",
18 "kernel_object.cc", 18 "kernel_object.cc",
19 "kernel_proxy.cc", 19 "kernel_proxy.cc",
20 "kernel_wrap.cc", 20 "kernel_wrap.cc",
21 "kernel_wrap_glibc.cc", 21 "kernel_wrap_glibc.cc",
22 "kernel_wrap_newlib.cc", 22 "kernel_wrap_newlib.cc",
23 "kernel_wrap_win.cc", 23 "kernel_wrap_win.cc",
24 "mount.cc", 24 "mount.cc",
25 "mount_dev.cc", 25 "mount_dev.cc",
26 "mount_html5fs.cc", 26 "mount_html5fs.cc",
27 "mount_http.cc",
27 "mount_mem.cc", 28 "mount_mem.cc",
28 "mount_node.cc", 29 "mount_node.cc",
29 "mount_node_dir.cc", 30 "mount_node_dir.cc",
30 "mount_node_html5fs.cc", 31 "mount_node_html5fs.cc",
31 "mount_node_mem.cc", 32 "mount_node_mem.cc",
32 "nacl_mounts.cc", 33 "nacl_mounts.cc",
33 "path.cc", 34 "path.cc",
34 "pepper_interface.cc", 35 "pepper_interface.cc",
35 "real_pepper_interface.cc", 36 "real_pepper_interface.cc",
36 ], 37 ],
37 } 38 }
38 ], 39 ],
39 'HEADERS': [ 40 'HEADERS': [
40 { 41 {
41 'FILES': [ 42 'FILES': [
42 "kernel_handle.h", 43 "kernel_handle.h",
43 "kernel_intercept.h", 44 "kernel_intercept.h",
44 "kernel_object.h", 45 "kernel_object.h",
45 "kernel_proxy.h", 46 "kernel_proxy.h",
46 "kernel_wrap.h", 47 "kernel_wrap.h",
47 "mount.h", 48 "mount.h",
48 "mount_dev.h", 49 "mount_dev.h",
49 "mount_html5fs.h", 50 "mount_html5fs.h",
51 "mount_http.h",
50 "mount_mem.h", 52 "mount_mem.h",
51 "mount_node_dir.h", 53 "mount_node_dir.h",
52 "mount_node.h", 54 "mount_node.h",
53 "mount_node_html5fs.h", 55 "mount_node_html5fs.h",
54 "mount_node_mem.h", 56 "mount_node_mem.h",
55 "nacl_mounts.h", 57 "nacl_mounts.h",
56 "osdirent.h", 58 "osdirent.h",
57 "osstat.h", 59 "osstat.h",
58 "ostypes.h", 60 "ostypes.h",
59 "path.h", 61 "path.h",
(...skipping 15 matching lines...) Expand all
75 "auto_lock.h", 77 "auto_lock.h",
76 "macros.h", 78 "macros.h",
77 "ref_object.h" 79 "ref_object.h"
78 ], 80 ],
79 'DEST': 'include/utils', 81 'DEST': 'include/utils',
80 } 82 }
81 ], 83 ],
82 'DEST': 'src', 84 'DEST': 'src',
83 'NAME': 'nacl_mounts', 85 'NAME': 'nacl_mounts',
84 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698