OLD | NEW |
1 { | 1 { |
2 # TODO(binji): pnacl doesn't build right now because gtest doesn't build yet. | 2 # TODO(binji): pnacl doesn't build right now because gtest doesn't build yet. |
3 'TOOLS': ['newlib', 'glibc', 'win', 'linux'], | 3 'TOOLS': ['newlib', 'glibc', 'win'], |
4 | 4 |
5 # Need to add ../../examples for common.js | 5 # Need to add ../../examples for common.js |
6 'SEARCH': ['.', '../../examples'], | 6 'SEARCH': ['.', '../../examples'], |
7 'TARGETS': [ | 7 'TARGETS': [ |
8 { | 8 { |
9 'NAME' : 'nacl_mounts_test', | 9 'NAME' : 'nacl_mounts_test', |
10 'TYPE' : 'main', | 10 'TYPE' : 'main', |
11 'SOURCES' : [ | 11 'SOURCES' : [ |
12 'kernel_intercept_test.cc', | |
13 'kernel_object_test.cc', | 12 'kernel_object_test.cc', |
| 13 'kernel_proxy_mock.h', |
14 'kernel_proxy_test.cc', | 14 'kernel_proxy_test.cc', |
| 15 'kernel_wrap_test.cc', |
| 16 'module.cc', |
15 'mount_node_test.cc', | 17 'mount_node_test.cc', |
16 'mount_test.cc', | 18 'mount_test.cc', |
17 'path_test.cc', | 19 'path_test.cc', |
18 ], | 20 ], |
19 'LIBS': ['ppapi', 'pthread', 'gtest', 'nacl_mounts', 'ppapi_cpp', 'gtest_p
papi'] | 21 'LIBS': ['ppapi', 'pthread', 'gtest', 'gmock', 'nacl_mounts', 'ppapi_cpp',
'gtest_ppapi'] |
20 } | 22 } |
21 ], | 23 ], |
22 'DATA': [ | 24 'DATA': [ |
23 'example.js' | 25 'example.js' |
24 ], | 26 ], |
25 'DEST': 'tests', | 27 'DEST': 'tests', |
26 'NAME': 'nacl_mounts_test', | 28 'NAME': 'nacl_mounts_test', |
27 'TITLE': 'NaCl Mounts test', | 29 'TITLE': 'NaCl Mounts test', |
28 } | 30 } |
OLD | NEW |