| 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', |
| 11 'SOURCES' : [ | 11 'SOURCES' : [ |
| 12 'event_test.cc', | 12 'event_test.cc', |
| 13 'fake_core_interface.cc', | 13 'fake_core_interface.cc', |
| 14 'fake_core_interface.h', | 14 'fake_core_interface.h', |
| 15 'fake_pepper_interface_html5fs.cc', | 15 'fake_pepper_interface_html5fs.cc', |
| 16 'fake_pepper_interface_html5fs.h', | 16 'fake_pepper_interface_html5fs.h', |
| 17 'fake_resource_manager.cc', | 17 'fake_resource_manager.cc', |
| 18 'fake_resource_manager.h', | 18 'fake_resource_manager.h', |
| 19 'fake_var_interface.cc', | 19 'fake_var_interface.cc', |
| 20 'fake_var_interface.h', | 20 'fake_var_interface.h', |
| 21 'kernel_object_test.cc', | 21 'kernel_object_test.cc', |
| 22 'kernel_proxy_mock.cc', | 22 'kernel_proxy_mock.cc', |
| 23 'kernel_proxy_mock.h', | 23 'kernel_proxy_mock.h', |
| 24 'kernel_proxy_test.cc', | 24 'kernel_proxy_test.cc', |
| 25 'kernel_wrap_test.cc', | 25 'kernel_wrap_test.cc', |
| 26 'main.cc', | 26 'main.cc', |
| 27 'mock_util.h', | 27 'mock_util.h', |
| 28 'mount_dev_mock.h', |
| 28 'mount_html5fs_test.cc', | 29 'mount_html5fs_test.cc', |
| 29 'mount_http_test.cc', | 30 'mount_http_test.cc', |
| 30 'mount_mock.cc', | 31 'mount_mock.cc', |
| 31 'mount_mock.h', | 32 'mount_mock.h', |
| 32 'mount_node_mock.cc', | 33 'mount_node_mock.cc', |
| 33 'mount_node_mock.h', | 34 'mount_node_mock.h', |
| 34 'mount_node_test.cc', | 35 'mount_node_test.cc', |
| 36 'mount_node_tty_test.cc', |
| 35 'mount_test.cc', | 37 'mount_test.cc', |
| 36 'path_test.cc', | 38 'path_test.cc', |
| 37 'pepper_interface_mock.cc', | 39 'pepper_interface_mock.cc', |
| 38 'pepper_interface_mock.h', | 40 'pepper_interface_mock.h', |
| 39 'socket_test.cc', | 41 'socket_test.cc', |
| 40 ], | 42 ], |
| 41 'DEPS': ['ppapi_simple', 'nacl_io'], | 43 'DEPS': ['ppapi_simple', 'nacl_io'], |
| 42 # Order matters here: gtest has a "main" function that will be used if | 44 # Order matters here: gtest has a "main" function that will be used if |
| 43 # referenced before ppapi. | 45 # referenced before ppapi. |
| 44 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'], | 46 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'], |
| 45 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], | 47 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], |
| 46 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'], | 48 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'], |
| 47 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'], | 49 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'], |
| 48 } | 50 } |
| 49 ], | 51 ], |
| 50 'DATA': [ | 52 'DATA': [ |
| 51 'example.js' | 53 'example.js' |
| 52 ], | 54 ], |
| 53 'DEST': 'tests', | 55 'DEST': 'tests', |
| 54 'NAME': 'nacl_io_test', | 56 'NAME': 'nacl_io_test', |
| 55 'TITLE': 'NaCl IO test', | 57 'TITLE': 'NaCl IO test', |
| 56 } | 58 } |
| OLD | NEW |