OLD | NEW |
(Empty) | |
| 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], |
| 3 'TARGETS': [ |
| 4 { |
| 5 'NAME' : 'trace_events', |
| 6 'TYPE' : 'main', |
| 7 'SOURCES' : [ |
| 8 'trace_events.cc' |
| 9 ], |
| 10 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 11 } |
| 12 ], |
| 13 'DATA': [ |
| 14 'example.js', |
| 15 'Makefile', |
| 16 ], |
| 17 'DEST': 'examples', |
| 18 'NAME': 'trace_events', |
| 19 'TITLE': 'PPAPI Trace Events in C++', |
| 20 'DESC': """ |
| 21 The Trace Events example demonstrates how to use the trace event API from C++ |
| 22 in order to capture performance data about your module in chrome://tracing.""", |
| 23 'FOCUS': 'Trace Event API.', |
| 24 'GROUP': 'Concepts' |
| 25 } |
| 26 |
OLD | NEW |