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