| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl'], |
| 3 'SEL_LDR': True, | 3 'SEL_LDR': True, |
| 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_io_test', | 9 'NAME' : 'nacl_io_test', |
| 10 'TYPE' : 'main', | 10 'TYPE' : 'main', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'mount_mock.h', | 32 'mount_mock.h', |
| 33 'mount_node_mock.cc', | 33 'mount_node_mock.cc', |
| 34 'mount_node_mock.h', | 34 'mount_node_mock.h', |
| 35 'mount_node_test.cc', | 35 'mount_node_test.cc', |
| 36 'mount_node_tty_test.cc', | 36 'mount_node_tty_test.cc', |
| 37 'mount_test.cc', | 37 'mount_test.cc', |
| 38 'path_test.cc', | 38 'path_test.cc', |
| 39 'pepper_interface_mock.cc', | 39 'pepper_interface_mock.cc', |
| 40 'pepper_interface_mock.h', | 40 'pepper_interface_mock.h', |
| 41 'socket_test.cc', | 41 'socket_test.cc', |
| 42 'syscalls_test.cc', |
| 42 ], | 43 ], |
| 43 'DEPS': ['ppapi_simple', 'nacl_io'], | 44 'DEPS': ['ppapi_simple', 'nacl_io'], |
| 44 # Order matters here: gtest has a "main" function that will be used if | 45 # Order matters here: gtest has a "main" function that will be used if |
| 45 # referenced before ppapi. | 46 # referenced before ppapi. |
| 46 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'], | 47 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'], |
| 47 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], | 48 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], |
| 48 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'], | 49 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'], |
| 49 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'], | 50 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'], |
| 50 } | 51 } |
| 51 ], | 52 ], |
| 52 'DATA': [ | 53 'DATA': [ |
| 53 'example.js' | 54 'example.js' |
| 54 ], | 55 ], |
| 55 'DEST': 'tests', | 56 'DEST': 'tests', |
| 56 'NAME': 'nacl_io_test', | 57 'NAME': 'nacl_io_test', |
| 57 'TITLE': 'NaCl IO test', | 58 'TITLE': 'NaCl IO test', |
| 58 } | 59 } |
| OLD | NEW |