1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
'TOOLS': ['newlib'],
'TARGETS': [
{
'NAME' : 'debugging',
'TYPE' : 'main',
'SOURCES' : [
'hello_world.c',
'string_stream.c',
'string_stream.h',
'untrusted_crash_dump.c',
'untrusted_crash_dump.h'
],
'CCFLAGS': ['-fno-omit-frame-pointer'],
'LIBS' : ['ppapi', 'pthread']
}
],
'POST': 'include Makefile.inc\n',
'DATA': ['Makefile.inc', 'example.js'],
'DEST': 'examples',
'NAME': 'debugging',
'TITLE': 'Debugging',
'DESC': """
Debugging example shows how to use developer only features to enable
catching an exception, and then using that to create a stacktrace.""",
'INFO': 'Debugging, Stacktraces.'
}
|