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

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: merge 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', 'win'], 4 'TOOLS': ['newlib', 'glibc', 'win'],
5 'SEARCH': [ 5 'SEARCH': [
6 '.', 6 '.',
7 'pepper', 7 'pepper',
8 '../utils' 8 '../utils'
9 ], 9 ],
10 'TARGETS': [ 10 'TARGETS': [
11 { 11 {
12 'NAME' : 'nacl_mounts', 12 'NAME' : 'nacl_mounts',
13 'TYPE' : 'lib', 13 'TYPE' : 'lib',
14 'SOURCES' : [ 14 'SOURCES' : [
15 "kernel_handle.cc", 15 "kernel_handle.cc",
16 "kernel_intercept.cc", 16 "kernel_intercept.cc",
17 "kernel_object.cc", 17 "kernel_object.cc",
18 "kernel_proxy.cc", 18 "kernel_proxy.cc",
19 "kernel_wrap_glibc.cc", 19 "kernel_wrap_glibc.cc",
20 "kernel_wrap_newlib.cc", 20 "kernel_wrap_newlib.cc",
21 "kernel_wrap_win.cc", 21 "kernel_wrap_win.cc",
22 "mount.cc", 22 "mount.cc",
23 "mount_dev.cc", 23 "mount_dev.cc",
24 "mount_html5fs.cc", 24 "mount_html5fs.cc",
25 "mount_http.cc",
25 "mount_mem.cc", 26 "mount_mem.cc",
26 "mount_node.cc", 27 "mount_node.cc",
27 "mount_node_dir.cc", 28 "mount_node_dir.cc",
28 "mount_node_html5fs.cc", 29 "mount_node_html5fs.cc",
29 "mount_node_mem.cc", 30 "mount_node_mem.cc",
30 "nacl_mounts.cc", 31 "nacl_mounts.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': [
40 "kernel_handle.h", 41 "kernel_handle.h",
41 "kernel_intercept.h", 42 "kernel_intercept.h",
42 "kernel_object.h", 43 "kernel_object.h",
43 "kernel_proxy.h", 44 "kernel_proxy.h",
44 "kernel_wrap.h", 45 "kernel_wrap.h",
45 "mount.h", 46 "mount.h",
46 "mount_dev.h", 47 "mount_dev.h",
47 "mount_html5fs.h", 48 "mount_html5fs.h",
49 "mount_http.h",
48 "mount_mem.h", 50 "mount_mem.h",
49 "mount_node_dir.h", 51 "mount_node_dir.h",
50 "mount_node.h", 52 "mount_node.h",
51 "mount_node_html5fs.h", 53 "mount_node_html5fs.h",
52 "mount_node_mem.h", 54 "mount_node_mem.h",
53 "nacl_mounts.h", 55 "nacl_mounts.h",
54 "osdirent.h", 56 "osdirent.h",
57 "osinttypes.h",
55 "osstat.h", 58 "osstat.h",
56 "ostypes.h", 59 "ostypes.h",
57 "path.h", 60 "path.h",
58 "pepper_interface.h", 61 "pepper_interface.h",
59 "real_pepper_interface.h", 62 "real_pepper_interface.h",
60 ], 63 ],
61 'DEST': 'include/nacl_mounts', 64 'DEST': 'include/nacl_mounts',
62 }, 65 },
63 { 66 {
64 'FILES': [ 67 'FILES': [
(...skipping 11 matching lines...) Expand all
76 ], 79 ],
77 'DEST': 'include/utils', 80 'DEST': 'include/utils',
78 } 81 }
79 ], 82 ],
80 'DATA': [ 83 'DATA': [
81 'Makefile', 84 'Makefile',
82 ], 85 ],
83 'DEST': 'src', 86 'DEST': 'src',
84 'NAME': 'nacl_mounts', 87 'NAME': 'nacl_mounts',
85 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698