Send a crash report when a hung process is detected.
[chromium-blink-merge.git] / native_client_sdk / src / tests / nacl_io_socket_test / example.dsc
blob8af5d73e69bf82431aa87946bdd05580a5f0e312
2   'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux', 'mac'],
3   'TARGETS': [
4     {
5       'NAME' : 'nacl_io_socket_test',
6       'TYPE' : 'main',
7       'SOURCES' : [
8         'main.cc',
9         'socket_test.cc',
10         'echo_server.cc',
11         'echo_server.h',
12       ],
13       'DEPS': ['ppapi_simple', 'nacl_io'],
14       # Order matters here: gtest has a "main" function that will be used if
15       # referenced before ppapi.
16       'LIBS': ['ppapi_simple_cpp', 'ppapi_cpp', 'gmock', 'ppapi', 'gtest', 'nacl_io', 'pthread'],
17       'CXXFLAGS': ['-Wno-sign-compare']
18     }
19   ],
20   'DATA': [
21     'example.js'
22   ],
23   'DEST': 'tests',
24   'NAME': 'nacl_io_socket_test',
25   'TITLE': 'NaCl IO Socket test',
26   'SOCKET_PERMISSIONS': [
27     "tcp-listen:*:*",
28     "tcp-connect",
29     "resolve-host",
30     "udp-bind:*:*",
31     "udp-send-to:*:*"
32   ]