OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux'], | 2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux'], |
3 'SEL_LDR': True, | 3 'SEL_LDR': True, |
4 | 4 |
5 'TARGETS': [ | 5 'TARGETS': [ |
6 { | 6 { |
7 'NAME' : 'nacl_io_test', | 7 'NAME' : 'nacl_io_test', |
8 'TYPE' : 'main', | 8 'TYPE' : 'main', |
9 'SOURCES' : [ | 9 'SOURCES' : [ |
10 'dev_fs_for_testing.h', | 10 'dev_fs_for_testing.h', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 'kernel_proxy_test.cc', | 46 'kernel_proxy_test.cc', |
47 'kernel_wrap_test.cc', | 47 'kernel_wrap_test.cc', |
48 'main.cc', | 48 'main.cc', |
49 'mem_fs_node_test.cc', | 49 'mem_fs_node_test.cc', |
50 'mock_fs.cc', | 50 'mock_fs.cc', |
51 'mock_fs.h', | 51 'mock_fs.h', |
52 'mock_kernel_proxy.h', | 52 'mock_kernel_proxy.h', |
53 'mock_node.cc', | 53 'mock_node.cc', |
54 'mock_node.h', | 54 'mock_node.h', |
55 'mock_util.h', | 55 'mock_util.h', |
| 56 'syscalls_test.cc', |
56 'path_test.cc', | 57 'path_test.cc', |
57 'pepper_interface_mock.cc', | 58 'pepper_interface_mock.cc', |
58 'pepper_interface_mock.h', | 59 'pepper_interface_mock.h', |
59 'socket_test.cc', | 60 'socket_test.cc', |
60 'tty_test.cc', | 61 'tty_test.cc', |
61 ], | 62 ], |
62 'DEPS': ['ppapi_simple', 'nacl_io'], | 63 'DEPS': ['ppapi_simple', 'nacl_io'], |
63 # Order matters here: gtest has a "main" function that will be used if | 64 # Order matters here: gtest has a "main" function that will be used if |
64 # referenced before ppapi. | 65 # referenced before ppapi. |
65 'LIBS': ['ppapi_simple', 'gmock', 'nacl_io', 'ppapi_cpp', 'ppapi', 'gtest'
, 'pthread'], | 66 'LIBS': ['ppapi_simple', 'gmock', 'nacl_io', 'ppapi_cpp', 'ppapi', 'gtest'
, 'pthread'], |
66 'INCLUDES': ["."], | 67 'INCLUDES': ["."], |
67 'CXXFLAGS': ['-Wno-sign-compare'], | 68 'CXXFLAGS': ['-Wno-sign-compare'], |
68 } | 69 } |
69 ], | 70 ], |
70 'DATA': [ | 71 'DATA': [ |
71 'example.js' | 72 'example.js' |
72 ], | 73 ], |
73 'DEST': 'tests', | 74 'DEST': 'tests', |
74 'NAME': 'nacl_io_test', | 75 'NAME': 'nacl_io_test', |
75 'TITLE': 'NaCl IO test', | 76 'TITLE': 'NaCl IO test', |
76 } | 77 } |
OLD | NEW |