| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux', 'mac'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux', 'mac', 'clang-newlib'], |
| 3 'SEL_LDR': True, | 3 'SEL_LDR': True, |
| 4 | 4 |
| 5 'TARGETS': [ | 5 'TARGETS': [ |
| 6 { | 6 { |
| 7 'NAME' : 'sdk_util_test', | 7 'NAME' : 'sdk_util_test', |
| 8 'TYPE' : 'main', | 8 'TYPE' : 'main', |
| 9 'SOURCES' : [ | 9 'SOURCES' : [ |
| 10 'main.cc', | 10 'main.cc', |
| 11 'string_util_test.cc', | 11 'string_util_test.cc', |
| 12 ], | 12 ], |
| 13 'DEPS': ['ppapi_simple', 'sdk_util', 'nacl_io'], | 13 'DEPS': ['ppapi_simple', 'sdk_util', 'nacl_io'], |
| 14 # Order matters here: gtest has a "main" function that will be used if | 14 # Order matters here: gtest has a "main" function that will be used if |
| 15 # referenced before ppapi. | 15 # referenced before ppapi. |
| 16 'LIBS': ['ppapi_simple', 'sdk_util', 'ppapi', 'gtest', 'nacl_io', 'gmock',
'ppapi_cpp', 'pthread'], | 16 'LIBS': ['ppapi_simple', 'sdk_util', 'ppapi', 'gtest', 'nacl_io', 'gmock',
'ppapi_cpp', 'pthread'], |
| 17 'CXXFLAGS': ['-Wno-sign-compare'] | 17 'CXXFLAGS': ['-Wno-sign-compare'] |
| 18 } | 18 } |
| 19 ], | 19 ], |
| 20 'DATA': [ | 20 'DATA': [ |
| 21 'example.js' | 21 'example.js' |
| 22 ], | 22 ], |
| 23 'DEST': 'tests', | 23 'DEST': 'tests', |
| 24 'NAME': 'sdk_util_test', | 24 'NAME': 'sdk_util_test', |
| 25 'TITLE': 'SDK Util test', | 25 'TITLE': 'SDK Util test', |
| 26 } | 26 } |
| OLD | NEW |