OLD | NEW |
---|---|
(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 } | |
OLD | NEW |