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