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

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

Issue 11744010: [NaCl SDK] Change the kernel_wrap OS #ifdefs in nacl_mounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « native_client_sdk/src/libraries/nacl_mounts/kernel_wrap_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
22 "kernel_wrap_newlib.cc",
23 "kernel_wrap_win.cc",
21 "mount.cc", 24 "mount.cc",
22 "mount_dev.cc", 25 "mount_dev.cc",
23 "mount_html5fs.cc", 26 "mount_html5fs.cc",
24 "mount_mem.cc", 27 "mount_mem.cc",
25 "mount_node.cc", 28 "mount_node.cc",
26 "mount_node_dir.cc", 29 "mount_node_dir.cc",
27 "mount_node_html5fs.cc", 30 "mount_node_html5fs.cc",
28 "mount_node_mem.cc", 31 "mount_node_mem.cc",
29 "nacl_mounts.cc", 32 "nacl_mounts.cc",
30 "path.cc", 33 "path.cc",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 }, 72 },
70 { 73 {
71 'FILES': [ 74 'FILES': [
72 "auto_lock.h", 75 "auto_lock.h",
73 "macros.h", 76 "macros.h",
74 "ref_object.h" 77 "ref_object.h"
75 ], 78 ],
76 'DEST': 'include/utils', 79 'DEST': 'include/utils',
77 } 80 }
78 ], 81 ],
79 'DATA': [
80 "kernel_wrap_glibc.cc",
81 "kernel_wrap_newlib.cc",
82 "kernel_wrap_win.cc",
83 ],
84 'DEST': 'src', 82 'DEST': 'src',
85 'NAME': 'nacl_mounts', 83 'NAME': 'nacl_mounts',
86 } 84 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_mounts/kernel_wrap_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698