| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| 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 'kernel_object_test.cc', | 13 'kernel_object_test.cc', |
| 13 'kernel_proxy_mock.cc', | 14 'kernel_proxy_mock.cc', |
| 14 'kernel_proxy_mock.h', | 15 'kernel_proxy_mock.h', |
| 15 'kernel_proxy_test.cc', | 16 'kernel_proxy_test.cc', |
| 16 'kernel_wrap_test.cc', | 17 'kernel_wrap_test.cc', |
| 17 'main.cc', | 18 'main.cc', |
| 18 'mock_util.h', | 19 'mock_util.h', |
| 19 'mount_html5fs_test.cc', | 20 'mount_html5fs_test.cc', |
| 20 'mount_http_test.cc', | 21 'mount_http_test.cc', |
| 21 'mount_mock.cc', | 22 'mount_mock.cc', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 35 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], | 36 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], |
| 36 } | 37 } |
| 37 ], | 38 ], |
| 38 'DATA': [ | 39 'DATA': [ |
| 39 'example.js' | 40 'example.js' |
| 40 ], | 41 ], |
| 41 'DEST': 'tests', | 42 'DEST': 'tests', |
| 42 'NAME': 'nacl_io_test', | 43 'NAME': 'nacl_io_test', |
| 43 'TITLE': 'NaCl IO test', | 44 'TITLE': 'NaCl IO test', |
| 44 } | 45 } |
| OLD | NEW |