OLD | NEW |
---|---|
1 { | 1 { |
2 # TODO(binji): pnacl doesn't build right now because gtest doesn't build yet. | 2 # 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
noelallen1
2013/06/07 21:48:43
Isn't this comment still valid?
binji
2013/06/07 23:23:11
Whoops. No, pnacl works fine, I was uncommenting i
| |
3 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 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_io_test', | 9 'NAME' : 'nacl_io_test', |
10 'TYPE' : 'main', | 10 'TYPE' : 'main', |
11 'SOURCES' : [ | 11 'SOURCES' : [ |
12 'kernel_object_test.cc', | 12 'kernel_object_test.cc', |
13 'kernel_proxy_mock.cc', | 13 'kernel_proxy_mock.cc', |
(...skipping 17 matching lines...) Expand all Loading... | |
31 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], | 31 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], |
32 } | 32 } |
33 ], | 33 ], |
34 'DATA': [ | 34 'DATA': [ |
35 'example.js' | 35 'example.js' |
36 ], | 36 ], |
37 'DEST': 'tests', | 37 'DEST': 'tests', |
38 'NAME': 'nacl_io_test', | 38 'NAME': 'nacl_io_test', |
39 'TITLE': 'NaCl IO test', | 39 'TITLE': 'NaCl IO test', |
40 } | 40 } |
OLD | NEW |