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

Side by Side 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, 4 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
(Empty)
1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'],
3 'SEARCH': [
4 '.',
5 '../utils'
6 ],
7 'TARGETS': [
8 {
9 'NAME' : 'nacl_mounts',
10 'TYPE' : 'lib',
11 'SOURCES' : [
12 "kernel_handle.cc",
13 "kernel_intercept.cc",
14 "kernel_object.cc",
15 "kernel_proxy.cc",
16 "mount.cc",
17 "mount_mem.cc",
18 "mount_node.cc",
19 "mount_node_dir.cc",
20 "mount_node_mem.cc",
21 "path.cc",
22 ],
23 }
24 ],
25 'HEADERS': [
26 {
27 'FILES': [
28 "kernel_handle.h",
29 "kernel_intercept.h",
30 "kernel_object.h",
31 "kernel_proxy.h",
32 "mount.h",
33 "mount_mem.h",
34 "mount_node_dir.h",
35 "mount_node.h",
36 "mount_node_mem.h",
37 "osdirent.h",
38 "osstat.h",
39 "ostypes.h",
40 "path.h"
41 ],
42 'DEST': 'include/nacl_mounts',
43 },
44 {
45 'FILES': [
binji 2012/07/26 22:49:58 I'll refactor this out in the next CL
46 "auto_lock.h",
47 "macros.h",
48 "ref_object.h"
49 ],
50 'DEST': 'include/utils',
51 }
52 ],
53 'DEST': 'src',
54 'NAME': 'nacl_mounts',
55 'EXPERIMENTAL': True
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698